From d258ade35e0fe80d347b4ac661f25c9224fb87cc Mon Sep 17 00:00:00 2001 From: eduardo Date: Sat, 4 Jan 2014 19:23:25 -0200 Subject: [PATCH 001/333] Fix PostgreSQL port configuration on install --- lib/private/setup/postgresql.php | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/lib/private/setup/postgresql.php b/lib/private/setup/postgresql.php index 89d328ada1..b5e3d5f897 100644 --- a/lib/private/setup/postgresql.php +++ b/lib/private/setup/postgresql.php @@ -10,13 +10,21 @@ class PostgreSQL extends AbstractDatabase { $e_user = addslashes($this->dbuser); $e_password = addslashes($this->dbpassword); + // Eduardo: 04/01/2013 + // Fix database with port connection + if(strpos($e_host, ':')) { + list($e_host, $port)=explode(':', $e_host, 2); + } else { + $port=false; + } + //check if the database user has admin rights - $connection_string = "host='$e_host' dbname=postgres user='$e_user' password='$e_password'"; + $connection_string = "host='$e_host' dbname=postgres user='$e_user' port='$port' password='$e_password'"; $connection = @pg_connect($connection_string); if(!$connection) { // Try if we can connect to the DB with the specified name $e_dbname = addslashes($this->dbname); - $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' password='$e_password'"; + $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port' password='$e_password'"; $connection = @pg_connect($connection_string); if(!$connection) @@ -63,7 +71,15 @@ class PostgreSQL extends AbstractDatabase { $e_user = addslashes($this->dbuser); $e_password = addslashes($this->dbpassword); - $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' password='$e_password'"; + // Eduardo: 04/01/2013 + // Fix database with port connection + if(strpos($e_host, ':')) { + list($e_host, $port)=explode(':', $e_host, 2); + } else { + $port=false; + } + + $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port' password='$e_password'"; $connection = @pg_connect($connection_string); if(!$connection) { throw new \DatabaseSetupException($this->trans->t('PostgreSQL username and/or password not valid'), From 569851fa0ea5367d84c411cdb8a6f8fafff695da Mon Sep 17 00:00:00 2001 From: eduardo Date: Sun, 5 Jan 2014 12:38:54 -0200 Subject: [PATCH 002/333] Add tabs to conformance with owncloud code standards --- lib/private/setup/postgresql.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/private/setup/postgresql.php b/lib/private/setup/postgresql.php index b5e3d5f897..dc1df115d9 100644 --- a/lib/private/setup/postgresql.php +++ b/lib/private/setup/postgresql.php @@ -10,8 +10,8 @@ class PostgreSQL extends AbstractDatabase { $e_user = addslashes($this->dbuser); $e_password = addslashes($this->dbpassword); - // Eduardo: 04/01/2013 - // Fix database with port connection + // Eduardo: 04/01/2013 + // Fix database with port connection if(strpos($e_host, ':')) { list($e_host, $port)=explode(':', $e_host, 2); } else { @@ -71,8 +71,8 @@ class PostgreSQL extends AbstractDatabase { $e_user = addslashes($this->dbuser); $e_password = addslashes($this->dbpassword); - // Eduardo: 04/01/2013 - // Fix database with port connection + // Eduardo: 04/01/2013 + // Fix database with port connection if(strpos($e_host, ':')) { list($e_host, $port)=explode(':', $e_host, 2); } else { From 938ece1a3fda68102f9ce2a02dddff882b1da6ff Mon Sep 17 00:00:00 2001 From: eduardo Date: Wed, 8 Jan 2014 00:15:08 -0200 Subject: [PATCH 003/333] Remove name from code --- lib/private/setup/postgresql.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/private/setup/postgresql.php b/lib/private/setup/postgresql.php index dc1df115d9..6065cee80c 100644 --- a/lib/private/setup/postgresql.php +++ b/lib/private/setup/postgresql.php @@ -10,7 +10,6 @@ class PostgreSQL extends AbstractDatabase { $e_user = addslashes($this->dbuser); $e_password = addslashes($this->dbpassword); - // Eduardo: 04/01/2013 // Fix database with port connection if(strpos($e_host, ':')) { list($e_host, $port)=explode(':', $e_host, 2); @@ -71,7 +70,6 @@ class PostgreSQL extends AbstractDatabase { $e_user = addslashes($this->dbuser); $e_password = addslashes($this->dbpassword); - // Eduardo: 04/01/2013 // Fix database with port connection if(strpos($e_host, ':')) { list($e_host, $port)=explode(':', $e_host, 2); From 428d2b6e0fcc687e6cca7c73263eacf7d460192f Mon Sep 17 00:00:00 2001 From: eduardo Date: Wed, 8 Jan 2014 00:16:37 -0200 Subject: [PATCH 004/333] Remove unused spaces --- lib/private/setup/postgresql.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/setup/postgresql.php b/lib/private/setup/postgresql.php index 6065cee80c..4d0c9b52a4 100644 --- a/lib/private/setup/postgresql.php +++ b/lib/private/setup/postgresql.php @@ -23,7 +23,7 @@ class PostgreSQL extends AbstractDatabase { if(!$connection) { // Try if we can connect to the DB with the specified name $e_dbname = addslashes($this->dbname); - $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port' password='$e_password'"; + $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port' password='$e_password'"; $connection = @pg_connect($connection_string); if(!$connection) @@ -77,7 +77,7 @@ class PostgreSQL extends AbstractDatabase { $port=false; } - $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port' password='$e_password'"; + $connection_string = "host='$e_host' dbname='$e_dbname' user='$e_user' port='$port' password='$e_password'"; $connection = @pg_connect($connection_string); if(!$connection) { throw new \DatabaseSetupException($this->trans->t('PostgreSQL username and/or password not valid'), From afbe50d09c7d9e5cbed2a09bc915ba4eaa8ced27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 6 Feb 2014 09:44:13 +0100 Subject: [PATCH 005/333] remove global variable $RUNTIME_NOAPPS - it's just superfluous --- core/command/upgrade.php | 3 --- index.php | 2 -- lib/base.php | 3 +-- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 1d105b67a0..2eded15e9f 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -30,9 +30,6 @@ class Upgrade extends Command { } protected function execute(InputInterface $input, OutputInterface $output) { - global $RUNTIME_NOAPPS; - - $RUNTIME_NOAPPS = true; //no apps, yet require_once \OC::$SERVERROOT . '/lib/base.php'; diff --git a/index.php b/index.php index 0a2f15f9f5..bd94d0e908 100755 --- a/index.php +++ b/index.php @@ -21,8 +21,6 @@ * */ -$RUNTIME_NOAPPS = true; //no apps, yet - try { require_once 'lib/base.php'; diff --git a/lib/base.php b/lib/base.php index f2d9251294..b230ca2e54 100644 --- a/lib/base.php +++ b/lib/base.php @@ -569,9 +569,8 @@ class OC { // Load Apps // This includes plugins for users and filesystems as well - global $RUNTIME_NOAPPS; global $RUNTIME_APPTYPES; - if (!$RUNTIME_NOAPPS && !self::checkUpgrade(false)) { + if (!self::checkUpgrade(false)) { if ($RUNTIME_APPTYPES) { OC_App::loadApps($RUNTIME_APPTYPES); } else { From 21207c6a73bbaf43c6afaceda51690e77fad06f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 6 Feb 2014 09:50:11 +0100 Subject: [PATCH 006/333] remove superfluous $RUNTIME_APPTYPES --- apps/files/ajax/download.php | 6 ------ apps/files/ajax/getstoragestats.php | 3 --- apps/files/ajax/list.php | 6 ------ apps/files/ajax/rawlist.php | 3 --- apps/files_trashbin/ajax/list.php | 6 ------ 5 files changed, 24 deletions(-) diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 6a34cbe4ef..58037cb0c8 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -21,12 +21,6 @@ * */ -// only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem'); - -// Init owncloud - - // Check if we are a user OCP\User::checkLoggedIn(); diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php index dd7c7dc557..69a26ed8eb 100644 --- a/apps/files/ajax/getstoragestats.php +++ b/apps/files/ajax/getstoragestats.php @@ -1,8 +1,5 @@ Date: Thu, 6 Feb 2014 10:04:18 +0100 Subject: [PATCH 007/333] remove some more global variable $RUNTIME_NOAPPS --- console.php | 1 - core/ajax/update.php | 1 - lib/base.php | 5 ----- lib/private/util.php | 4 +--- public.php | 1 - remote.php | 1 - status.php | 2 -- 7 files changed, 1 insertion(+), 14 deletions(-) diff --git a/console.php b/console.php index 25b8b31253..fc6957062b 100644 --- a/console.php +++ b/console.php @@ -8,7 +8,6 @@ use Symfony\Component\Console\Application; -$RUNTIME_NOAPPS = true; require_once 'lib/base.php'; // Don't do anything if ownCloud has not been installed yet diff --git a/core/ajax/update.php b/core/ajax/update.php index d6af84e95b..99e8f27531 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -1,6 +1,5 @@ Date: Thu, 6 Feb 2014 11:34:27 +0100 Subject: [PATCH 008/333] Within OC:init() the minimum set of apps is loaded - which is filesystem, authentication and logging --- apps/files/appinfo/remote.php | 6 ------ core/command/user/report.php | 3 +-- lib/base.php | 15 ++++----------- lib/private/user.php | 2 -- 4 files changed, 5 insertions(+), 21 deletions(-) diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index ef22fe9218..8d762d4e88 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -22,12 +22,6 @@ * License along with this library. If not, see . * */ -// load needed apps -$RUNTIME_APPTYPES = array('filesystem', 'authentication', 'logging'); - -OC_App::loadApps($RUNTIME_APPTYPES); - -OC_Util::obEnd(); // Backends $authBackend = new OC_Connector_Sabre_Auth(); diff --git a/core/command/user/report.php b/core/command/user/report.php index f95ba251bc..d6b7abacab 100644 --- a/core/command/user/report.php +++ b/core/command/user/report.php @@ -48,7 +48,6 @@ class Report extends Command { } private function countUsers() { - \OC_App::loadApps(array('authentication')); $userManager = \OC::$server->getUserManager(); return $userManager->countUsers(); } @@ -58,4 +57,4 @@ class Report extends Command { $userDirectories = $dataview->getDirectoryContent('/', 'httpd/unix-directory'); return count($userDirectories); } -} \ No newline at end of file +} diff --git a/lib/base.php b/lib/base.php index 18adfd3120..fb7baf86a5 100644 --- a/lib/base.php +++ b/lib/base.php @@ -567,15 +567,9 @@ class OC { OC_User::logout(); } - // Load Apps - // This includes plugins for users and filesystems as well - global $RUNTIME_APPTYPES; + // Load minimum set of apps - which is filesystem, authentication and logging if (!self::checkUpgrade(false)) { - if ($RUNTIME_APPTYPES) { - OC_App::loadApps($RUNTIME_APPTYPES); - } else { - OC_App::loadApps(); - } + OC_App::loadApps(array('filesystem', 'authentication', 'logging')); } //setup extra user backends @@ -866,7 +860,7 @@ class OC { ) { return false; } - OC_App::loadApps(array('authentication')); + if (defined("DEBUG") && DEBUG) { OC_Log::write('core', 'Trying to login from cookie', OC_Log::DEBUG); } @@ -938,7 +932,7 @@ class OC { ) { return false; } - OC_App::loadApps(array('authentication')); + if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { //OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG); OC_User::unsetMagicInCookie(); @@ -967,4 +961,3 @@ if (!function_exists('get_temp_dir')) { } OC::init(); - diff --git a/lib/private/user.php b/lib/private/user.php index 98ebebbe5c..11f96aabf7 100644 --- a/lib/private/user.php +++ b/lib/private/user.php @@ -317,8 +317,6 @@ class OC_User { */ public static function isLoggedIn() { if (\OC::$session->get('user_id') && self::$incognitoMode === false) { - OC_App::loadApps(array('authentication')); - self::setupBackends(); return self::userExists(\OC::$session->get('user_id')); } return false; From fc01a13811f5da395f1a9ed1171f15f5fffcb71e Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 12 Feb 2014 22:35:49 +0100 Subject: [PATCH 009/333] Fix imagerotate and move loadFromBase64() one up. imagerotate() with third parameter being -1 does not seem to work in PHP 5.5 loadFromBase64() one up, so debug-logs aren't spammed (as much) with urlencoded base64-data from loadFromFile() debug output. --- lib/private/image.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/private/image.php b/lib/private/image.php index 91a9f91e1d..0b99bf23f6 100644 --- a/lib/private/image.php +++ b/lib/private/image.php @@ -346,7 +346,7 @@ class OC_Image { break; } if($rotate) { - $res = imagerotate($this->resource, $rotate, -1); + $res = imagerotate($this->resource, $rotate, 0); if($res) { if(imagealphablending($res, true)) { if(imagesavealpha($res, true)) { @@ -381,10 +381,10 @@ class OC_Image { } elseif(in_array(get_resource_type($imageRef), array('file', 'stream'))) { return $this->loadFromFileHandle($imageRef); } - } elseif($this->loadFromFile($imageRef) !== false) { - return $this->resource; } elseif($this->loadFromBase64($imageRef) !== false) { return $this->resource; + } elseif($this->loadFromFile($imageRef) !== false) { + return $this->resource; } elseif($this->loadFromData($imageRef) !== false) { return $this->resource; } else { @@ -415,7 +415,6 @@ class OC_Image { public function loadFromFile($imagePath=false) { // exif_imagetype throws "read error!" if file is less than 12 byte if(!@is_file($imagePath) || !file_exists($imagePath) || filesize($imagePath) < 12 || !is_readable($imagePath)) { - // Debug output disabled because this method is tried before loadFromBase64? OC_Log::write('core', 'OC_Image->loadFromFile, couldn\'t load: ' . (string) urlencode($imagePath), OC_Log::DEBUG); return false; } From 2f1a24eee74d0bf7bf5d734d1abd99a7bc68052c Mon Sep 17 00:00:00 2001 From: tomneedham Date: Tue, 18 Feb 2014 09:50:46 +0000 Subject: [PATCH 010/333] Add displayname for admins --- lib/private/ocs/cloud.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/lib/private/ocs/cloud.php b/lib/private/ocs/cloud.php index cbbf3b626f..784a5b0869 100644 --- a/lib/private/ocs/cloud.php +++ b/lib/private/ocs/cloud.php @@ -61,17 +61,25 @@ class OC_OCS_Cloud { * the user from whom the information will be returned */ public static function getUser($parameters) { + $return = array(); // Check if they are viewing information on themselves if($parameters['userid'] === OC_User::getUser()) { // Self lookup $storage = OC_Helper::getStorageInfo('/'); - $quota = array( + $return['quota'] = array( 'free' => $storage['free'], 'used' => $storage['used'], 'total' => $storage['total'], 'relative' => $storage['relative'], ); - return new OC_OCS_Result(array('quota' => $quota)); + } + if(OC_User::isAdminUser(OC_User::getUser()) + || OC_Subadmin::isUserAccessible(OC_User::getUser(), $parameters['userid'])) { + // Is an admin/subadmin so can see display name + $return['displayname'] = OC_User::getDisplayName($parameters['userid']); + } + if(count($return)) { + return new OC_OCS_Result($return); } else { // No permission to view this user data return new OC_OCS_Result(null, 997); From df38d4ef1a591bd5b1aaa476b6240eac0a059a8e Mon Sep 17 00:00:00 2001 From: tomneedham Date: Tue, 18 Feb 2014 10:36:18 +0000 Subject: [PATCH 011/333] Return 101 if user doesnt exist --- lib/private/ocs/cloud.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/private/ocs/cloud.php b/lib/private/ocs/cloud.php index 784a5b0869..06d6a8eb4b 100644 --- a/lib/private/ocs/cloud.php +++ b/lib/private/ocs/cloud.php @@ -75,8 +75,12 @@ class OC_OCS_Cloud { } if(OC_User::isAdminUser(OC_User::getUser()) || OC_Subadmin::isUserAccessible(OC_User::getUser(), $parameters['userid'])) { - // Is an admin/subadmin so can see display name - $return['displayname'] = OC_User::getDisplayName($parameters['userid']); + if(OC_User::userExists($parameters['userid'])) { + // Is an admin/subadmin so can see display name + $return['displayname'] = OC_User::getDisplayName($parameters['userid']); + } else { + return new OC_OCS_Result(null, 101); + } } if(count($return)) { return new OC_OCS_Result($return); From 8f5c641cd854d27abc876db8dda4ec0025981186 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 18 Feb 2014 14:51:59 +0100 Subject: [PATCH 012/333] load all apps in ocs/v1.php --- ocs/v1.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ocs/v1.php b/ocs/v1.php index 1c7d1c8976..93d9c67b04 100644 --- a/ocs/v1.php +++ b/ocs/v1.php @@ -21,12 +21,18 @@ * */ -require_once('../lib/base.php'); +require_once '../lib/base.php'; + use Symfony\Component\Routing\Exception\ResourceNotFoundException; use Symfony\Component\Routing\Exception\MethodNotAllowedException; try { + // load all apps to get all api routes properly setup + OC_App::loadApps(); + + // match the request OC::getRouter()->match('/ocs'.OC_Request::getRawPathInfo()); + } catch (ResourceNotFoundException $e) { OC_OCS::notFound(); } catch (MethodNotAllowedException $e) { From e139f7c863d5971a6386070148496cb0f70ad04e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 18 Feb 2014 17:17:08 +0100 Subject: [PATCH 013/333] load all apps to get all cron jobs executed --- cron.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cron.php b/cron.php index 0d2c07b2d9..1065a70028 100644 --- a/cron.php +++ b/cron.php @@ -48,6 +48,9 @@ try { require_once 'lib/base.php'; + // load all apps to get all api routes properly setup + OC_App::loadApps(); + session_write_close(); $logger = \OC_Log::$object; From 76aa4714cf5f32abf8ac329b37adc98cc4741e08 Mon Sep 17 00:00:00 2001 From: Joshua Medeiros Date: Sun, 2 Feb 2014 21:46:09 -0500 Subject: [PATCH 014/333] Recursive mkdir fixes #7047 --- lib/private/files/storage/mappedlocal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index 1bab3489a2..026f6ec895 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -31,7 +31,7 @@ class MappedLocal extends \OC\Files\Storage\Common{ return 'local::'.$this->datadir; } public function mkdir($path) { - return @mkdir($this->buildPath($path)); + return @mkdir($this->buildPath($path), 0777, true); } public function rmdir($path) { try { From d1c392d9adc28f17ef90eb3e515f9622159c64b9 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 20 Feb 2014 15:36:30 +0100 Subject: [PATCH 015/333] Also make "regular" local storage's mkdir recursive --- lib/private/files/storage/local.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index a62230bdba..0f906ec55b 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -35,7 +35,7 @@ if (\OC_Util::runningOnWindows()) { } public function mkdir($path) { - return @mkdir($this->datadir . $path); + return @mkdir($this->datadir . $path, 0777, true); } public function rmdir($path) { From 7c68025010f3aeb91b84663fb3239ae0d038b4e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 30 Jan 2014 11:18:46 +0100 Subject: [PATCH 016/333] adding share owner information to the file list --- apps/files/templates/part.list.php | 10 +++++----- apps/files_sharing/lib/share/file.php | 3 +++ 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index f4fb96a7a7..9769affc70 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -34,16 +34,16 @@ $totalsize = 0; ?> + + - - - - - + + + getCache(); if ($item['encrypted'] or ($item['unencrypted_size'] > 0 and $cache->getMimetype($item['mimetype']) === 'httpd/unix-directory')) { From d6e89a9a28986a57010a31701faa7d1981b5a5c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 30 Jan 2014 13:55:25 +0100 Subject: [PATCH 017/333] store the share owner in a data-attribute instead of a separate span --- apps/files/templates/part.list.php | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 9769affc70..8a7a1e370e 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -17,7 +17,13 @@ $totalsize = 0; ?> data-mime="" data-size="" data-etag="" - data-permissions=""> + data-permissions="" + + + data-share-owner="" + + > + @@ -36,15 +42,13 @@ $totalsize = 0; ?> + - - - - + From 271684dcfec16122b88e03780b41af7120f27e45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 30 Jan 2014 14:47:00 +0100 Subject: [PATCH 018/333] update share owner --- apps/files_sharing/js/share.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 36de452a55..b795b92190 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -5,6 +5,14 @@ $(document).ready(function() { if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) { $('#fileList').on('fileActionsReady',function(){ + + var allShared = $('*[data-share-owner]').find('[data-Action="Share"]'); + allShared.addClass('permanent'); + allShared.find('span').text(function(){ + $owner = $(this).closest('tr').attr('data-share-owner'); + return ' ' + t('files_sharing', 'shared by {owner}', {owner: $owner}); + }); + if (!sharesLoaded){ OC.Share.loadIcons('file'); // assume that we got all shares, so switching directories From 2b84f5e0b91dc41c3bffe0149bfcd19fe39d1377 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 30 Jan 2014 14:49:38 +0100 Subject: [PATCH 019/333] remove duplicate selectors and declaration --- apps/files_sharing/js/share.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index b795b92190..7df8a05f60 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -25,16 +25,15 @@ $(document).ready(function() { }); FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) { - if ($('#dir').val() == '/') { - var item = $('#dir').val() + filename; - } else { - var item = $('#dir').val() + '/' + filename; + var dir = $('#dir').val(); + var item = $dir + '/' + filename; + if ($dir == '/') { + item = $dir + filename; } var tr = FileList.findFileEl(filename); + var itemType = 'file'; if ($(tr).data('type') == 'dir') { - var itemType = 'folder'; - } else { - var itemType = 'file'; + itemType = 'folder'; } var possiblePermissions = $(tr).data('permissions'); var appendTo = $(tr).find('td.filename'); From 179fbada324bb51cfce6fde1818560b3ea739061 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 30 Jan 2014 15:10:42 +0100 Subject: [PATCH 020/333] show share owner within shared folders as well --- apps/files_sharing/lib/cache.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index aadc54e4a7..27602f69ab 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -135,6 +135,7 @@ class Shared_Cache extends Cache { return $files; } else { if ($cache = $this->getSourceCache($folder)) { + $parent = $this->storage->getFile($folder); $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); foreach ($sourceFolderContent as $key => $c) { $ownerPathParts = explode('/', \OC_Filesystem::normalizePath($c['path'])); @@ -144,6 +145,8 @@ class Shared_Cache extends Cache { $usersPath .= '/'.$part; } $sourceFolderContent[$key]['usersPath'] = $usersPath; + $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; + $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; } return $sourceFolderContent; From d0c8b310b9bd3134c650b4d77a384859519086c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 30 Jan 2014 16:29:32 +0100 Subject: [PATCH 021/333] uppercase text and fix dialog popup --- apps/files_sharing/js/share.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index 7df8a05f60..b08f3370c6 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -10,7 +10,7 @@ $(document).ready(function() { allShared.addClass('permanent'); allShared.find('span').text(function(){ $owner = $(this).closest('tr').attr('data-share-owner'); - return ' ' + t('files_sharing', 'shared by {owner}', {owner: $owner}); + return ' ' + t('files_sharing', 'Shared by {owner}', {owner: $owner}); }); if (!sharesLoaded){ @@ -26,9 +26,9 @@ $(document).ready(function() { FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) { var dir = $('#dir').val(); - var item = $dir + '/' + filename; - if ($dir == '/') { - item = $dir + filename; + var item = dir + '/' + filename; + if (dir == '/') { + item = dir + filename; } var tr = FileList.findFileEl(filename); var itemType = 'file'; From 65843e245996c9ecfd167be2b520bb917b32aa7e Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sat, 1 Feb 2014 14:52:41 +0100 Subject: [PATCH 022/333] Improve jQuery element selector see https://github.com/owncloud/core/pull/7012/files#r9337198 http://24ways.org/2011/your-jquery-now-with-less-suck/ --- apps/files_sharing/js/share.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index b08f3370c6..9f0ed12f93 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -6,7 +6,7 @@ $(document).ready(function() { if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) { $('#fileList').on('fileActionsReady',function(){ - var allShared = $('*[data-share-owner]').find('[data-Action="Share"]'); + var allShared = $('#fileList').find('[data-share-owner]').find('[data-Action="Share"]'); allShared.addClass('permanent'); allShared.find('span').text(function(){ $owner = $(this).closest('tr').attr('data-share-owner'); From 0e0b4d55756e438111264423cc04baadb8b067a7 Mon Sep 17 00:00:00 2001 From: kondou Date: Thu, 20 Feb 2014 21:53:59 +0100 Subject: [PATCH 023/333] Hide remove image, if there's no custom avatar Fix #7308 --- settings/js/personal.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/settings/js/personal.js b/settings/js/personal.js index ef261b50bb..77c06f26a6 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -58,6 +58,8 @@ function updateAvatar (hidedefault) { } $displaydiv.css({'background-color': ''}); $displaydiv.avatar(OC.currentUser, 128, true); + + $('#removeavatar').show(); } function showAvatarCropper() { @@ -254,6 +256,7 @@ $(document).ready(function(){ url: OC.Router.generate('core_avatar_delete'), success: function(msg) { updateAvatar(true); + $('#removeavatar').hide(); } }); }); @@ -276,6 +279,17 @@ $(document).ready(function(){ t('core', 'Strong password') ] }); + + // does the user have a custom avatar? if he does hide #removeavatar + // needs to be this complicated because we can't check yet if an avatar has been loaded, because it's async + OC.Router.registerLoadedCallback(function() { + var url = OC.Router.generate('core_avatar_get', {user: OC.currentUser, size: 1})+'?requesttoken='+oc_requesttoken; + $.get(url, function(result) { + if (typeof(result) === 'object') { + $('#removeavatar').hide(); + } + }); + }); } ); OC.Encryption = { From 88882e3fa73cc21b96c2877a3d527bea56b6be11 Mon Sep 17 00:00:00 2001 From: kondou Date: Fri, 21 Feb 2014 12:42:07 +0100 Subject: [PATCH 024/333] Use addClass('hidden') and removeClass('hidden') --- settings/js/personal.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index 77c06f26a6..59f112c803 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -59,7 +59,7 @@ function updateAvatar (hidedefault) { $displaydiv.css({'background-color': ''}); $displaydiv.avatar(OC.currentUser, 128, true); - $('#removeavatar').show(); + $('#removeavatar').removeClass('hidden'); } function showAvatarCropper() { @@ -256,7 +256,7 @@ $(document).ready(function(){ url: OC.Router.generate('core_avatar_delete'), success: function(msg) { updateAvatar(true); - $('#removeavatar').hide(); + $('#removeavatar').addClass('hidden'); } }); }); @@ -286,7 +286,7 @@ $(document).ready(function(){ var url = OC.Router.generate('core_avatar_get', {user: OC.currentUser, size: 1})+'?requesttoken='+oc_requesttoken; $.get(url, function(result) { if (typeof(result) === 'object') { - $('#removeavatar').hide(); + $('#removeavatar').addClass('hidden'); } }); }); From 43b1d81f77df987ad4118bafbdef14d9bd4f016d Mon Sep 17 00:00:00 2001 From: Philipp Schmitt Date: Fri, 21 Feb 2014 13:45:57 +0100 Subject: [PATCH 025/333] Use 'command -v' to detect whether and where software is installed (instead of 'which') --- apps/files_external/lib/config.php | 2 +- lib/private/installer.php | 2 +- lib/private/preview/movies.php | 2 +- lib/private/preview/office-cl.php | 4 ++-- lib/private/preview/office.php | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index b2109e5eac..9bc06bbbcc 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -438,7 +438,7 @@ class OC_Mount_Config { */ public static function checksmbclient() { if(function_exists('shell_exec')) { - $output=shell_exec('which smbclient 2> /dev/null'); + $output=shell_exec('command -v smbclient 2> /dev/null'); return !empty($output); }else{ return false; diff --git a/lib/private/installer.php b/lib/private/installer.php index 11633a4d4a..64e8e3a5e7 100644 --- a/lib/private/installer.php +++ b/lib/private/installer.php @@ -464,7 +464,7 @@ class OC_Installer{ // is the code checker enabled? if(OC_Config::getValue('appcodechecker', true)) { // check if grep is installed - $grep = exec('which grep'); + $grep = exec('command -v grep'); if($grep=='') { OC_Log::write('core', 'grep not installed. So checking the code of the app "'.$appname.'" was not possible', diff --git a/lib/private/preview/movies.php b/lib/private/preview/movies.php index 71cd3bae05..7e0ff51ad2 100644 --- a/lib/private/preview/movies.php +++ b/lib/private/preview/movies.php @@ -9,7 +9,7 @@ namespace OC\Preview; function findBinaryPath($program) { - exec('which ' . escapeshellarg($program) . ' 2> /dev/null', $output, $returnCode); + exec('command -v ' . escapeshellarg($program) . ' 2> /dev/null', $output, $returnCode); if ($returnCode === 0 && count($output) > 0) { return escapeshellcmd($output[0]); } diff --git a/lib/private/preview/office-cl.php b/lib/private/preview/office-cl.php index b11fed13ba..6e4d4321eb 100644 --- a/lib/private/preview/office-cl.php +++ b/lib/private/preview/office-cl.php @@ -64,12 +64,12 @@ if (!\OC_Util::runningOnWindows()) { $cmd = \OC_Config::getValue('preview_libreoffice_path', null); } - $whichLibreOffice = shell_exec('which libreoffice'); + $whichLibreOffice = shell_exec('command -v libreoffice'); if($cmd === '' && !empty($whichLibreOffice)) { $cmd = 'libreoffice'; } - $whichOpenOffice = shell_exec('which openoffice'); + $whichOpenOffice = shell_exec('command -v openoffice'); if($cmd === '' && !empty($whichOpenOffice)) { $cmd = 'openoffice'; } diff --git a/lib/private/preview/office.php b/lib/private/preview/office.php index 02bb22e9b9..131bc9a0dc 100644 --- a/lib/private/preview/office.php +++ b/lib/private/preview/office.php @@ -11,9 +11,9 @@ if (extension_loaded('imagick') && count(@\Imagick::queryFormats("PDF")) === 1) // LibreOffice preview is currently not supported on Windows if (!\OC_Util::runningOnWindows()) { - $whichLibreOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); + $whichLibreOffice = ($isShellExecEnabled ? shell_exec('command -v libreoffice') : ''); $isLibreOfficeAvailable = !empty($whichLibreOffice); - $whichOpenOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); + $whichOpenOffice = ($isShellExecEnabled ? shell_exec('command -v libreoffice') : ''); $isOpenOfficeAvailable = !empty($whichOpenOffice); //let's see if there is libreoffice or openoffice on this machine if($isShellExecEnabled && ($isLibreOfficeAvailable || $isOpenOfficeAvailable || is_string(\OC_Config::getValue('preview_libreoffice_path', null)))) { From bc49c6be04d78740d9b7cb100debcb6641559d39 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 26 Feb 2014 14:29:13 +0100 Subject: [PATCH 026/333] Manually triger the filecache update hooks before any other hook --- apps/files/appinfo/app.php | 7 ------- lib/private/files/view.php | 20 ++++++++++++++++++++ tests/lib/files/cache/updater.php | 5 ----- 3 files changed, 20 insertions(+), 12 deletions(-) diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 909baca92e..15a2913378 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -12,13 +12,6 @@ OCP\App::addNavigationEntry(array("id" => "files_index", OC_Search::registerProvider('OC_Search_Provider_File'); -// cache hooks must be connected before all other apps. -// since 'files' is always loaded first the hooks need to be connected here -\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); -\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); -\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); -\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); - \OCP\BackgroundJob::addRegularTask('\OC\Files\Cache\BackgroundWatcher', 'checkNext'); $templateManager = OC_Helper::getFileTemplateManager(); diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 2dbbf5b88c..a76115a816 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -25,6 +25,8 @@ namespace OC\Files; +use OC\Files\Cache\Updater; + class View { private $fakeRoot = ''; private $internal_path_cache = array(); @@ -433,6 +435,7 @@ class View { } if ($this->shouldEmitHooks() && (Cache\Scanner::isPartialFile($path1) && !Cache\Scanner::isPartialFile($path2)) && $result !== false) { // if it was a rename from a part file to a regular file it was a write and not a rename operation + Updater::writeHook(array('path' => $this->getHookPath($path2))); \OC_Hook::emit( Filesystem::CLASSNAME, Filesystem::signal_post_write, @@ -441,6 +444,10 @@ class View { ) ); } elseif ($this->shouldEmitHooks() && $result !== false) { + Updater::renameHook(array( + 'oldpath' => $this->getHookPath($path1), + 'newpath' => $this->getHookPath($path2) + )); \OC_Hook::emit( Filesystem::CLASSNAME, Filesystem::signal_post_rename, @@ -741,7 +748,10 @@ class View { } /** + * @param string[] $hooks * @param string $path + * @param bool $post + * @return bool */ private function runHooks($hooks, $path, $post = false) { $path = $this->getHookPath($path); @@ -749,6 +759,16 @@ class View { $run = true; if ($this->shouldEmitHooks($path)) { foreach ($hooks as $hook) { + // manually triger updater hooks to ensure they are called first + if ($post) { + if ($hook == 'write') { + Updater::writeHook(array('path' => $path)); + } elseif ($hook == 'touch') { + Updater::touchHook(array('path' => $path)); + } else if ($hook == 'delete') { + Updater::deleteHook(array('path' => $path)); + } + } if ($hook != 'read') { \OC_Hook::emit( Filesystem::CLASSNAME, diff --git a/tests/lib/files/cache/updater.php b/tests/lib/files/cache/updater.php index 48986149a7..1c4c965af0 100644 --- a/tests/lib/files/cache/updater.php +++ b/tests/lib/files/cache/updater.php @@ -65,11 +65,6 @@ class Updater extends \PHPUnit_Framework_TestCase { Filesystem::mount($this->storage, array(), '/' . self::$user . '/files'); \OC_Hook::clear('OC_Filesystem'); - - \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); - \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); - \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); - \OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); } public function tearDown() { From 932c4ee927f278f4ef5275a9582bca8822310738 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 18 Feb 2014 16:36:02 +0100 Subject: [PATCH 027/333] Allow admins to disable certain external storages for users Fix issue #6793 --- apps/files_external/js/settings.js | 10 ++++++ apps/files_external/lib/config.php | 36 ++++++++++++++++++++-- apps/files_external/personal.php | 5 ++- apps/files_external/settings.php | 18 ++++++++++- apps/files_external/templates/settings.php | 18 +++++++---- 5 files changed, 74 insertions(+), 13 deletions(-) diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 895f97bd2c..dbc9f54829 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -302,13 +302,23 @@ $(document).ready(function() { }); $('#allowUserMounting').bind('change', function() { + OC.msg.startSaving('#userMountingMsg'); if (this.checked) { OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'yes'); + $('#userMountingBackups').removeClass('hidden'); } else { OC.AppConfig.setValue('files_external', 'allow_user_mounting', 'no'); + $('#userMountingBackups').addClass('hidden'); } + OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('settings', 'Saved')}}); }); + $('input[name="allowUserMountingBackends\\[\\]"]').bind('change', function() { + OC.msg.startSaving('#userMountingMsg'); + var user_mounting_backends = $('input[name="allowUserMountingBackends\\[\\]"]:checked').map(function(){return $(this).val();}).get(); + OC.AppConfig.setValue('files_external', 'user_mounting_backends', user_mounting_backends.join()); + OC.msg.finishedSaving('#userMountingMsg', {status: 'success', data: {message: t('settings', 'Saved')}}); + }); }); })(); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 43275d36c0..778f9620d5 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -155,6 +155,35 @@ class OC_Mount_Config { return($backends); } + /** + * Get details on each of the external storage backends, used for the mount config UI + * Some backends are not available as a personal backend, f.e. Local and such that have + * been disabled by the admin. + * + * If a custom UI is needed, add the key 'custom' and a javascript file with that name will be loaded + * If the configuration parameter should be secret, add a '*' to the beginning of the value + * If the configuration parameter is a boolean, add a '!' to the beginning of the value + * If the configuration parameter is optional, add a '&' to the beginning of the value + * If the configuration parameter is hidden, add a '#' to the beginning of the value + * @return array + */ + public static function getPersonalBackends() { + + $backends = self::getBackends(); + + // Remove local storage and other disabled storages + unset($backends['\OC\Files\Storage\Local']); + + $allowed_backends = explode(',', OCP\Config::getAppValue('files_external', 'user_mounting_backends', '')); + foreach ($backends as $backend => $null) { + if (!in_array($backend, $allowed_backends)) { + unset($backends[$backend]); + } + } + + return $backends; + } + /** * Get the system mount points * The returned array is not in the same format as getUserMountPoints() @@ -287,11 +316,12 @@ class OC_Mount_Config { if (!isset($backends[$class])) { // invalid backend return false; - } + } if ($isPersonal) { // Verify that the mount point applies for the current user - // Prevent non-admin users from mounting local storage - if ($applicable !== OCP\User::getUser() || strtolower($class) === '\oc\files\storage\local') { + // Prevent non-admin users from mounting local storage and other disabled backends + $allowed_backends = self::getPersonalBackends(); + if ($applicable != OCP\User::getUser() || !in_array($class, $allowed_backends)) { return false; } $mountPoint = '/'.$applicable.'/files/'.ltrim($mountPoint, '/'); diff --git a/apps/files_external/personal.php b/apps/files_external/personal.php index 90f5e15953..90d7afed28 100755 --- a/apps/files_external/personal.php +++ b/apps/files_external/personal.php @@ -22,9 +22,8 @@ OCP\Util::addScript('files_external', 'settings'); OCP\Util::addStyle('files_external', 'settings'); -$backends = OC_Mount_Config::getBackends(); -// Remove local storage -unset($backends['\OC\Files\Storage\Local']); +$backends = OC_Mount_Config::getPersonalBackends(); + $tmpl = new OCP\Template('files_external', 'settings'); $tmpl->assign('isAdminPage', false); $tmpl->assign('mounts', OC_Mount_Config::getPersonalMountPoints()); diff --git a/apps/files_external/settings.php b/apps/files_external/settings.php index 31183409e3..5b62b54220 100644 --- a/apps/files_external/settings.php +++ b/apps/files_external/settings.php @@ -26,10 +26,26 @@ OCP\Util::addScript('files_external', 'settings'); OCP\Util::addscript('3rdparty', 'chosen/chosen.jquery.min'); OCP\Util::addStyle('files_external', 'settings'); OCP\Util::addStyle('3rdparty', 'chosen/chosen'); + +$backends = OC_Mount_Config::getBackends(); +$personal_backends = array(); +$enabled_backends = explode(',', OCP\Config::getAppValue('files_external', 'user_mounting_backends', '')); +foreach ($backends as $class => $backend) +{ + if ($class != '\OC\Files\Storage\Local') + { + $personal_backends[$class] = array( + 'backend' => $backend['backend'], + 'enabled' => in_array($class, $enabled_backends), + ); + } +} + $tmpl = new OCP\Template('files_external', 'settings'); $tmpl->assign('isAdminPage', true); $tmpl->assign('mounts', OC_Mount_Config::getSystemMountPoints()); -$tmpl->assign('backends', OC_Mount_Config::getBackends()); +$tmpl->assign('backends', $backends); +$tmpl->assign('personal_backends', $personal_backends); $tmpl->assign('groups', OC_Group::getGroups()); $tmpl->assign('users', OCP\User::getUsers()); $tmpl->assign('userDisplayNames', OC_User::getDisplayNames()); diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 3ca16c3c7a..de44d3c864 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -122,12 +122,18 @@
- /> -
- t('Allow users to mount their own external storage')); ?> + /> + + +

class="hidden"> + t('Allow users to mount the following external storage')); ?>
+ $backend): ?> + /> +
+ + +

From da19109f403d4d41a417181f5e1de67972334bad Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 26 Feb 2014 18:06:13 +0100 Subject: [PATCH 028/333] Config to disable basic_auth username chacking This can be confusing and/or annoying --- config/config.sample.php | 3 +++ lib/base.php | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/config/config.sample.php b/config/config.sample.php index 9c5eca8a5e..987a866e49 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -178,6 +178,9 @@ $CONFIG = array( /* Enable or disable the logging of IP addresses in case of webform auth failures */ "log_authfailip" => false, +/* Whether http-basic username must equal username to login */ +"basic_auth" => true, + /* * Configure the size in bytes log rotation should happen, 0 or false disables the rotation. * This rotates the current owncloud logfile to a new name, this way the total log usage diff --git a/lib/base.php b/lib/base.php index 49cbb1279d..351b91b7df 100644 --- a/lib/base.php +++ b/lib/base.php @@ -554,7 +554,8 @@ class OC { OC_User::useBackend(new OC_User_Database()); OC_Group::useBackend(new OC_Group_Database()); - if (isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('loginname') + $basic_auth = OC_Config::getValue('basic_auth', true); + if ($basic_auth && isset($_SERVER['PHP_AUTH_USER']) && self::$session->exists('loginname') && $_SERVER['PHP_AUTH_USER'] !== self::$session->get('loginname')) { $sessionUser = self::$session->get('loginname'); $serverUser = $_SERVER['PHP_AUTH_USER']; From ab850b961dd576a4caf7c2269d8559fdbe6d62e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 26 Feb 2014 23:56:46 +0100 Subject: [PATCH 029/333] remove unused code and fix wrong variable names - some PHPDoc updated --- lib/private/image.php | 31 ++++++++----------------------- 1 file changed, 8 insertions(+), 23 deletions(-) diff --git a/lib/private/image.php b/lib/private/image.php index 17caaa012f..da32aa4760 100644 --- a/lib/private/image.php +++ b/lib/private/image.php @@ -41,8 +41,7 @@ class OC_Image { // exif_imagetype throws "read error!" if file is less than 12 byte if (filesize($filePath) > 11) { $imageType = exif_imagetype($filePath); - } - else { + } else { $imageType = false; } return $imageType ? image_type_to_mime_type($imageType) : ''; @@ -50,7 +49,7 @@ class OC_Image { /** * @brief Constructor. - * @param $imageref The path to a local file, a base64 encoded string or a resource created by an imagecreate* function. + * @param string|resource $imageref The path to a local file, a base64 encoded string or a resource created by an imagecreate* function. * @returns bool False on error */ public function __construct($imageRef = null) { @@ -115,13 +114,11 @@ class OC_Image { case 3: case 4: // Not tested return $this->width(); - break; case 5: // Not tested case 6: case 7: // Not tested case 8: return $this->height(); - break; } return $this->width(); } @@ -140,13 +137,11 @@ class OC_Image { case 3: case 4: // Not tested return $this->height(); - break; case 5: // Not tested case 6: case 7: // Not tested case 8: return $this->width(); - break; } return $this->height(); } @@ -197,7 +192,6 @@ class OC_Image { return false; } - $retVal = false; switch($this->imageType) { case IMAGETYPE_GIF: $retVal = imagegif($this->resource, $filePath); @@ -264,8 +258,8 @@ class OC_Image { } /** - * @returns Returns a base64 encoded string suitable for embedding in a VCard. - */ + * @return string - base64 encoded, which is suitable for embedding in a VCard. + */ function __toString() { return base64_encode($this->data()); } @@ -307,43 +301,33 @@ class OC_Image { $o = $this->getOrientation(); OC_Log::write('core', 'OC_Image->fixOrientation() Orientation: '.$o, OC_Log::DEBUG); $rotate = 0; - $flip = false; switch($o) { case -1: return false; //Nothing to fix - break; case 1: $rotate = 0; - $flip = false; break; case 2: // Not tested $rotate = 0; - $flip = true; break; case 3: $rotate = 180; - $flip = false; break; case 4: // Not tested $rotate = 180; - $flip = true; break; case 5: // Not tested $rotate = 90; - $flip = true; break; case 6: //$rotate = 90; $rotate = 270; - $flip = false; break; case 7: // Not tested $rotate = 270; - $flip = true; break; case 8: $rotate = 90; - $flip = false; break; } if($rotate) { @@ -367,6 +351,7 @@ class OC_Image { return false; } } + return false; } /** @@ -599,9 +584,9 @@ class OC_Image { $meta['imagesize'] = $meta['filesize'] - $meta['offset']; // in rare cases filesize is equal to offset so we need to read physical size if ($meta['imagesize'] < 1) { - $meta['imagesize'] = @filesize($filename) - $meta['offset']; + $meta['imagesize'] = @filesize($fileName) - $meta['offset']; if ($meta['imagesize'] < 1) { - trigger_error('imagecreatefrombmp: Can not obtain filesize of ' . $filename . '!', E_USER_WARNING); + trigger_error('imagecreatefrombmp: Can not obtain filesize of ' . $fileName . '!', E_USER_WARNING); return false; } } @@ -947,7 +932,7 @@ if ( ! function_exists( 'imagebmp') ) { $index = imagecolorat($im, $i, $j); if ($index !== $lastIndex || $sameNum > 255) { if ($sameNum != 0) { - $bmpData .= chr($same_num) . chr($lastIndex); + $bmpData .= chr($sameNum) . chr($lastIndex); } $lastIndex = $index; $sameNum = 1; From 8282cfff044cb88ddc6901c091fe0e29d837a9a4 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 27 Feb 2014 13:15:18 +0100 Subject: [PATCH 030/333] Cache the fileinfo in OC\Preview --- lib/private/preview.php | 241 +++++++++++++++++++++------------------- 1 file changed, 126 insertions(+), 115 deletions(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 80fd003ed8..798a1322b0 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -52,6 +52,11 @@ class Preview { static private $providers = array(); static private $registeredProviders = array(); + /** + * @var \OCP\Files\FileInfo + */ + protected $info; + /** * @brief check if thumbnail or bigger version of thumbnail of file is cached * @param string $user userid - if no user is given, OC_User::getUser will be used @@ -61,12 +66,12 @@ class Preview { * @param int $maxY The maximum Y size of the thumbnail. It can be smaller depending on the shape of the image * @param bool $scalingUp Disable/Enable upscaling of previews * @return mixed (bool / string) - * false if thumbnail does not exist - * path to thumbnail if thumbnail exists - */ - public function __construct($user='', $root='/', $file='', $maxX=1, $maxY=1, $scalingUp=true) { + * false if thumbnail does not exist + * path to thumbnail if thumbnail exists + */ + public function __construct($user = '', $root = '/', $file = '', $maxX = 1, $maxY = 1, $scalingUp = true) { //init fileviews - if($user === ''){ + if ($user === '') { $user = \OC_User::getUser(); } $this->fileView = new \OC\Files\View('/' . $user . '/' . $root); @@ -86,11 +91,11 @@ class Preview { $this->preview = null; //check if there are preview backends - if(empty(self::$providers)) { + if (empty(self::$providers)) { self::initProviders(); } - if(empty(self::$providers)) { + if (empty(self::$providers)) { \OC_Log::write('core', 'No preview providers exist', \OC_Log::ERROR); throw new \Exception('No preview providers'); } @@ -99,15 +104,15 @@ class Preview { /** * @brief returns the path of the file you want a thumbnail from * @return string - */ - public function getFile() { + */ + public function getFile() { return $this->file; } /** * @brief returns the max width of the preview * @return integer - */ + */ public function getMaxX() { return $this->maxX; } @@ -115,7 +120,7 @@ class Preview { /** * @brief returns the max height of the preview * @return integer - */ + */ public function getMaxY() { return $this->maxY; } @@ -123,7 +128,7 @@ class Preview { /** * @brief returns whether or not scalingup is enabled * @return bool - */ + */ public function getScalingUp() { return $this->scalingup; } @@ -131,7 +136,7 @@ class Preview { /** * @brief returns the name of the thumbnailfolder * @return string - */ + */ public function getThumbnailsFolder() { return self::THUMBNAILS_FOLDER; } @@ -139,7 +144,7 @@ class Preview { /** * @brief returns the max scale factor * @return string - */ + */ public function getMaxScaleFactor() { return $this->maxScaleFactor; } @@ -147,7 +152,7 @@ class Preview { /** * @brief returns the max width set in ownCloud's config * @return string - */ + */ public function getConfigMaxX() { return $this->configMaxX; } @@ -155,20 +160,28 @@ class Preview { /** * @brief returns the max height set in ownCloud's config * @return string - */ + */ public function getConfigMaxY() { return $this->configMaxY; } + protected function getFileInfo() { + if (!$this->info) { + $this->info = $this->fileView->getFileInfo($this->file); + } + return $this->info; + } + /** * @brief set the path of the file you want a thumbnail from * @param string $file * @return $this - */ + */ public function setFile($file) { $this->file = $file; + $this->info = null; if ($file !== '') { - $this->mimetype = $this->fileView->getMimeType($this->file); + $this->mimetype = $this->getFileInfo()->getMimetype(); } return $this; } @@ -185,14 +198,14 @@ class Preview { * @brief set the the max width of the preview * @param int $maxX * @return $this - */ - public function setMaxX($maxX=1) { - if($maxX <= 0) { + */ + public function setMaxX($maxX = 1) { + if ($maxX <= 0) { throw new \Exception('Cannot set width of 0 or smaller!'); } $configMaxX = $this->getConfigMaxX(); - if(!is_null($configMaxX)) { - if($maxX > $configMaxX) { + if (!is_null($configMaxX)) { + if ($maxX > $configMaxX) { \OC_Log::write('core', 'maxX reduced from ' . $maxX . ' to ' . $configMaxX, \OC_Log::DEBUG); $maxX = $configMaxX; } @@ -205,14 +218,14 @@ class Preview { * @brief set the the max height of the preview * @param int $maxY * @return $this - */ - public function setMaxY($maxY=1) { - if($maxY <= 0) { + */ + public function setMaxY($maxY = 1) { + if ($maxY <= 0) { throw new \Exception('Cannot set height of 0 or smaller!'); } $configMaxY = $this->getConfigMaxY(); - if(!is_null($configMaxY)) { - if($maxY > $configMaxY) { + if (!is_null($configMaxY)) { + if ($maxY > $configMaxY) { \OC_Log::write('core', 'maxX reduced from ' . $maxY . ' to ' . $configMaxY, \OC_Log::DEBUG); $maxY = $configMaxY; } @@ -225,9 +238,9 @@ class Preview { * @brief set whether or not scalingup is enabled * @param bool $scalingUp * @return $this - */ + */ public function setScalingup($scalingUp) { - if($this->getMaxScaleFactor() === 1) { + if ($this->getMaxScaleFactor() === 1) { $scalingUp = false; } $this->scalingup = $scalingUp; @@ -237,15 +250,15 @@ class Preview { /** * @brief check if all parameters are valid * @return bool - */ + */ public function isFileValid() { $file = $this->getFile(); - if($file === '') { + if ($file === '') { \OC_Log::write('core', 'No filename passed', \OC_Log::DEBUG); return false; } - if(!$this->fileView->file_exists($file)) { + if (!$this->fileView->file_exists($file)) { \OC_Log::write('core', 'File:"' . $file . '" not found', \OC_Log::DEBUG); return false; } @@ -256,40 +269,38 @@ class Preview { /** * @brief deletes previews of a file with specific x and y * @return bool - */ + */ public function deletePreview() { $file = $this->getFile(); - $fileInfo = $this->fileView->getFileInfo($file); - $fileId = $fileInfo['fileid']; + $fileInfo = $this->getFileInfo($file); + $fileId = $fileInfo->getId(); $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/' . $this->getMaxX() . '-' . $this->getMaxY() . '.png'; - $this->userView->unlink($previewPath); - return !$this->userView->file_exists($previewPath); + return $this->userView->unlink($previewPath); } /** * @brief deletes all previews of a file * @return bool - */ + */ public function deleteAllPreviews() { $file = $this->getFile(); - $fileInfo = $this->fileView->getFileInfo($file); - $fileId = $fileInfo['fileid']; + $fileInfo = $this->getFileInfo($file); + $fileId = $fileInfo->getId(); $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; $this->userView->deleteAll($previewPath); - $this->userView->rmdir($previewPath); - return !$this->userView->is_dir($previewPath); + return $this->userView->rmdir($previewPath); } /** * @brief check if thumbnail or bigger version of thumbnail of file is cached * @return mixed (bool / string) - * false if thumbnail does not exist - * path to thumbnail if thumbnail exists - */ + * false if thumbnail does not exist + * path to thumbnail if thumbnail exists + */ private function isCached() { $file = $this->getFile(); $maxX = $this->getMaxX(); @@ -297,75 +308,75 @@ class Preview { $scalingUp = $this->getScalingUp(); $maxScaleFactor = $this->getMaxScaleFactor(); - $fileInfo = $this->fileView->getFileInfo($file); - $fileId = $fileInfo['fileid']; + $fileInfo = $this->getFileInfo($file); + $fileId = $fileInfo->getId(); - if(is_null($fileId)) { + if (is_null($fileId)) { return false; } $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; - if(!$this->userView->is_dir($previewPath)) { + if (!$this->userView->is_dir($previewPath)) { return false; } //does a preview with the wanted height and width already exist? - if($this->userView->file_exists($previewPath . $maxX . '-' . $maxY . '.png')) { + if ($this->userView->file_exists($previewPath . $maxX . '-' . $maxY . '.png')) { return $previewPath . $maxX . '-' . $maxY . '.png'; } - $wantedAspectRatio = (float) ($maxX / $maxY); + $wantedAspectRatio = (float)($maxX / $maxY); //array for usable cached thumbnails $possibleThumbnails = array(); $allThumbnails = $this->userView->getDirectoryContent($previewPath); - foreach($allThumbnails as $thumbnail) { + foreach ($allThumbnails as $thumbnail) { $name = rtrim($thumbnail['name'], '.png'); $size = explode('-', $name); - $x = (int) $size[0]; - $y = (int) $size[1]; + $x = (int)$size[0]; + $y = (int)$size[1]; - $aspectRatio = (float) ($x / $y); - if($aspectRatio !== $wantedAspectRatio) { + $aspectRatio = (float)($x / $y); + if ($aspectRatio !== $wantedAspectRatio) { continue; } - if($x < $maxX || $y < $maxY) { - if($scalingUp) { + if ($x < $maxX || $y < $maxY) { + if ($scalingUp) { $scalefactor = $maxX / $x; - if($scalefactor > $maxScaleFactor) { + if ($scalefactor > $maxScaleFactor) { continue; } - }else{ + } else { continue; } } $possibleThumbnails[$x] = $thumbnail['path']; } - if(count($possibleThumbnails) === 0) { + if (count($possibleThumbnails) === 0) { return false; } - if(count($possibleThumbnails) === 1) { + if (count($possibleThumbnails) === 1) { return current($possibleThumbnails); } ksort($possibleThumbnails); - if(key(reset($possibleThumbnails)) > $maxX) { + if (key(reset($possibleThumbnails)) > $maxX) { return current(reset($possibleThumbnails)); } - if(key(end($possibleThumbnails)) < $maxX) { + if (key(end($possibleThumbnails)) < $maxX) { return current(end($possibleThumbnails)); } - foreach($possibleThumbnails as $width => $path) { - if($width < $maxX) { + foreach ($possibleThumbnails as $width => $path) { + if ($width < $maxX) { continue; - }else{ + } else { return $path; } } @@ -374,9 +385,9 @@ class Preview { /** * @brief return a preview of a file * @return \OC_Image - */ + */ public function getPreview() { - if(!is_null($this->preview) && $this->preview->valid()){ + if (!is_null($this->preview) && $this->preview->valid()) { return $this->preview; } @@ -386,22 +397,22 @@ class Preview { $maxY = $this->getMaxY(); $scalingUp = $this->getScalingUp(); - $fileInfo = $this->fileView->getFileInfo($file); - $fileId = $fileInfo['fileid']; + $fileInfo = $this->getFileInfo($file); + $fileId = $fileInfo->getId(); $cached = $this->isCached(); - if($cached) { + if ($cached) { $image = new \OC_Image($this->userView->file_get_contents($cached, 'r')); $this->preview = $image->valid() ? $image : null; $this->resizeAndCrop(); } - if(is_null($this->preview)) { + if (is_null($this->preview)) { $preview = null; - foreach(self::$providers as $supportedMimetype => $provider) { - if(!preg_match($supportedMimetype, $this->mimetype)) { + foreach (self::$providers as $supportedMimetype => $provider) { + if (!preg_match($supportedMimetype, $this->mimetype)) { continue; } @@ -409,7 +420,7 @@ class Preview { $preview = $provider->getThumbnail($file, $maxX, $maxY, $scalingUp, $this->fileView); - if(!($preview instanceof \OC_Image)) { + if (!($preview instanceof \OC_Image)) { continue; } @@ -419,11 +430,11 @@ class Preview { $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; $cachePath = $previewPath . $maxX . '-' . $maxY . '.png'; - if($this->userView->is_dir($this->getThumbnailsFolder() . '/') === false) { + if ($this->userView->is_dir($this->getThumbnailsFolder() . '/') === false) { $this->userView->mkdir($this->getThumbnailsFolder() . '/'); } - if($this->userView->is_dir($previewPath) === false) { + if ($this->userView->is_dir($previewPath) === false) { $this->userView->mkdir($previewPath); } @@ -433,7 +444,7 @@ class Preview { } } - if(is_null($this->preview)) { + if (is_null($this->preview)) { $this->preview = new \OC_Image(); } @@ -443,10 +454,10 @@ class Preview { /** * @brief show preview * @return void - */ + */ public function showPreview() { \OCP\Response::enableCaching(3600 * 24); // 24 hours - if(is_null($this->preview)) { + if (is_null($this->preview)) { $this->getPreview(); } $this->preview->show(); @@ -456,7 +467,7 @@ class Preview { /** * @brief show preview * @return void - */ + */ public function show() { $this->showPreview(); return; @@ -465,7 +476,7 @@ class Preview { /** * @brief resize, crop and fix orientation * @return void - */ + */ private function resizeAndCrop() { $image = $this->preview; $x = $this->getMaxX(); @@ -473,17 +484,17 @@ class Preview { $scalingUp = $this->getScalingUp(); $maxscalefactor = $this->getMaxScaleFactor(); - if(!($image instanceof \OC_Image)) { + if (!($image instanceof \OC_Image)) { \OC_Log::write('core', '$this->preview is not an instance of OC_Image', \OC_Log::DEBUG); return; } $image->fixOrientation(); - $realx = (int) $image->width(); - $realy = (int) $image->height(); + $realx = (int)$image->width(); + $realy = (int)$image->height(); - if($x === $realx && $y === $realy) { + if ($x === $realx && $y === $realy) { $this->preview = $image; return; } @@ -491,36 +502,36 @@ class Preview { $factorX = $x / $realx; $factorY = $y / $realy; - if($factorX >= $factorY) { + if ($factorX >= $factorY) { $factor = $factorX; - }else{ + } else { $factor = $factorY; } - if($scalingUp === false) { - if($factor > 1) { + if ($scalingUp === false) { + if ($factor > 1) { $factor = 1; } } - if(!is_null($maxscalefactor)) { - if($factor > $maxscalefactor) { + if (!is_null($maxscalefactor)) { + if ($factor > $maxscalefactor) { \OC_Log::write('core', 'scalefactor reduced from ' . $factor . ' to ' . $maxscalefactor, \OC_Log::DEBUG); $factor = $maxscalefactor; } } - $newXsize = (int) ($realx * $factor); - $newYsize = (int) ($realy * $factor); + $newXsize = (int)($realx * $factor); + $newYsize = (int)($realy * $factor); $image->preciseResize($newXsize, $newYsize); - if($newXsize === $x && $newYsize === $y) { + if ($newXsize === $x && $newYsize === $y) { $this->preview = $image; return; } - if($newXsize >= $x && $newYsize >= $y) { + if ($newXsize >= $x && $newYsize >= $y) { $cropX = floor(abs($x - $newXsize) * 0.5); //don't crop previews on the Y axis, this sucks if it's a document. //$cropY = floor(abs($y - $newYsize) * 0.5); @@ -532,19 +543,19 @@ class Preview { return; } - if($newXsize < $x || $newYsize < $y) { - if($newXsize > $x) { + if ($newXsize < $x || $newYsize < $y) { + if ($newXsize > $x) { $cropX = floor(($newXsize - $x) * 0.5); $image->crop($cropX, 0, $x, $newYsize); } - if($newYsize > $y) { + if ($newYsize > $y) { $cropY = floor(($newYsize - $y) * 0.5); $image->crop(0, $cropY, $newXsize, $y); } - $newXsize = (int) $image->width(); - $newYsize = (int) $image->height(); + $newXsize = (int)$image->width(); + $newYsize = (int)$image->height(); //create transparent background layer $backgroundlayer = imagecreatetruecolor($x, $y); @@ -573,8 +584,8 @@ class Preview { * @param array $options * @return void */ - public static function registerProvider($class, $options=array()) { - self::$registeredProviders[]=array('class'=>$class, 'options'=>$options); + public static function registerProvider($class, $options = array()) { + self::$registeredProviders[] = array('class' => $class, 'options' => $options); } /** @@ -582,19 +593,19 @@ class Preview { * @return void */ private static function initProviders() { - if(!\OC_Config::getValue('enable_previews', true)) { + if (!\OC_Config::getValue('enable_previews', true)) { $provider = new Preview\Unknown(array()); self::$providers = array($provider->getMimeType() => $provider); return; } - if(count(self::$providers)>0) { + if (count(self::$providers) > 0) { return; } - foreach(self::$registeredProviders as $provider) { - $class=$provider['class']; - $options=$provider['options']; + foreach (self::$registeredProviders as $provider) { + $class = $provider['class']; + $options = $provider['options']; $object = new $class($options); @@ -611,7 +622,7 @@ class Preview { public static function post_delete($args) { $path = $args['path']; - if(substr($path, 0, 1) === '/') { + if (substr($path, 0, 1) === '/') { $path = substr($path, 1); } $preview = new Preview(\OC_User::getUser(), 'files/', $path); @@ -622,19 +633,19 @@ class Preview { * @param string $mimetype */ public static function isMimeSupported($mimetype) { - if(!\OC_Config::getValue('enable_previews', true)) { + if (!\OC_Config::getValue('enable_previews', true)) { return false; } //check if there are preview backends - if(empty(self::$providers)) { + if (empty(self::$providers)) { self::initProviders(); } //remove last element because it has the mimetype * $providers = array_slice(self::$providers, 0, -1); - foreach($providers as $supportedMimetype => $provider) { - if(preg_match($supportedMimetype, $mimetype)) { + foreach ($providers as $supportedMimetype => $provider) { + if (preg_match($supportedMimetype, $mimetype)) { return true; } } From 7c92e2e3ad9555746aca7df38431a56bc4aced83 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 27 Feb 2014 14:04:19 +0100 Subject: [PATCH 031/333] Update rawlist to work with new fileinfo object --- apps/files/ajax/rawlist.php | 59 +++++++++++++++----------------- lib/private/files/filesystem.php | 2 +- 2 files changed, 29 insertions(+), 32 deletions(-) diff --git a/apps/files/ajax/rawlist.php b/apps/files/ajax/rawlist.php index 40da32b223..89c21a172f 100644 --- a/apps/files/ajax/rawlist.php +++ b/apps/files/ajax/rawlist.php @@ -1,12 +1,12 @@ getPreviewManager()->isMimeSupported($file['mimetype']); - $file["date"] = OCP\Util::formatDate($file["mtime"]); - $file['mimetype_icon'] = \OCA\Files\Helper::determineIcon($file); - $files[] = $file; - } +if ($mimetypes && !in_array('httpd/unix-directory', $mimetypes)) { + $files = array_merge($files, \OC\Files\Filesystem::getDirectoryContent($dir, 'httpd/unix-directory')); } if (is_array($mimetypes) && count($mimetypes)) { foreach ($mimetypes as $mimetype) { - foreach( \OC\Files\Filesystem::getDirectoryContent( $dir, $mimetype ) as $file ) { - $file['directory'] = $dir; - $file['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($file['mimetype']); - $file["date"] = OCP\Util::formatDate($file["mtime"]); - $file['mimetype_icon'] = \OCA\Files\Helper::determineIcon($file); - $files[] = $file; - } + $files = array_merge($files, \OC\Files\Filesystem::getDirectoryContent($dir, $mimetype)); } } else { - foreach( \OC\Files\Filesystem::getDirectoryContent( $dir ) as $file ) { - $file['directory'] = $dir; - $file['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($file['mimetype']); - $file["date"] = OCP\Util::formatDate($file["mtime"]); - $file['mimetype_icon'] = \OCA\Files\Helper::determineIcon($file); - $files[] = $file; - } + $files = array_merge($files, \OC\Files\Filesystem::getDirectoryContent($dir)); +} + +$result = array(); +foreach ($files as $file) { + $fileData = array(); + $fileData['directory'] = $dir; + $fileData['name'] = $file->getName(); + $fileData['type'] = $file->getType(); + $fileData['path'] = $file['path']; + $fileData['id'] = $file->getId(); + $fileData['size'] = $file->getSize(); + $fileData['mtime'] = $file->getMtime(); + $fileData['mimetype'] = $file->getMimetype(); + $fileData['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($file->getMimetype()); + $fileData["date"] = OCP\Util::formatDate($file->getMtime()); + $fileData['mimetype_icon'] = \OCA\Files\Helper::determineIcon($file); + $result[] = $fileData; } // Sort by name -usort($files, function ($a, $b) { - if ($a['name'] === $b['name']) { - return 0; - } - return ($a['name'] < $b['name']) ? -1 : 1; -}); +usort($result, array('\OCA\Files\Helper', 'fileCmp')); -OC_JSON::success(array('data' => $files)); +OC_JSON::success(array('data' => $result)); diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 7f7b6f7f46..6478854eae 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -761,7 +761,7 @@ class Filesystem { * * @param string $directory path under datadirectory * @param string $mimetype_filter limit returned content to this mimetype or mimepart - * @return array + * @return \OC\Files\FileInfo[] */ public static function getDirectoryContent($directory, $mimetype_filter = '') { return self::$defaultInstance->getDirectoryContent($directory, $mimetype_filter); From 49b331be39162bbca738cadfedd6042028613b94 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 27 Feb 2014 14:39:16 +0100 Subject: [PATCH 032/333] add BMP mimetype for BMP previews --- lib/private/mimetypes.list.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index 9bd07b8902..a216414c9d 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -31,6 +31,7 @@ return array( 'bash' => 'text/x-shellscript', 'blend' => 'application/x-blender', 'bin' => 'application/x-bin', + 'bmp' => 'image/bmp', 'cb7' => 'application/x-cbr', 'cba' => 'application/x-cbr', 'cbr' => 'application/x-cbr', From 4c4bb70cb67fb20739ec48fc2d06400485413dda Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 28 Feb 2014 11:14:18 +0100 Subject: [PATCH 033/333] CSS is now loaded directly instead via PHP 269f24cf9617397aaf501b27ec1af2c8e3154cf8 was not changed in setup.php which prevented loading of CSS files in some environments (e.g. my local setup) for apps. --- lib/private/setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/setup.php b/lib/private/setup.php index 3906204bda..0d5bf424b3 100644 --- a/lib/private/setup.php +++ b/lib/private/setup.php @@ -147,7 +147,7 @@ class OC_Setup { $content.= "RewriteRule ^.well-known/host-meta /public.php?service=host-meta [QSA,L]\n"; $content.= "RewriteRule ^.well-known/carddav /remote.php/carddav/ [R]\n"; $content.= "RewriteRule ^.well-known/caldav /remote.php/caldav/ [R]\n"; - $content.= "RewriteRule ^apps/([^/]*)/(.*\.(css|php))$ index.php?app=$1&getfile=$2 [QSA,L]\n"; + $content.= "RewriteRule ^apps/([^/]*)/(.*\.(php))$ index.php?app=$1&getfile=$2 [QSA,L]\n"; $content.= "RewriteRule ^remote/(.*) remote.php [QSA,L]\n"; $content.= "\n"; $content.= "\n"; From 3ff12ef4eca82325a6e4f1244a12597174e07192 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 28 Feb 2014 14:21:33 +0100 Subject: [PATCH 034/333] Also send explicit cache hooks when calling file_put_contents with a resource --- lib/private/files/view.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index a76115a816..975b5d0009 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -310,6 +310,9 @@ class View { fclose($target); fclose($data); if ($this->shouldEmitHooks($path) && $result !== false) { + Updater::writeHook(array( + 'path' => $this->getHookPath($path) + )); if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, From da386aad5950235d6d1089f18b5ef4260057d78e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 28 Feb 2014 14:23:07 +0100 Subject: [PATCH 035/333] Allow re-using already known fileinfo when calculating folder sizes --- apps/files_sharing/lib/cache.php | 3 ++- lib/private/files/cache/cache.php | 12 ++++++++---- lib/private/files/cache/homecache.php | 13 ++++++++++--- lib/private/files/cache/scanner.php | 8 +++++--- lib/private/files/cache/updater.php | 4 ++-- 5 files changed, 27 insertions(+), 13 deletions(-) diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 4b0da0b002..579780dcd2 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -354,9 +354,10 @@ class Shared_Cache extends Cache { * get the size of a folder and set it in the cache * * @param string $path + * @param array $entry (optional) meta data of the folder * @return int */ - public function calculateFolderSize($path) { + public function calculateFolderSize($path, $entry = null) { if ($cache = $this->getSourceCache($path)) { return $cache->calculateFolderSize($this->files[$path]); } diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index 9b18257088..d886fd0fe7 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -498,9 +498,10 @@ class Cache { * update the folder size and the size of all parent folders * * @param string|boolean $path + * @param array $data (optional) meta data of the folder */ - public function correctFolderSize($path) { - $this->calculateFolderSize($path); + public function correctFolderSize($path, $data = null) { + $this->calculateFolderSize($path, $data); if ($path !== '') { $parent = dirname($path); if ($parent === '.' or $parent === '/') { @@ -514,11 +515,14 @@ class Cache { * get the size of a folder and set it in the cache * * @param string $path + * @param array $entry (optional) meta data of the folder * @return int */ - public function calculateFolderSize($path) { + public function calculateFolderSize($path, $entry = null) { $totalSize = 0; - $entry = $this->get($path); + if (is_null($entry)) { + $entry = $this->get($path); + } if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; $sql = 'SELECT SUM(`size`) AS f1, MIN(`size`) AS f2, ' . diff --git a/lib/private/files/cache/homecache.php b/lib/private/files/cache/homecache.php index a7c310a378..fad39a7fda 100644 --- a/lib/private/files/cache/homecache.php +++ b/lib/private/files/cache/homecache.php @@ -13,15 +13,21 @@ class HomeCache extends Cache { * get the size of a folder and set it in the cache * * @param string $path + * @param array $entry (optional) meta data of the folder * @return int */ - public function calculateFolderSize($path) { + public function calculateFolderSize($path, $entry = null) { if ($path !== '/' and $path !== '' and $path !== 'files') { - return parent::calculateFolderSize($path); + return parent::calculateFolderSize($path, $entry); + } elseif ($path === '' or $path === '/') { + // since the size of / isn't used (the size of /files is used instead) there is no use in calculating it + return 0; } $totalSize = 0; - $entry = $this->get($path); + if (is_null($entry)) { + $entry = $this->get($path); + } if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; $sql = 'SELECT SUM(`size`) FROM `*PREFIX*filecache` ' . @@ -40,6 +46,7 @@ class HomeCache extends Cache { /** * @param string $path + * @return array */ public function get($path) { $data = parent::get($path); diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php index 92a4c01841..ee6a828f7c 100644 --- a/lib/private/files/cache/scanner.php +++ b/lib/private/files/cache/scanner.php @@ -173,14 +173,16 @@ class Scanner extends BasicEmitter { * @param string $path * @param bool $recursive * @param int $reuse - * @return int the size of the scanned folder or -1 if the size is unknown at this stage + * @return array with the meta data of the scanned file or folder */ public function scan($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1) { if ($reuse === -1) { $reuse = ($recursive === self::SCAN_SHALLOW) ? self::REUSE_ETAG | self::REUSE_SIZE : 0; } - $this->scanFile($path, $reuse); - return $this->scanChildren($path, $recursive, $reuse); + $data = $this->scanFile($path, $reuse); + $size = $this->scanChildren($path, $recursive, $reuse); + $data['size'] = $size; + return $data; } /** diff --git a/lib/private/files/cache/updater.php b/lib/private/files/cache/updater.php index 7a45b9e9e9..666d5dd7fe 100644 --- a/lib/private/files/cache/updater.php +++ b/lib/private/files/cache/updater.php @@ -38,8 +38,8 @@ class Updater { if ($storage) { $cache = $storage->getCache($internalPath); $scanner = $storage->getScanner($internalPath); - $scanner->scan($internalPath, Scanner::SCAN_SHALLOW); - $cache->correctFolderSize($internalPath); + $data = $scanner->scan($internalPath, Scanner::SCAN_SHALLOW); + $cache->correctFolderSize($internalPath, $data); self::correctFolder($path, $storage->filemtime($internalPath)); self::correctParentStorageMtime($storage, $internalPath); } From 1dcb4f740a566d570f636e665f0973ff38042259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 28 Feb 2014 16:55:50 +0100 Subject: [PATCH 036/333] Update SabreDAV to 1.7.11 --- 3rdparty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty b/3rdparty index 177d3ff656..c77c4ddbd4 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 177d3ff656bcf1153b4def12403c5f2d4fc53e73 +Subproject commit c77c4ddbd4ae86a307d073647e76d602eafd0c64 From 4ab7f58745dd7583163f5f56804774c19b750b57 Mon Sep 17 00:00:00 2001 From: Myles McNamara Date: Fri, 28 Feb 2014 11:15:49 -0500 Subject: [PATCH 037/333] replace spaces in download link without encoding entire URL --- lib/private/app.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/private/app.php b/lib/private/app.php index 048d4d4aeb..cc3a002528 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -218,6 +218,8 @@ class OC_App{ }else{ $appdata=OC_OCSClient::getApplication($app); $download=OC_OCSClient::getApplicationDownload($app, 1); + // Replace spaces in download link without encoding entire URL + $download['downloadlink'] = str_replace(' ', '%20', $download['downloadlink']); if(isset($download['downloadlink']) and $download['downloadlink']!='') { $info = array('source'=>'http', 'href'=>$download['downloadlink'], 'appdata'=>$appdata); $app=OC_Installer::installApp($info); From 195bdff91fc55bf4d2c80ff7d978d74e6efac7a8 Mon Sep 17 00:00:00 2001 From: Myles McNamara Date: Fri, 28 Feb 2014 11:19:19 -0500 Subject: [PATCH 038/333] move replace to inside isset --- lib/private/app.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/app.php b/lib/private/app.php index cc3a002528..58bf67c1d4 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -218,9 +218,9 @@ class OC_App{ }else{ $appdata=OC_OCSClient::getApplication($app); $download=OC_OCSClient::getApplicationDownload($app, 1); - // Replace spaces in download link without encoding entire URL - $download['downloadlink'] = str_replace(' ', '%20', $download['downloadlink']); if(isset($download['downloadlink']) and $download['downloadlink']!='') { + // Replace spaces in download link without encoding entire URL + $download['downloadlink'] = str_replace(' ', '%20', $download['downloadlink']); $info = array('source'=>'http', 'href'=>$download['downloadlink'], 'appdata'=>$appdata); $app=OC_Installer::installApp($info); } From d802ae298f46782fe13372940f31fb99725d3344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 28 Feb 2014 19:11:40 +0100 Subject: [PATCH 039/333] Update 3rdparty submodule --- 3rdparty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty b/3rdparty index c77c4ddbd4..ddb0931c6c 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit c77c4ddbd4ae86a307d073647e76d602eafd0c64 +Subproject commit ddb0931c6c54f927ba450cb0f65e87004c38bfd4 From 5d5306175f5dd272bead7161f3dd1054cf73dcd0 Mon Sep 17 00:00:00 2001 From: kondou Date: Sat, 1 Mar 2014 03:38:35 +0100 Subject: [PATCH 040/333] Fix some docstrings in l10n.php --- lib/private/l10n.php | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/lib/private/l10n.php b/lib/private/l10n.php index ad979a9287..197b2d6791 100644 --- a/lib/private/l10n.php +++ b/lib/private/l10n.php @@ -73,8 +73,8 @@ class OC_L10N implements \OCP\IL10N { /** * get an L10N instance - * @param $app string - * @param $lang string|null + * @param string $app + * @param string|null $lang * @return OC_L10N */ public static function get($app, $lang=null) { @@ -87,8 +87,8 @@ class OC_L10N implements \OCP\IL10N { /** * @brief The constructor - * @param $app string app requesting l10n - * @param $lang string default: null Language + * @param string $app app requesting l10n + * @param string $lang default: null Language * @returns OC_L10N-Object * * If language is not set, the constructor tries to find the right @@ -237,7 +237,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief Translating - * @param $text String The text we need a translation for + * @param string $text The text we need a translation for * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * @@ -250,9 +250,9 @@ class OC_L10N implements \OCP\IL10N { /** * @brief Translating - * @param $text_singular String the string to translate for exactly one object - * @param $text_plural String the string to translate for n objects - * @param $count Integer Number of objects + * @param string $text_singular the string to translate for exactly one object + * @param string $text_plural the string to translate for n objects + * @param integer $count Number of objects * @param array $parameters default:array() Parameters for sprintf * @return \OC_L10N_String Translation or the same text * @@ -351,7 +351,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief Localization - * @param $type Type of localization + * @param string $type Type of localization * @param $params parameters for this localization * @returns String or false * @@ -406,7 +406,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief Choose a language - * @param $texts Associative Array with possible strings + * @param array $text Associative Array with possible strings * @returns String * * $text is an array 'de' => 'hallo welt', 'en' => 'hello world', ... @@ -421,7 +421,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief find the best language - * @param $app Array or string, details below + * @param array|string $app details below * @returns string language * * If $app is an array, ownCloud assumes that these are the available @@ -494,7 +494,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief find the l10n directory - * @param $app App that needs to be translated + * @param string $app App that needs to be translated * @returns directory */ protected static function findI18nDir($app) { @@ -514,7 +514,7 @@ class OC_L10N implements \OCP\IL10N { /** * @brief find all available languages for an app - * @param $app App that needs to be translated + * @param string $app App that needs to be translated * @returns array an array of available languages */ public static function findAvailableLanguages($app=null) { @@ -533,7 +533,9 @@ class OC_L10N implements \OCP\IL10N { } /** + * @param string $app * @param string $lang + * @returns bool */ public static function languageExists($app, $lang) { if ($lang == 'en') {//english is always available From 1291303c5a312fad9f01fbaf22cc21e3b9b3675d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 2 Mar 2014 22:30:24 +0100 Subject: [PATCH 041/333] Replace OC.Router.generate() with OC.generateUrl() --- apps/files/js/filelist.js | 4 +- apps/files/js/files.js | 4 +- apps/files_sharing/appinfo/routes.php | 1 + core/js/jquery.avatar.js | 41 +++++++------- core/js/js.js | 31 ++++++++-- core/js/router.js | 81 --------------------------- core/js/tags.js | 18 +++--- core/routes.php | 2 - lib/base.php | 1 - lib/private/router.php | 24 -------- settings/js/admin.js | 2 +- settings/js/personal.js | 10 ++-- settings/js/users.js | 5 +- settings/routes.php | 2 + 14 files changed, 72 insertions(+), 154 deletions(-) delete mode 100644 core/js/router.js diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 550c10dba3..c3c7f4c2b9 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -137,7 +137,9 @@ window.FileList={ var download_url = null; if (!param.download_url) { - download_url = OC.Router.generate('download', { file: $('#dir').val()+'/'+name }); + download_url = OC.generateUrl( + '/download{file}', + { file: $('#dir').val()+'/'+name }); } else { download_url = param.download_url; } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index f454612070..c93862e85d 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -780,9 +780,9 @@ Files.lazyLoadPreview = function(path, mime, ready, width, height, etag) { if ( $('#isPublic').length ) { urlSpec.t = $('#dirToken').val(); - previewURL = OC.Router.generate('core_ajax_public_preview', urlSpec); + previewURL = OC.generateUrl('/publicpreview.png?') + $.param(urlSpec); } else { - previewURL = OC.Router.generate('core_ajax_preview', urlSpec); + previewURL = OC.generateUrl('/core/preview.png?') + $.param(urlSpec); } previewURL = previewURL.replace('(', '%28'); previewURL = previewURL.replace(')', '%29'); diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index 3469829b6f..9417a6eeb8 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -1,4 +1,5 @@ create('core_ajax_public_preview', '/publicpreview.png')->action( function() { require_once __DIR__ . '/../ajax/publicpreview.php'; diff --git a/core/js/jquery.avatar.js b/core/js/jquery.avatar.js index 02a40c088b..381c42d9db 100644 --- a/core/js/jquery.avatar.js +++ b/core/js/jquery.avatar.js @@ -75,31 +75,32 @@ var $div = this; - OC.Router.registerLoadedCallback(function() { - var url = OC.Router.generate('core_avatar_get', {user: user, size: size})+'?requesttoken='+oc_requesttoken; - $.get(url, function(result) { - if (typeof(result) === 'object') { - if (!hidedefault) { - if (result.data && result.data.displayname) { - $div.imageplaceholder(user, result.data.displayname); - } else { - $div.imageplaceholder(user); - } + var url = OC.generateUrl( + '/avatar/{user}/{size}?requesttoken={requesttoken}', + {user: user, size: size, requesttoken: oc_requesttoken}); + + $.get(url, function(result) { + if (typeof(result) === 'object') { + if (!hidedefault) { + if (result.data && result.data.displayname) { + $div.imageplaceholder(user, result.data.displayname); } else { - $div.hide(); + $div.imageplaceholder(user); } } else { - $div.show(); - if (ie8fix === true) { - $div.html(''); - } else { - $div.html(''); - } + $div.hide(); } - if(typeof callback === 'function') { - callback(); + } else { + $div.show(); + if (ie8fix === true) { + $div.html(''); + } else { + $div.html(''); } - }); + } + if(typeof callback === 'function') { + callback(); + } }); }; }(jQuery)); diff --git a/core/js/js.js b/core/js/js.js index 21ccee0f1d..80d83dc07f 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -194,6 +194,27 @@ var OC={ linkToRemoteBase:function(service) { return OC.webroot + '/remote.php/' + service; }, + + generateUrl: function(url, params) { + var _build = function (text, vars) { + return text.replace(/{([^{}]*)}/g, + function (a, b) { + var r = vars[b]; + return typeof r === 'string' || typeof r === 'number' ? r : a; + } + ); + }; + if (url.charAt(0) !== '/') { + url = '/' + url; + + } + return OC.webroot + '/index.php' + _build(url, params); + }, + + linkToRoute:function(route) { + return OC.webroot + '/index.php/' + route; + }, + /** * @brief Creates an absolute url for remote use * @param string $service id @@ -791,12 +812,10 @@ function initCore() { if (interval < 60) { interval = 60; } - OC.Router.registerLoadedCallback(function(){ - var url = OC.Router.generate('heartbeat'); - setInterval(function(){ - $.post(url); - }, interval * 1000); - }); + var url = OC.linkToRoute('heartbeat'); + setInterval(function(){ + $.post(url); + }, interval * 1000); } // session heartbeat (defaults to enabled) diff --git a/core/js/router.js b/core/js/router.js deleted file mode 100644 index e6ef54a186..0000000000 --- a/core/js/router.js +++ /dev/null @@ -1,81 +0,0 @@ -OC.router_base_url = OC.webroot + '/index.php'; -OC.Router = { - // register your ajax requests to load after the loading of the routes - // has finished. otherwise you face problems with race conditions - registerLoadedCallback: function(callback){ - if (!this.routes_request){ - return; - } - this.routes_request.done(callback); - }, - routes_request: !window.TESTING && $.ajax(OC.router_base_url + '/core/routes.json', { - dataType: 'json', - success: function(jsondata) { - if (jsondata.status === 'success') { - OC.Router.routes = jsondata.data; - } - } - }), - generate:function(name, opt_params) { - if (!('routes' in this)) { - if(this.routes_request.state() != 'resolved') { - console.warn('To avoid race conditions, please register a callback');// wait - } - } - if (!(name in this.routes)) { - throw new Error('The route "' + name + '" does not exist.'); - } - var route = this.routes[name]; - var params = opt_params || {}; - var unusedParams = $.extend(true, {}, params); - var url = ''; - var optional = true; - $(route.tokens).each(function(i, token) { - if ('text' === token[0]) { - url = token[1] + url; - optional = false; - - return; - } - - if ('variable' === token[0]) { - if (false === optional || !(token[3] in route.defaults) - || ((token[3] in params) && params[token[3]] != route.defaults[token[3]])) { - var value; - if (token[3] in params) { - value = params[token[3]]; - delete unusedParams[token[3]]; - } else if (token[3] in route.defaults) { - value = route.defaults[token[3]]; - } else if (optional) { - return; - } else { - throw new Error('The route "' + name + '" requires the parameter "' + token[3] + '".'); - } - - var empty = true === value || false === value || '' === value; - - if (!empty || !optional) { - url = token[1] + encodeURIComponent(value).replace(/%2F/g, '/') + url; - } - - optional = false; - } - - return; - } - - throw new Error('The token type "' + token[0] + '" is not supported.'); - }); - if (url === '') { - url = '/'; - } - - unusedParams = $.param(unusedParams); - if (unusedParams.length > 0) { - url += '?'+unusedParams; - } - - return OC.router_base_url + url; - } -} diff --git a/core/js/tags.js b/core/js/tags.js index bc6d7b4e07..bc2b42bf5f 100644 --- a/core/js/tags.js +++ b/core/js/tags.js @@ -69,7 +69,7 @@ OC.Tags= { type = type ? type : this.type; var defer = $.Deferred(), self = this, - url = OC.Router.generate('core_tags_ids_for_tag', {type: type}); + url = OC.generateUrl('/tags/{type}/ids', {type: type}); $.getJSON(url, {tag: tag}, function(response) { if(response.status === 'success') { defer.resolve(response.ids); @@ -90,7 +90,7 @@ OC.Tags= { type = type ? type : this.type; var defer = $.Deferred(), self = this, - url = OC.Router.generate('core_tags_favorites', {type: type}); + url = OC.generateUrl('/tags/{type}/favorites', {type: type}); $.getJSON(url, function(response) { if(response.status === 'success') { defer.resolve(response.ids); @@ -111,7 +111,7 @@ OC.Tags= { type = type ? type : this.type; var defer = $.Deferred(), self = this, - url = OC.Router.generate('core_tags_tags', {type: type}); + url = OC.generateUrl('/tags/{type}', {type: type}); $.getJSON(url, function(response) { if(response.status === 'success') { defer.resolve(response.tags); @@ -133,7 +133,7 @@ OC.Tags= { type = type ? type : this.type; var defer = $.Deferred(), self = this, - url = OC.Router.generate('core_tags_tag', {type: type, id: id}); + url = OC.generateUrl('/tags/{type}/tag/{id}/', {type: type, id: id}); $.post(url, {tag: tag}, function(response) { if(response.status === 'success') { defer.resolve(response); @@ -157,7 +157,7 @@ OC.Tags= { type = type ? type : this.type; var defer = $.Deferred(), self = this, - url = OC.Router.generate('core_tags_untag', {type: type, id: id}); + url = OC.generateUrl('/tags/{type}/untag/{id}/', {type: type, id: id}); $.post(url, {tag: tag}, function(response) { if(response.status === 'success') { defer.resolve(response); @@ -181,7 +181,7 @@ OC.Tags= { type = type ? type : this.type; var defer = $.Deferred(), self = this, - url = OC.Router.generate('core_tags_favorite', {type: type, id: id}); + url = OC.generateUrl('/tags/{type}/favorite/{id}/', {type: type, id: id}); $.post(url, function(response) { if(response.status === 'success') { defer.resolve(response); @@ -205,7 +205,7 @@ OC.Tags= { type = type ? type : this.type; var defer = $.Deferred(), self = this, - url = OC.Router.generate('core_tags_unfavorite', {type: type, id: id}); + url = OC.generateUrl('/tags/{type}/unfavorite/{id}/', {type: type, id: id}); $.post(url, function(response) { if(response.status === 'success') { defer.resolve(); @@ -229,7 +229,7 @@ OC.Tags= { type = type ? type : this.type; var defer = $.Deferred(), self = this, - url = OC.Router.generate('core_tags_add', {type: type}); + url = OC.generateUrl('/tags/{type}/add', {type: type}); $.post(url,{tag:tag}, function(response) { if(typeof cb == 'function') { cb(response); @@ -256,7 +256,7 @@ OC.Tags= { type = type ? type : this.type; var defer = $.Deferred(), self = this, - url = OC.Router.generate('core_tags_delete', {type: type}); + url = OC.generateUrl('/tags/{type}/delete', {type: type}); if(!tags || !tags.length) { throw new Error(t('core', 'No tags selected for deletion.')); } diff --git a/core/routes.php b/core/routes.php index aea788bdc6..76cf03c367 100644 --- a/core/routes.php +++ b/core/routes.php @@ -65,8 +65,6 @@ $this->create('core_tags_delete', '/tags/{type}/delete') $this->create('js_config', '/core/js/oc.js') ->actionInclude('core/js/config.php'); // Routing -$this->create('core_ajax_routes', '/core/routes.json') - ->action('OC_Router', 'JSRoutes'); $this->create('core_ajax_preview', '/core/preview.png') ->actionInclude('core/ajax/preview.php'); $this->create('core_lostpassword_index', '/lostpassword/') diff --git a/lib/base.php b/lib/base.php index 49cbb1279d..7703e83ec2 100644 --- a/lib/base.php +++ b/lib/base.php @@ -316,7 +316,6 @@ class OC { OC_Util::addScript("config"); //OC_Util::addScript( "multiselect" ); OC_Util::addScript('search', 'result'); - OC_Util::addScript('router'); OC_Util::addScript("oc-requesttoken"); // avatars diff --git a/lib/private/router.php b/lib/private/router.php index 19c1e4473e..918e3b1320 100644 --- a/lib/private/router.php +++ b/lib/private/router.php @@ -158,28 +158,4 @@ class OC_Router { return $this->getGenerator()->generate($name, $parameters, $absolute); } - /** - * Generate JSON response for routing in javascript - */ - public static function JSRoutes() - { - $router = OC::getRouter(); - - $etag = $router->getCacheKey(); - OC_Response::enableCaching(); - OC_Response::setETagHeader($etag); - - $root = $router->getCollection('root'); - $routes = array(); - foreach($root->all() as $name => $route) { - $compiled_route = $route->compile(); - $defaults = $route->getDefaults(); - unset($defaults['action']); - $routes[$name] = array( - 'tokens' => $compiled_route->getTokens(), - 'defaults' => $defaults, - ); - } - OCP\JSON::success ( array( 'data' => $routes ) ); - } } diff --git a/settings/js/admin.js b/settings/js/admin.js index 5ea6a5af2d..cfb1cb788d 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -64,7 +64,7 @@ $(document).ready(function(){ $('#mail_settings').change(function(){ OC.msg.startSaving('#mail_settings .msg'); var post = $( "#mail_settings" ).serialize(); - $.post(OC.Router.generate('settings_mail_settings'), post, function(data){ + $.post(OC.generateUrl('/settings/admin/mailsettings'), post, function(data){ OC.msg.finishedSaving('#mail_settings .msg', data); }); }); diff --git a/settings/js/personal.js b/settings/js/personal.js index 98bfe7132d..7a4257f1c9 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -67,7 +67,7 @@ function showAvatarCropper() { $cropper.prepend(""); $cropperImage = $('#cropper img'); - $cropperImage.attr('src', OC.Router.generate('core_avatar_get_tmp')+'?requesttoken='+oc_requesttoken+'#'+Math.floor(Math.random()*1000)); + $cropperImage.attr('src', OC.generateUrl('/avatar/tmp')+'?requesttoken='+oc_requesttoken+'#'+Math.floor(Math.random()*1000)); // Looks weird, but on('load', ...) doesn't work in IE8 $cropperImage.ready(function(){ @@ -95,7 +95,7 @@ function sendCropData() { w: cropperdata.w, h: cropperdata.h }; - $.post(OC.Router.generate('core_avatar_post_cropped'), {crop: data}, avatarResponseHandler); + $.post(OC.generateUrl('/avatar/cropped'), {crop: data}, avatarResponseHandler); } function saveCoords(c) { @@ -132,7 +132,7 @@ $(document).ready(function(){ $('#passwordchanged').hide(); $('#passworderror').hide(); // Ajax foo - $.post(OC.Router.generate('settings_personal_changepassword'), post, function(data){ + $.post(OC.generateUrl('/settings/personal/changepassword'), post, function(data){ if( data.status === "success" ){ $('#pass1').val(''); $('#pass2').val(''); @@ -243,7 +243,7 @@ $(document).ready(function(){ OC.dialogs.filepicker( t('settings', "Select a profile picture"), function(path){ - $.post(OC.Router.generate('core_avatar_post'), {path: path}, avatarResponseHandler); + $.post(OC.generateUrl('/avatar/'), {path: path}, avatarResponseHandler); }, false, ["image/png", "image/jpeg"] @@ -253,7 +253,7 @@ $(document).ready(function(){ $('#removeavatar').click(function(){ $.ajax({ type: 'DELETE', - url: OC.Router.generate('core_avatar_delete'), + url: OC.generateUrl('/avatar/'), success: function(msg) { updateAvatar(true); } diff --git a/settings/js/users.js b/settings/js/users.js index 160d0a8d9d..6b5447c767 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -225,7 +225,8 @@ var UserList = { } $('table+.loading').css('visibility', 'visible'); UserList.updating = true; - $.get(OC.Router.generate('settings_ajax_userlist', { offset: UserList.offset, limit: UserList.usersToLoad }), function (result) { + var query = $.param({ offset: UserList.offset, limit: UserList.usersToLoad }); + $.get(OC.generateUrl('/settings/ajax/userlist') + query, function (result) { var loadedUsers = 0; var trs = []; if (result.status === 'success') { @@ -401,7 +402,7 @@ $(document).ready(function () { if ($(this).val().length > 0) { var recoveryPasswordVal = $('input:password[id="recoveryPassword"]').val(); $.post( - OC.Router.generate('settings_users_changepassword'), + OC.generateUrl('/settings/users/changepassword'), {username: uid, password: $(this).val(), recoveryPassword: recoveryPasswordVal}, function (result) { if (result.status != 'success') { diff --git a/settings/routes.php b/settings/routes.php index 64f7122f0c..7d94f13008 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -6,6 +6,8 @@ * See the COPYING-README file. */ +/** @var $this OC_Router */ + // Settings pages $this->create('settings_help', '/settings/help') ->actionInclude('settings/help.php'); From e1030c6b5f8775ad4aac13659757cd6cc3cd441b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 2 Mar 2014 23:15:37 +0100 Subject: [PATCH 042/333] adding JSDoc + remove unused function --- core/js/js.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 80d83dc07f..77aadd23e0 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -195,6 +195,13 @@ var OC={ return OC.webroot + '/remote.php/' + service; }, + /** + * Generates the absolute url for the given relative url, which can contain parameters. + * + * @returns {string} + * @param {string} url + * @param params + */ generateUrl: function(url, params) { var _build = function (text, vars) { return text.replace(/{([^{}]*)}/g, @@ -211,10 +218,6 @@ var OC={ return OC.webroot + '/index.php' + _build(url, params); }, - linkToRoute:function(route) { - return OC.webroot + '/index.php/' + route; - }, - /** * @brief Creates an absolute url for remote use * @param string $service id @@ -812,7 +815,7 @@ function initCore() { if (interval < 60) { interval = 60; } - var url = OC.linkToRoute('heartbeat'); + var url = OC.generateUrl('/heartbeat'); setInterval(function(){ $.post(url); }, interval * 1000); From 9f087a2070c1115eeb6bd0d961f7629e19eceefc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 2 Mar 2014 23:41:14 +0100 Subject: [PATCH 043/333] fixing download url in files app --- apps/files/js/filelist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index c3c7f4c2b9..d6a4ae9976 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -138,7 +138,7 @@ window.FileList={ var download_url = null; if (!param.download_url) { download_url = OC.generateUrl( - '/download{file}', + 'apps/files/download{file}', { file: $('#dir').val()+'/'+name }); } else { download_url = param.download_url; From 5f711912a1f6db7a2f28105101f808e89a2efe50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 2 Mar 2014 23:45:23 +0100 Subject: [PATCH 044/333] remove OC.Router.registerLoadedCallback() --- settings/js/users.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/settings/js/users.js b/settings/js/users.js index 6b5447c767..284976d3ba 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -372,9 +372,7 @@ $(document).ready(function () { UserList.doSort(); UserList.availableGroups = $('#content table').data('groups'); - OC.Router.registerLoadedCallback(function() { - $(window).scroll(function(e) {UserList._onScroll(e);}); - }); + $(window).scroll(function(e) {UserList._onScroll(e);}); $('table').after($('')); $('select[multiple]').each(function (index, element) { From a8883f4ed22f32ef8eccca5dc0433d7219b9ab57 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 27 Feb 2014 16:18:03 +0100 Subject: [PATCH 045/333] LDAP: let proxy for multiple server access methods from Access --- apps/user_ldap/user_proxy.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/apps/user_ldap/user_proxy.php b/apps/user_ldap/user_proxy.php index 5ad127197f..67f8639b18 100644 --- a/apps/user_ldap/user_proxy.php +++ b/apps/user_ldap/user_proxy.php @@ -54,8 +54,12 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface { protected function walkBackends($uid, $method, $parameters) { $cacheKey = $this->getUserCacheKey($uid); foreach($this->backends as $configPrefix => $backend) { -// print("walkBackend '$configPrefix'
"); - if($result = call_user_func_array(array($backend, $method), $parameters)) { + $instance = $backend; + if(!method_exists($instance, $method) + && method_exists($this->getAccess($configPrefix), $method)) { + $instance = $this->getAccess($configPrefix); + } + if($result = call_user_func_array(array($instance, $method), $parameters)) { $this->writeToCache($cacheKey, $configPrefix); return $result; } @@ -75,9 +79,14 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface { $cacheKey = $this->getUserCacheKey($uid); $prefix = $this->getFromCache($cacheKey); //in case the uid has been found in the past, try this stored connection first - if(!is_null($prefix)) { + if(false && !is_null($prefix)) { if(isset($this->backends[$prefix])) { - $result = call_user_func_array(array($this->backends[$prefix], $method), $parameters); + $instance = $this->backends[$prefix]; + if(!method_exists($instance, $method) + && method_exists($this->getAccess($prefix), $method)) { + $instance = $this->getAccess($prefix); + } + $result = call_user_func_array(array($instance, $method), $parameters); if($result === $passOnWhen) { //not found here, reset cache to null if user vanished //because sometimes methods return false with a reason From c7751c0795c74759a74a73ba9290c17f6db3870b Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 27 Feb 2014 16:20:53 +0100 Subject: [PATCH 046/333] intendetion. where did the whitespaces come from? --- apps/user_ldap/user_proxy.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/user_proxy.php b/apps/user_ldap/user_proxy.php index 67f8639b18..2b1b86056e 100644 --- a/apps/user_ldap/user_proxy.php +++ b/apps/user_ldap/user_proxy.php @@ -59,10 +59,10 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface { && method_exists($this->getAccess($configPrefix), $method)) { $instance = $this->getAccess($configPrefix); } - if($result = call_user_func_array(array($instance, $method), $parameters)) { + if($result = call_user_func_array(array($instance, $method), $parameters)) { $this->writeToCache($cacheKey, $configPrefix); return $result; - } + } } return false; } From b968eed27ba458511e646410525c0144da23db42 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 28 Feb 2014 10:58:51 +0100 Subject: [PATCH 047/333] remove remaining testing artefact --- apps/user_ldap/user_proxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/user_proxy.php b/apps/user_ldap/user_proxy.php index 2b1b86056e..2cb3dfb2c6 100644 --- a/apps/user_ldap/user_proxy.php +++ b/apps/user_ldap/user_proxy.php @@ -79,7 +79,7 @@ class User_Proxy extends lib\Proxy implements \OCP\UserInterface { $cacheKey = $this->getUserCacheKey($uid); $prefix = $this->getFromCache($cacheKey); //in case the uid has been found in the past, try this stored connection first - if(false && !is_null($prefix)) { + if(!is_null($prefix)) { if(isset($this->backends[$prefix])) { $instance = $this->backends[$prefix]; if(!method_exists($instance, $method) From dcae91429f0e9999dde4c9b396aee53c73ed6674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 3 Mar 2014 10:55:01 +0100 Subject: [PATCH 048/333] add .scrutinizer.yml --- .scrutinizer.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .scrutinizer.yml diff --git a/.scrutinizer.yml b/.scrutinizer.yml new file mode 100644 index 0000000000..9cff2b48db --- /dev/null +++ b/.scrutinizer.yml @@ -0,0 +1,24 @@ +filter: + excluded_paths: + - '3rdparty/*' + - 'apps/*/3rdparty/*' + - 'l10n/*' + - 'core/l10n/*' + - 'apps/*/l10n/*' + - 'lib/l10n/*' + - 'core/js/tests/lib/*.js' + - 'core/js/jquery-1.10.0.min.js' + - 'core/js/jquery-1.10.0.min.js' + - 'core/js/jquery-migrate-1.2.1.min.js' + - 'core/js/jquery-showpassword.js' + - 'core/js/jquery-tipsy.js' + - 'core/js/jquery.infieldlabel.js' + - 'core/js/jquery-ui-1.10.0.custom.js' + - 'core/js/jquery.inview.js' + - 'core/js/jquery.placeholder.js' + + +imports: + - javascript + - php + From 607f205bdae89086267eeaa18810017347d3592f Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 3 Mar 2014 12:21:08 +0100 Subject: [PATCH 049/333] mail template: remove off-white background color to better blend into mail client --- core/templates/mail.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/core/templates/mail.php b/core/templates/mail.php index b8b0a2bfe9..c46fd6ab80 100644 --- a/core/templates/mail.php +++ b/core/templates/mail.php @@ -7,10 +7,10 @@ <?php p($theme->getName()); ?> -  +  -  - +  + t('Hey there,

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

', array($_['user_displayname'], $_['filename'], $_['link']))); if ( isset($_['expiration']) ) { @@ -21,17 +21,17 @@ p($l->t('Cheers!')); ?> -  +  -  ---
+  +--
getName()); ?> - getSlogan()); ?>
getBaseUrl());?> -  +  From eac9eebfdb3f7e3770ee70f35d3528a7fa31d153 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 3 Mar 2014 12:42:58 +0100 Subject: [PATCH 050/333] compress mail notification logo --- core/img/logo-mail.gif | Bin 2196 -> 1191 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/core/img/logo-mail.gif b/core/img/logo-mail.gif index 6a1caaa9188d02bb3001b74d3525d77b58934d2a..f1dd108450e80345b170c5a9828289cae4687891 100644 GIT binary patch literal 1191 zcmV;Y1X%k=Nk%w1VW0pi0Q3L=9W6vAHA^i#Q71M`I7V7PPGLz_Xi;8pSY&l$ZhmWZ zg>-(5e1(&Vk)4B#nU0pBl$)lUqphT?w6eFqtg^bdyu-c0$im0X$js8z*WAw1*WBLX z-r?ls=j#9e|L*VcA^8LV00000EC2ui0H6RW000I4ARvxpX`X1Ru59bRa4gSsZQppV z?|kq7z@TtQEE;ME6Wfce>7Xr744+Mu>y6va~>9!njP(TByEEx*G)6&4-E@@>f z1i*6;A%S%3P9ea6M8O0b^ZF!!P;m={0~-DwASiI4TBeO1Kh6*k08ShY21=GW5RRO= zGy)h<*x&``5sxttOdv#nOq`86w_pfq=7Fgx2|7ryB*Lf>q%N*(5r8N_)G`5znYmC! zLWX`_IUbeCVqzy(X5OCVw=j-_DGM-MjT_TN1T%x;Ojxj2%L0gUkX$5i!fO$*D-Ogl zV6)7F!;L*ecpxbP5(y0}%l%4M1xYgz7{q}vDzpO%k}w?L@BxF>5d}7s2wuWK1`-6^ z_HJJ zBaDww(1GB90~BOH831VwX5DHdF#gcN0?r^%0R}Ezhk|w^II!S=B4DP1T4h84i3b%B zz=Q<@gysQWh`5wt25#Udf{Os?S6>Ghiok$eFe-r{0O-^RzysR>AYpbvBCvsq`+UYMXkQP`P4Apjd3aDs*@ zbQXsK0R$w0Yda%S^`QU{!A9>2$P;rDFB0@@W2D^Tsdd2l_Ana91ZYMk^-cGl4c26 zhFhGtBOJhyv?Nd~LSP0O@GP1qtSLe+CjbmU2XIyBs0-~r#Uusw86=5wpZ1Y%!V0iB zu$&{11Xl!>;#=<@Be<1tTJQ2mV+lZ7mjRML2AV(y%8t;1m@i0K#s&sJxrN3e+*6e) z=)@7HkR3E&z<=`5hjc#iaiCxWY)HU?6e5eD?+96KL$ud!`|Y^ruKVu1_ijT7 F06Rxl+d=>U literal 2196 zcmcK4i9geg0|)T$He=3a$+KL|)x#*WTv48Fj5*sJx#pHz?ve-1oZGCHyO1--qFj%J zJagstNbV>TB}$4O>FKGT=a2ZkU!OnW^ZA%tm>KAMmjP(tEda=$GF3QDJfTHIX_+Zv z%oVjsN?4Ne84DF1OI01Kle$*F>RGGl+o&7Zs-Lw*pS_@ANY*qWpE^f5ecn#%ygkO) z9`l=nHqH@?zoonl^PJ|9(c_oDBd$T-ZSKPuh0bV&;*~bMBmFv ze&N^sBWVFq^uTC(P)tg2Y-&hsTIiLuu&e2p<1)gpWrW9PM#M9s5}476teB*%E7#fA zQaJG`w|-B}PDsm6OwUQm$W6-3yPlaxW8^0@3+SxEl&r#3_U$zGo%9<;={JiqIK`Q_ zN*K3FnAvw(Ii*>-W$e7N8~Noo@+)o@RB{R{Z{4oSDXPvbs?IB}$uFtRzgt^ST31-g zy~H$VEb^>NQ19X)NGeUG~O+n@A5?jGpm4R-McpY#kp=^gIw z8|Dp+_6&^mJ{{{D9Pb~R7#RNR>B!{Z=(C}*sp0Xdk%{M{6VqdpGvm)@C#L59dOkP# zeE!+=!qm*-^V!Aexfj!OOEdG!vkS{}i!bM2yjoa#wYaqMVwu16a&_s|>hj9#m;AL? z{PmU9b^hx&t7~sxuWzg!=FPkHx0`P^Hs8M6+Sq*mZu7(D)`zY4+wZq`K78Eyxbu1E z)9$CwySuwzcK5z~`FsEG{jd994;>sFeEat8pZ|RS{{7!WKMwu;`SY-)|EFjIhyL3F z0Q&)eU~;6!vYr&!Q8aa^vAiz>u54LMYN{AuAKt=_4P396 zu4YU>Y!al(Yan`?OQ^WSe@E!`Za2f3ZM3$F+yxYl|iG!DM! zE=Hl)`qxV&e(kWCt1&CR5-GZ0J8tWxg=BeTnsOL|Ms1pnZM#y^Fl1JtHk}VTc9OwF zS7JK$@fuy->!EaXK$D6FMqQ)BI)^0}a5Y|JrSluqhNuk{*53pbg~fLM7#@am)v`99 z$V=sjNSMnY8U(j;iQwlGdK>0iuA_ChQwK)x=*ilKvAxJ6HDv-&RcT2|0pbea?4Y3A zZfAZ(eT|IwgrSF4OyNlQjMIam6?Ur8wKEXW!q9ws?Co|=u7JBi@8}UACT@x@3Bofl z{6JvL)wq`KL*ahiIi?@^-Z2L;gd`A!!E1#pH%{pF^ArtZcL4*>pcI;(`L;^+nGiN% z*_t`sOu!r7>Gw5(tu))~%GAe-ie8c)@NxGW%Y~w$NT~peXske{!x5F;W2&xuk8`9` zrqjfQ)q;4|Fd=zMy9$v7z@LK6a(0lXlejskXt7x#%O5F?$($PHiuDPz6DkPi^iw z!3|yI)h5!Tdl)H1+@#c_bI{1XafFICpsH!Ii}NTZEDLw4tksG4Q^|1o!^7FezZaSA zJAD-Cw~NOmK_?_lGb>DV499m^Ke&I6p**pI?g+sdik4eD&YqP$fUhQjXoILebu7>d zcuxXN&fC~U%)VV8K3vw1>##&B$8{MV>rLajFDZI1K+k#$^CuJ}X#Eg}79QRMt^|M7 z!d#;1gh)@P%bzL@BQGM=Qpg+71J^mU<+ctRTDj+9DSCP~FCC9wA^g+VW<@1v!9LKK zxF*319MNV}zo{y)hhu)!;AC7{f`2&}C@YtZ{q$6(7?ncDd{75qW)iUMjEER3)ODN!R5ZIkxs}0! zXw!6KaPUS38|5cE1dsYeYw8gLEDO`DVOYQ$15z5uw$$>Ogv@TFN{@hfz&ysJF3>~* zRRq%Ro?;!J{)h~tB|{KxjmbM+$0Go|1VT~_BW5D5fINwj^D<49ib9dI5qScip&nl4 z$pGs1Fu59=FKjCQv>gmnnuJ`a&q7712_7>>!DSujNs<&A{3VBBv*RuNHc14e9K{zt zrN%}H(t4z&%0-Bwih@EI5~KnSb8=9YPHU(8U^axD$q<)1xlB=GNpTOUUNFE*RxPH8 z5lBF!dHo7hl%OojC!r{1#N#l;gUGxss!g#erb3Z Date: Mon, 3 Mar 2014 12:43:22 +0100 Subject: [PATCH 051/333] make mail notification header color themable --- core/templates/mail.php | 4 ++-- lib/private/defaults.php | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/core/templates/mail.php b/core/templates/mail.php index c46fd6ab80..854240a976 100644 --- a/core/templates/mail.php +++ b/core/templates/mail.php @@ -2,8 +2,8 @@ - - + diff --git a/lib/private/defaults.php b/lib/private/defaults.php index 59630cda5c..79be211b82 100644 --- a/lib/private/defaults.php +++ b/lib/private/defaults.php @@ -21,6 +21,7 @@ class OC_Defaults { private $defaultDocBaseUrl; private $defaultSlogan; private $defaultLogoClaim; + private $defaultMailHeaderColor; function __construct() { $this->l = OC_L10N::get('core'); @@ -33,6 +34,7 @@ class OC_Defaults { $this->defaultDocBaseUrl = "http://doc.owncloud.org"; $this->defaultSlogan = $this->l->t("web services under your control"); $this->defaultLogoClaim = ""; + $this->defaultMailHeaderColor = "#1d2d44"; /* header color of mail notifications */ if (class_exists("OC_Theme")) { $this->theme = new OC_Theme(); @@ -181,4 +183,16 @@ class OC_Defaults { return $this->getDocBaseUrl() . '/server/6.0/go.php?to=' . $key; } + /** + * Returns mail header color + * @return mail header color + */ + public function getMailHeaderColor() { + if ($this->themeExist('getMailHeaderColor')) { + return $this->theme->getMailHeaderColor(); + } else { + return $this->defaultMailHeaderColor; + } + } + } From c87658fedab5073642848b2db0e8707dc2b5cff4 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 3 Mar 2014 12:56:08 +0100 Subject: [PATCH 052/333] Fix updater when getFileInfo fails --- lib/private/files/cache/updater.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/private/files/cache/updater.php b/lib/private/files/cache/updater.php index 7a45b9e9e9..f6ea914bf6 100644 --- a/lib/private/files/cache/updater.php +++ b/lib/private/files/cache/updater.php @@ -119,6 +119,9 @@ class Updater { if ($uid != \OCP\User::getUser()) { $info = \OC\Files\Filesystem::getFileInfo($filename); + if (!$info) { + return array($uid, '/files/' . $filename); + } $ownerView = new \OC\Files\View('/' . $uid . '/files'); $filename = $ownerView->getPath($info['fileid']); } @@ -150,7 +153,7 @@ class Updater { $cache->update($id, array('mtime' => $time, 'etag' => $storage->getETag($internalPath))); if ($realPath !== '') { $realPath = dirname($realPath); - if($realPath === DIRECTORY_SEPARATOR ) { + if ($realPath === DIRECTORY_SEPARATOR) { $realPath = ""; } // check storage for parent in case we change the storage in this step From e603164517bfa5d778e4c0c45c15e8ed6450ac2d Mon Sep 17 00:00:00 2001 From: jbtbnl Date: Mon, 3 Mar 2014 14:07:44 +0100 Subject: [PATCH 053/333] Do not override button background image --- core/css/styles.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 082d2c714c..bf9ca835dc 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -204,18 +204,18 @@ textarea:disabled { /* Primary action button, use sparingly */ .primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary { border: 1px solid #1d2d44; - background: #35537a; + background-color: #35537a; color: #ddd; } .primary:hover, input[type="submit"].primary:hover, input[type="button"].primary:hover, button.primary:hover, .button.primary:hover, .primary:focus, input[type="submit"].primary:focus, input[type="button"].primary:focus, button.primary:focus, .button.primary:focus { border: 1px solid #1d2d44; - background: #304d76; + background-color: #304d76; color: #fff; } .primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active { border: 1px solid #1d2d44; - background: #1d2d44; + background-color: #1d2d44; color: #bbb; } @@ -233,7 +233,7 @@ textarea:disabled { } input[type="submit"].enabled { - background: #66f866; + background-color: #66f866; border: 1px solid #5e5; } From 79ae3c4527b492bee76b2951ca14e8259147b181 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 3 Mar 2014 11:31:46 +0100 Subject: [PATCH 054/333] Allow XML entity loader for MDB2 schema loader Forward port of 762b0d9 from stable6 to master --- lib/private/db/mdb2schemareader.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/private/db/mdb2schemareader.php b/lib/private/db/mdb2schemareader.php index f9a76786c3..1c16d03eab 100644 --- a/lib/private/db/mdb2schemareader.php +++ b/lib/private/db/mdb2schemareader.php @@ -41,7 +41,9 @@ class MDB2SchemaReader { */ public function loadSchemaFromFile($file) { $schema = new \Doctrine\DBAL\Schema\Schema(); + $loadEntities = libxml_disable_entity_loader(false); $xml = simplexml_load_file($file); + libxml_disable_entity_loader($loadEntities); foreach ($xml->children() as $child) { /** * @var \SimpleXMLElement $child From 9c688454dfecc6349beb67c593a2e872b78f7347 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 3 Mar 2014 15:41:25 +0100 Subject: [PATCH 055/333] Update 3rdparty submodule pointer to include libxml fixes --- 3rdparty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty b/3rdparty index ddb0931c6c..184f0a59f8 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit ddb0931c6c54f927ba450cb0f65e87004c38bfd4 +Subproject commit 184f0a59f87c590ee7e89ced401205a87f213954 From fd5dec029894a5266f41dbaa6632b618bbf92c40 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 3 Mar 2014 16:15:23 +0100 Subject: [PATCH 056/333] Fixed configkey casing for PostgreSQL --- apps/user_ldap/lib/helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/helper.php b/apps/user_ldap/lib/helper.php index 7de7fe8667..b5955cb2ab 100644 --- a/apps/user_ldap/lib/helper.php +++ b/apps/user_ldap/lib/helper.php @@ -120,7 +120,7 @@ class Helper { $saveOtherConfigurations = ''; if(empty($prefix)) { - $saveOtherConfigurations = 'AND `Configkey` NOT LIKE \'s%\''; + $saveOtherConfigurations = 'AND `configkey` NOT LIKE \'s%\''; } $query = \OCP\DB::prepare(' From bb8a7a2230ce1b13ab97e1558a56f54009064066 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 3 Mar 2014 16:48:06 +0100 Subject: [PATCH 057/333] Remove assert since the root size of the home storage is no longer calculated --- tests/lib/files/cache/homecache.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/lib/files/cache/homecache.php b/tests/lib/files/cache/homecache.php index dbcf6e9caa..80dc54c9d1 100644 --- a/tests/lib/files/cache/homecache.php +++ b/tests/lib/files/cache/homecache.php @@ -90,7 +90,6 @@ class HomeCache extends \PHPUnit_Framework_TestCase { // check that files and root size ignored the unknown sizes $this->assertEquals(1000, $this->cache->calculateFolderSize('files')); - $this->assertEquals(1000, $this->cache->calculateFolderSize('')); // clean up $this->cache->remove(''); From 06c6163265bf10e7aa84c2621d58323b3ad94963 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 3 Mar 2014 16:48:28 +0100 Subject: [PATCH 058/333] Check if fields we need are actually set to prevent errors --- lib/private/files/cache/cache.php | 4 ++-- lib/private/files/cache/scanner.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index d886fd0fe7..abc11e7647 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -520,7 +520,7 @@ class Cache { */ public function calculateFolderSize($path, $entry = null) { $totalSize = 0; - if (is_null($entry)) { + if (is_null($entry) or !isset($entry['fileid'])) { $entry = $this->get($path); } if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { @@ -544,7 +544,7 @@ class Cache { if ($entry['size'] !== $totalSize) { $update['size'] = $totalSize; } - if ($entry['unencrypted_size'] !== $unencryptedSum) { + if (!isset($entry['unencrypted_size']) or $entry['unencrypted_size'] !== $unencryptedSum) { $update['unencrypted_size'] = $unencryptedSum; } if (count($update) > 0) { diff --git a/lib/private/files/cache/scanner.php b/lib/private/files/cache/scanner.php index ee6a828f7c..79159724d1 100644 --- a/lib/private/files/cache/scanner.php +++ b/lib/private/files/cache/scanner.php @@ -155,7 +155,7 @@ class Scanner extends BasicEmitter { } } if (!empty($newData)) { - $this->cache->put($file, $newData); + $data['fileid'] = $this->cache->put($file, $newData); $this->emit('\OC\Files\Cache\Scanner', 'postScanFile', array($file, $this->storageId)); \OC_Hook::emit('\OC\Files\Cache\Scanner', 'post_scan_file', array('path' => $file, 'storage' => $this->storageId)); } From 5e3b6f1fd9f3ba07031cb1cc1757d9ae94bebba6 Mon Sep 17 00:00:00 2001 From: kondou Date: Mon, 3 Mar 2014 17:32:29 +0100 Subject: [PATCH 059/333] Fix some more docstrings --- lib/private/config.php | 2 +- lib/private/template/base.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/config.php b/lib/private/config.php index 3649da8497..56f4725613 100644 --- a/lib/private/config.php +++ b/lib/private/config.php @@ -77,7 +77,7 @@ class Config { /** * @brief Gets a value from config.php * @param string $key key - * @param string|null $default = null default value + * @param array|bool|string|null $default = null default value * @return string the value or $default * * This function gets the value from config.php. If it does not exist, diff --git a/lib/private/template/base.php b/lib/private/template/base.php index 232a29939c..7aa0cb4a95 100644 --- a/lib/private/template/base.php +++ b/lib/private/template/base.php @@ -61,7 +61,7 @@ class Base { /** * @brief Assign variables * @param string $key key - * @param string $value value + * @param array|bool|integer|string $value value * @return bool * * This function assigns a variable. It can be accessed via $_[$key] in From 25251d4bf7591662df2825c13411f9051eab1a48 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 3 Mar 2014 17:36:12 +0100 Subject: [PATCH 060/333] Fix mail template to use p() for colors Now using p() instead of print_unescaped() for colors. --- core/templates/mail.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/templates/mail.php b/core/templates/mail.php index 854240a976..ae46eaca78 100644 --- a/core/templates/mail.php +++ b/core/templates/mail.php @@ -2,9 +2,9 @@
  +  <?php p($theme->getName()); ?>
- - + @@ -27,7 +27,7 @@ p($l->t('Cheers!')); From a86e2298488f93f8a9cf70a36f27551b94f58941 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 3 Mar 2014 20:05:14 +0100 Subject: [PATCH 061/333] Remove duplicate row --- .scrutinizer.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 9cff2b48db..4473cf9056 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -8,7 +8,6 @@ filter: - 'lib/l10n/*' - 'core/js/tests/lib/*.js' - 'core/js/jquery-1.10.0.min.js' - - 'core/js/jquery-1.10.0.min.js' - 'core/js/jquery-migrate-1.2.1.min.js' - 'core/js/jquery-showpassword.js' - 'core/js/jquery-tipsy.js' From af2c2b3a16d02a36e7770fc2f9233ab9724cdcb5 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 4 Mar 2014 10:22:54 +0100 Subject: [PATCH 062/333] update wording of email field --- settings/templates/personal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 470b8180bc..9024f43565 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -83,7 +83,7 @@ if($_['passwordChangeSupported']) { placeholder="t('Your email address'));?>" autocomplete="on" autocapitalize="off" autocorrect="off" />
- t('Fill in an email address to enable password recovery'));?> + t('Fill in an email address to enable password recovery and receive notifications'));?> Date: Tue, 4 Mar 2014 12:38:56 +0100 Subject: [PATCH 063/333] fix https://github.com/owncloud/core/issues/6825 --- apps/files_external/lib/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 9a8b95c14c..5e7704d674 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -45,7 +45,7 @@ class OC_Mount_Config { 'datadir' => 'Location')); $backends['\OC\Files\Storage\AmazonS3']=array( - 'backend' => 'Amazon S3', + 'backend' => 'Amazon S3 and compliant', 'configuration' => array( 'key' => 'Access Key', 'secret' => '*Secret Key', From a8c67dc675d21c6c8167c6477157a07d372bc410 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 4 Mar 2014 15:44:58 +0100 Subject: [PATCH 064/333] Add caching for getLocalFile on remote storages --- apps/files_external/lib/webdav.php | 193 +++++++++++++-------------- lib/private/files/storage/common.php | 24 +++- 2 files changed, 116 insertions(+), 101 deletions(-) diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 9afe73aebd..279ae71693 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -8,7 +8,7 @@ namespace OC\Files\Storage; -class DAV extends \OC\Files\Storage\Common{ +class DAV extends \OC\Files\Storage\Common { private $password; private $user; private $host; @@ -21,7 +21,7 @@ class DAV extends \OC\Files\Storage\Common{ */ private $client; - private static $tempFiles=array(); + private static $tempFiles = array(); public function __construct($params) { if (isset($params['host']) && isset($params['user']) && isset($params['password'])) { @@ -29,9 +29,9 @@ class DAV extends \OC\Files\Storage\Common{ //remove leading http[s], will be generated in createBaseUri() if (substr($host, 0, 8) == "https://") $host = substr($host, 8); else if (substr($host, 0, 7) == "http://") $host = substr($host, 7); - $this->host=$host; - $this->user=$params['user']; - $this->password=$params['password']; + $this->host = $host; + $this->user = $params['user']; + $this->password = $params['password']; if (isset($params['secure'])) { if (is_string($params['secure'])) { $this->secure = ($params['secure'] === 'true'); @@ -42,25 +42,25 @@ class DAV extends \OC\Files\Storage\Common{ $this->secure = false; } if ($this->secure === true) { - $certPath=\OC_User::getHome(\OC_User::getUser()) . '/files_external/rootcerts.crt'; + $certPath = \OC_User::getHome(\OC_User::getUser()) . '/files_external/rootcerts.crt'; if (file_exists($certPath)) { - $this->certPath=$certPath; + $this->certPath = $certPath; } } - $this->root=isset($params['root'])?$params['root']:'/'; - if ( ! $this->root || $this->root[0]!='/') { - $this->root='/'.$this->root; + $this->root = isset($params['root']) ? $params['root'] : '/'; + if (!$this->root || $this->root[0] != '/') { + $this->root = '/' . $this->root; } - if (substr($this->root, -1, 1)!='/') { - $this->root.='/'; + if (substr($this->root, -1, 1) != '/') { + $this->root .= '/'; } } else { throw new \Exception(); } } - private function init(){ - if($this->ready) { + private function init() { + if ($this->ready) { return; } $this->ready = true; @@ -78,28 +78,28 @@ class DAV extends \OC\Files\Storage\Common{ } } - public function getId(){ + public function getId() { return 'webdav::' . $this->user . '@' . $this->host . '/' . $this->root; } protected function createBaseUri() { - $baseUri='http'; + $baseUri = 'http'; if ($this->secure) { - $baseUri.='s'; + $baseUri .= 's'; } - $baseUri.='://'.$this->host.$this->root; + $baseUri .= '://' . $this->host . $this->root; return $baseUri; } public function mkdir($path) { $this->init(); - $path=$this->cleanPath($path); + $path = $this->cleanPath($path); return $this->simpleResponse('MKCOL', $path, null, 201); } public function rmdir($path) { $this->init(); - $path=$this->cleanPath($path) . '/'; + $path = $this->cleanPath($path) . '/'; // FIXME: some WebDAV impl return 403 when trying to DELETE // a non-empty folder return $this->simpleResponse('DELETE', $path, null, 204); @@ -107,35 +107,35 @@ class DAV extends \OC\Files\Storage\Common{ public function opendir($path) { $this->init(); - $path=$this->cleanPath($path); + $path = $this->cleanPath($path); try { - $response=$this->client->propfind($this->encodePath($path), array(), 1); - $id=md5('webdav'.$this->root.$path); + $response = $this->client->propfind($this->encodePath($path), array(), 1); + $id = md5('webdav' . $this->root . $path); $content = array(); - $files=array_keys($response); - array_shift($files);//the first entry is the current directory + $files = array_keys($response); + array_shift($files); //the first entry is the current directory foreach ($files as $file) { $file = urldecode(basename($file)); - $content[]=$file; + $content[] = $file; } \OC\Files\Stream\Dir::register($id, $content); - return opendir('fakedir://'.$id); - } catch(\Exception $e) { + return opendir('fakedir://' . $id); + } catch (\Exception $e) { return false; } } public function filetype($path) { $this->init(); - $path=$this->cleanPath($path); + $path = $this->cleanPath($path); try { - $response=$this->client->propfind($this->encodePath($path), array('{DAV:}resourcetype')); + $response = $this->client->propfind($this->encodePath($path), array('{DAV:}resourcetype')); $responseType = array(); if (isset($response["{DAV:}resourcetype"])) { - $responseType=$response["{DAV:}resourcetype"]->resourceType; + $responseType = $response["{DAV:}resourcetype"]->resourceType; } - return (count($responseType)>0 and $responseType[0]=="{DAV:}collection")?'dir':'file'; - } catch(\Exception $e) { + return (count($responseType) > 0 and $responseType[0] == "{DAV:}collection") ? 'dir' : 'file'; + } catch (\Exception $e) { error_log($e->getMessage()); \OCP\Util::writeLog("webdav client", \OCP\Util::sanitizeHTML($e->getMessage()), \OCP\Util::ERROR); return false; @@ -144,11 +144,11 @@ class DAV extends \OC\Files\Storage\Common{ public function file_exists($path) { $this->init(); - $path=$this->cleanPath($path); + $path = $this->cleanPath($path); try { $this->client->propfind($this->encodePath($path), array('{DAV:}resourcetype')); - return true;//no 404 exception - } catch(\Exception $e) { + return true; //no 404 exception + } catch (\Exception $e) { return false; } } @@ -160,34 +160,34 @@ class DAV extends \OC\Files\Storage\Common{ public function fopen($path, $mode) { $this->init(); - $path=$this->cleanPath($path); - switch($mode) { + $path = $this->cleanPath($path); + switch ($mode) { case 'r': case 'rb': - if ( ! $this->file_exists($path)) { + if (!$this->file_exists($path)) { return false; } //straight up curl instead of sabredav here, sabredav put's the entire get result in memory $curl = curl_init(); $fp = fopen('php://temp', 'r+'); - curl_setopt($curl, CURLOPT_USERPWD, $this->user.':'.$this->password); - curl_setopt($curl, CURLOPT_URL, $this->createBaseUri().$this->encodePath($path)); + curl_setopt($curl, CURLOPT_USERPWD, $this->user . ':' . $this->password); + curl_setopt($curl, CURLOPT_URL, $this->createBaseUri() . $this->encodePath($path)); curl_setopt($curl, CURLOPT_FILE, $fp); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); if ($this->secure === true) { curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2); - if($this->certPath){ + if ($this->certPath) { curl_setopt($curl, CURLOPT_CAINFO, $this->certPath); } } - - curl_exec ($curl); + + curl_exec($curl); $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); if ($statusCode !== 200) { \OCP\Util::writeLog("webdav client", 'curl GET ' . curl_getinfo($curl, CURLINFO_EFFECTIVE_URL) . ' returned status code ' . $statusCode, \OCP\Util::ERROR); } - curl_close ($curl); + curl_close($curl); rewind($fp); return $fp; case 'w': @@ -203,18 +203,19 @@ class DAV extends \OC\Files\Storage\Common{ case 'c': case 'c+': //emulate these - if (strrpos($path, '.')!==false) { - $ext=substr($path, strrpos($path, '.')); + if (strrpos($path, '.') !== false) { + $ext = substr($path, strrpos($path, '.')); } else { - $ext=''; + $ext = ''; + } + if ($this->file_exists($path)) { + $tmpFile = $this->getCachedFile($path); + } else { + $tmpFile = \OCP\Files::tmpFile($ext); } - $tmpFile = \OCP\Files::tmpFile($ext); \OC\Files\Stream\Close::registerCallback($tmpFile, array($this, 'writeBack')); - if($this->file_exists($path)) { - $this->getFile($path, $tmpFile); - } - self::$tempFiles[$tmpFile]=$path; - return fopen('close://'.$tmpFile, $mode); + self::$tempFiles[$tmpFile] = $path; + return fopen('close://' . $tmpFile, $mode); } } @@ -227,32 +228,31 @@ class DAV extends \OC\Files\Storage\Common{ public function free_space($path) { $this->init(); - $path=$this->cleanPath($path); + $path = $this->cleanPath($path); try { - $response=$this->client->propfind($this->encodePath($path), array('{DAV:}quota-available-bytes')); + $response = $this->client->propfind($this->encodePath($path), array('{DAV:}quota-available-bytes')); if (isset($response['{DAV:}quota-available-bytes'])) { return (int)$response['{DAV:}quota-available-bytes']; } else { return \OC\Files\SPACE_UNKNOWN; } - } catch(\Exception $e) { + } catch (\Exception $e) { return \OC\Files\SPACE_UNKNOWN; } } - public function touch($path, $mtime=null) { + public function touch($path, $mtime = null) { $this->init(); if (is_null($mtime)) { - $mtime=time(); + $mtime = time(); } - $path=$this->cleanPath($path); + $path = $this->cleanPath($path); // if file exists, update the mtime, else create a new empty file if ($this->file_exists($path)) { try { $this->client->proppatch($this->encodePath($path), array('{DAV:}lastmodified' => $mtime)); - } - catch (\Sabre_DAV_Exception_NotImplemented $e) { + } catch (\Sabre_DAV_Exception_NotImplemented $e) { return false; } } else { @@ -261,23 +261,13 @@ class DAV extends \OC\Files\Storage\Common{ return true; } - /** - * @param string $path - * @param string $target - */ - public function getFile($path, $target) { + protected function uploadFile($path, $target) { $this->init(); - $source=$this->fopen($path, 'r'); - file_put_contents($target, $source); - } - - public function uploadFile($path, $target) { - $this->init(); - $source=fopen($path, 'r'); + $source = fopen($path, 'r'); $curl = curl_init(); - curl_setopt($curl, CURLOPT_USERPWD, $this->user.':'.$this->password); - curl_setopt($curl, CURLOPT_URL, $this->createBaseUri().str_replace(' ', '%20', $target)); + curl_setopt($curl, CURLOPT_USERPWD, $this->user . ':' . $this->password); + curl_setopt($curl, CURLOPT_URL, $this->createBaseUri() . str_replace(' ', '%20', $target)); curl_setopt($curl, CURLOPT_BINARYTRANSFER, true); curl_setopt($curl, CURLOPT_INFILE, $source); // file pointer curl_setopt($curl, CURLOPT_INFILESIZE, filesize($path)); @@ -285,26 +275,29 @@ class DAV extends \OC\Files\Storage\Common{ if ($this->secure === true) { curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2); - if($this->certPath){ + if ($this->certPath) { curl_setopt($curl, CURLOPT_CAINFO, $this->certPath); } } - curl_exec ($curl); + curl_exec($curl); $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); if ($statusCode !== 200) { \OCP\Util::writeLog("webdav client", 'curl GET ' . curl_getinfo($curl, CURLINFO_EFFECTIVE_URL) . ' returned status code ' . $statusCode, \OCP\Util::ERROR); } - curl_close ($curl); + curl_close($curl); + $this->removeCachedFile($target); } public function rename($path1, $path2) { $this->init(); $path1 = $this->encodePath($this->cleanPath($path1)); - $path2 = $this->createBaseUri().$this->encodePath($this->cleanPath($path2)); + $path2 = $this->createBaseUri() . $this->encodePath($this->cleanPath($path2)); try { - $this->client->request('MOVE', $path1, null, array('Destination'=>$path2)); + $this->client->request('MOVE', $path1, null, array('Destination' => $path2)); + $this->removeCachedFile($path1); + $this->removeCachedFile($path2); return true; - } catch(\Exception $e) { + } catch (\Exception $e) { return false; } } @@ -312,47 +305,48 @@ class DAV extends \OC\Files\Storage\Common{ public function copy($path1, $path2) { $this->init(); $path1 = $this->encodePath($this->cleanPath($path1)); - $path2 = $this->createBaseUri().$this->encodePath($this->cleanPath($path2)); + $path2 = $this->createBaseUri() . $this->encodePath($this->cleanPath($path2)); try { - $this->client->request('COPY', $path1, null, array('Destination'=>$path2)); + $this->client->request('COPY', $path1, null, array('Destination' => $path2)); + $this->removeCachedFile($path2); return true; - } catch(\Exception $e) { + } catch (\Exception $e) { return false; } } public function stat($path) { $this->init(); - $path=$this->cleanPath($path); + $path = $this->cleanPath($path); try { $response = $this->client->propfind($this->encodePath($path), array('{DAV:}getlastmodified', '{DAV:}getcontentlength')); return array( - 'mtime'=>strtotime($response['{DAV:}getlastmodified']), - 'size'=>(int)isset($response['{DAV:}getcontentlength']) ? $response['{DAV:}getcontentlength'] : 0, + 'mtime' => strtotime($response['{DAV:}getlastmodified']), + 'size' => (int)isset($response['{DAV:}getcontentlength']) ? $response['{DAV:}getcontentlength'] : 0, ); - } catch(\Exception $e) { + } catch (\Exception $e) { return array(); } } public function getMimeType($path) { $this->init(); - $path=$this->cleanPath($path); + $path = $this->cleanPath($path); try { - $response=$this->client->propfind($this->encodePath($path), array('{DAV:}getcontenttype', '{DAV:}resourcetype')); + $response = $this->client->propfind($this->encodePath($path), array('{DAV:}getcontenttype', '{DAV:}resourcetype')); $responseType = array(); if (isset($response["{DAV:}resourcetype"])) { - $responseType=$response["{DAV:}resourcetype"]->resourceType; + $responseType = $response["{DAV:}resourcetype"]->resourceType; } - $type=(count($responseType)>0 and $responseType[0]=="{DAV:}collection")?'dir':'file'; - if ($type=='dir') { + $type = (count($responseType) > 0 and $responseType[0] == "{DAV:}collection") ? 'dir' : 'file'; + if ($type == 'dir') { return 'httpd/unix-directory'; } elseif (isset($response['{DAV:}getcontenttype'])) { return $response['{DAV:}getcontenttype']; } else { return false; } - } catch(\Exception $e) { + } catch (\Exception $e) { return false; } } @@ -368,6 +362,7 @@ class DAV extends \OC\Files\Storage\Common{ /** * URL encodes the given path but keeps the slashes + * * @param string $path to encode * @return string encoded path */ @@ -382,11 +377,11 @@ class DAV extends \OC\Files\Storage\Common{ * @param integer $expected */ private function simpleResponse($method, $path, $body, $expected) { - $path=$this->cleanPath($path); + $path = $this->cleanPath($path); try { - $response=$this->client->request($method, $this->encodePath($path), $body); - return $response['statusCode']==$expected; - } catch(\Exception $e) { + $response = $this->client->request($method, $this->encodePath($path), $body); + return $response['statusCode'] == $expected; + } catch (\Exception $e) { return false; } } diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index 9e826dd619..3c078d7b1b 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -27,6 +27,11 @@ abstract class Common implements \OC\Files\Storage\Storage { protected $watcher; protected $storageCache; + /** + * @var string[] + */ + protected $cachedFiles = array(); + public function __construct($parameters) { } @@ -122,11 +127,13 @@ abstract class Common implements \OC\Files\Storage\Storage { public function file_put_contents($path, $data) { $handle = $this->fopen($path, "w"); + $this->removeCachedFile($path); return fwrite($handle, $data); } public function rename($path1, $path2) { if ($this->copy($path1, $path2)) { + $this->removeCachedFile($path1); return $this->unlink($path1); } else { return false; @@ -137,6 +144,7 @@ abstract class Common implements \OC\Files\Storage\Storage { $source = $this->fopen($path1, 'r'); $target = $this->fopen($path2, 'w'); list($count, $result) = \OC_Helper::streamCopy($source, $target); + $this->removeCachedFile($path2); return $result; } @@ -162,13 +170,14 @@ abstract class Common implements \OC\Files\Storage\Storage { } public function getLocalFile($path) { - return $this->toTmpFile($path); + return $this->getCachedFile($path); } /** * @param string $path + * @return string */ - private function toTmpFile($path) { //no longer in the storage api, still useful here + protected function toTmpFile($path) { //no longer in the storage api, still useful here $source = $this->fopen($path, 'r'); if (!$source) { return false; @@ -352,4 +361,15 @@ abstract class Common implements \OC\Files\Storage\Storage { // default, which is not local return false; } + + protected function getCachedFile($path) { + if (!isset($this->cachedFiles[$path])) { + $this->cachedFiles[$path] = $this->toTmpFile($path); + } + return $this->cachedFiles[$path]; + } + + protected function removeCachedFile($path) { + unset($this->cachedFiles[$path]); + } } From 33b798c3d6e28370270925cce873883a333cdbc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 5 Mar 2014 01:10:39 +0100 Subject: [PATCH 065/333] fixing js unit tests --- core/js/core.json | 1 - core/js/tests/specHelper.js | 1 + core/js/tests/specs/coreSpec.js | 14 ++++---------- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/core/js/core.json b/core/js/core.json index 4beab7cf79..665e2485a9 100644 --- a/core/js/core.json +++ b/core/js/core.json @@ -17,7 +17,6 @@ "eventsource.js", "config.js", "multiselect.js", - "router.js", "oc-requesttoken.js" ] } diff --git a/core/js/tests/specHelper.js b/core/js/tests/specHelper.js index b119324058..84c5e8f75b 100644 --- a/core/js/tests/specHelper.js +++ b/core/js/tests/specHelper.js @@ -87,6 +87,7 @@ window.oc_defaults = {}; // custom responses window.fakeServer = fakeServer; + OC.Router = {}; OC.Router.routes = []; OC.Router.routes_request = { state: sinon.stub().returns('resolved'), diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 478505e928..bb43810ef1 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -179,7 +179,7 @@ describe('Core base tests', function() { }); it('Encodes special characters', function() { expect(OC.buildQueryString({ - unicode: '汉字', + unicode: '汉字' })).toEqual('unicode=%E6%B1%89%E5%AD%97'); expect(OC.buildQueryString({ b: 'spaace value', @@ -199,22 +199,20 @@ describe('Core base tests', function() { 'booleantrue': true })).toEqual('booleanfalse=false&booleantrue=true'); expect(OC.buildQueryString({ - 'number': 123, + 'number': 123 })).toEqual('number=123'); }); }); describe('Session heartbeat', function() { var clock, oldConfig, - loadedStub, routeStub, counter; beforeEach(function() { clock = sinon.useFakeTimers(); oldConfig = window.oc_config; - loadedStub = sinon.stub(OC.Router, 'registerLoadedCallback'); - routeStub = sinon.stub(OC.Router, 'generate').returns('/heartbeat'); + routeStub = sinon.stub(OC, 'generateUrl').returns('/heartbeat'); counter = 0; fakeServer.autoRespond = true; @@ -227,7 +225,6 @@ describe('Core base tests', function() { afterEach(function() { clock.restore(); window.oc_config = oldConfig; - loadedStub.restore(); routeStub.restore(); }); it('sends heartbeat half the session lifetime when heartbeat enabled', function() { @@ -236,9 +233,7 @@ describe('Core base tests', function() { session_lifetime: 300 }; window.initCore(); - expect(loadedStub.calledOnce).toEqual(true); - loadedStub.yield(); - expect(routeStub.calledWith('heartbeat')).toEqual(true); + expect(routeStub.calledWith('/heartbeat')).toEqual(true); expect(counter).toEqual(0); @@ -264,7 +259,6 @@ describe('Core base tests', function() { session_lifetime: 300 }; window.initCore(); - expect(loadedStub.notCalled).toEqual(true); expect(routeStub.notCalled).toEqual(true); expect(counter).toEqual(0); From 5b8cde48dc6d68a3921195b5367024b94abe14af Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 26 Feb 2014 12:13:20 +0100 Subject: [PATCH 066/333] Add button to send a test mail after changing the email settings Fix #7175 --- settings/admin/controller.php | 30 ++++++++++++++++++++++++++++++ settings/js/admin.js | 12 ++++++++++-- settings/routes.php | 3 +++ settings/templates/admin.php | 6 +++++- 4 files changed, 48 insertions(+), 3 deletions(-) diff --git a/settings/admin/controller.php b/settings/admin/controller.php index a075d77436..7019f9a4d2 100644 --- a/settings/admin/controller.php +++ b/settings/admin/controller.php @@ -73,6 +73,36 @@ class Controller { \OC_JSON::success(array("data" => array( "message" => $l->t("Saved") ))); } + /** + * Send a mail to test the settings + */ + public static function sendTestMail() { + \OC_Util::checkAdminUser(); + \OCP\JSON::callCheck(); + + $l = \OC_L10N::get('settings'); + $email = \OC_Preferences::getValue(\OC_User::getUser(), 'settings', 'email', ''); + if (!empty($email)) { + $defaults = new \OC_Defaults(); + + try { + \OC_Mail::send($email, $_POST['user'], + $l->t('test email settings'), + $l->t('If you received this email, the settings seem to be correct.'), + \OCP\Util::getDefaultEmailAddress('no-reply'), $defaults->getName()); + } catch (\Exception $e) { + $message = $l->t('A problem occurred while sending the e-mail. Please revisit your settings.'); + \OC_JSON::error( array( "data" => array( "message" => $message)) ); + exit; + } + + \OC_JSON::success(array("data" => array( "message" => $l->t("Email sent") ))); + } else { + $message = $l->t('You need to set your user email before being able to send test emails.'); + \OC_JSON::error( array( "data" => array( "message" => $message)) ); + } + } + /** * Get the field name to use it in error messages * diff --git a/settings/js/admin.js b/settings/js/admin.js index 5ea6a5af2d..684822f183 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -62,10 +62,18 @@ $(document).ready(function(){ }); $('#mail_settings').change(function(){ - OC.msg.startSaving('#mail_settings .msg'); + OC.msg.startSaving('#mail_settings_msg'); var post = $( "#mail_settings" ).serialize(); $.post(OC.Router.generate('settings_mail_settings'), post, function(data){ - OC.msg.finishedSaving('#mail_settings .msg', data); + OC.msg.finishedSaving('#mail_settings_msg', data); + }); + }); + + $('#sendtestemail').click(function(){ + OC.msg.startAction('#sendtestmail_msg', t('settings', 'Sending...')); + var post = $( "#sendtestemail" ).serialize(); + $.post(OC.Router.generate('settings_admin_mail_test'), post, function(data){ + OC.msg.finishedAction('#sendtestmail_msg', data); }); }); }); diff --git a/settings/routes.php b/settings/routes.php index 64f7122f0c..a0d54dea1e 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -73,5 +73,8 @@ $this->create('settings_ajax_setloglevel', '/settings/ajax/setloglevel.php') $this->create('settings_mail_settings', '/settings/admin/mailsettings') ->post() ->action('OC\Settings\Admin\Controller', 'setMailSettings'); +$this->create('settings_admin_mail_test', '/settings/admin/mailtest') + ->post() + ->action('OC\Settings\Admin\Controller', 'sendTestMail'); $this->create('settings_ajax_setsecurity', '/settings/ajax/setsecurity.php') ->actionInclude('settings/ajax/setsecurity.php'); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 139a9dd076..487da036e7 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -272,7 +272,7 @@ if (!$_['internetconnectionworking']) {
-

t('Email Server'));?>

+

t('Email Server'));?>

t('This is used for sending out notifications.')); ?>

@@ -347,6 +347,10 @@ if (!$_['internetconnectionworking']) { placeholder="t('SMTP Password'))?>" value='' />

+
+ t( 'Test email settings' )); ?> + +
From 4ee4f0c3656724788baff3ab9749d08cbf52dbb5 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 5 Mar 2014 10:22:35 +0100 Subject: [PATCH 067/333] Fix position of eye icon on database password field Fix #7304 --- core/js/setup.js | 2 ++ core/templates/installation.php | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/core/js/setup.js b/core/js/setup.js index 279b5fbebb..96719540f9 100644 --- a/core/js/setup.js +++ b/core/js/setup.js @@ -36,6 +36,7 @@ $(document).ready(function() { $('#showAdvanced').click(function() { $('#datadirContent').slideToggle(250); + $('#databaseBackend').slideToggle(250); $('#databaseField').slideToggle(250); }); $("form").submit(function(){ @@ -73,6 +74,7 @@ $(document).ready(function() { if (currentDbType === 'sqlite' || (dbtypes.sqlite && currentDbType === undefined)){ $('#datadirContent').hide(250); + $('#databaseBackend').hide(250); $('#databaseField').hide(250); } diff --git a/core/templates/installation.php b/core/templates/installation.php index d3adb34f41..a85b68f248 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -84,7 +84,7 @@ 0): ?> -
+
t( 'Configure the database' )); ?> @@ -100,8 +100,10 @@ +
+

@@ -141,8 +143,8 @@ autocomplete="off" autocapitalize="off" autocorrect="off" />

+
-
From 6de370b64cb8f7fcd9d3bd090b8d801d91d2fcca Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 5 Mar 2014 10:27:15 +0100 Subject: [PATCH 068/333] Removed obsolete OC.Router stubs in specHelper --- core/js/tests/specHelper.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/core/js/tests/specHelper.js b/core/js/tests/specHelper.js index 84c5e8f75b..3ed4cb6c3b 100644 --- a/core/js/tests/specHelper.js +++ b/core/js/tests/specHelper.js @@ -86,19 +86,9 @@ window.oc_defaults = {}; // make it globally available, so that other tests can define // custom responses window.fakeServer = fakeServer; - - OC.Router = {}; - OC.Router.routes = []; - OC.Router.routes_request = { - state: sinon.stub().returns('resolved'), - done: sinon.stub() - }; }); afterEach(function() { - OC.Router.routes_request.state.reset(); - OC.Router.routes_request.done.reset(); - // uncomment this to log requests // console.log(window.fakeServer.requests); fakeServer.restore(); From fbd8c00a896fdfd2b19710646d9f6662e2bcd682 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 5 Mar 2014 12:44:02 +0100 Subject: [PATCH 069/333] don't create files folder, let ownCloud core handle it --- apps/files_encryption/lib/util.php | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 6bf69cd8ee..3db5a42347 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -135,7 +135,6 @@ class Util { // Set directories to check / create $setUpDirs = array( $this->userDir, - $this->userFilesDir, $this->publicKeyDir, $this->encryptionDir, $this->keyfilesPath, From 80393d9c0ff44c0614960cc6b7b7d8cc5bd17743 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 5 Mar 2014 13:12:58 +0100 Subject: [PATCH 070/333] Do not allow setting an expiration date in the past Fix #7297 --- core/ajax/share.php | 8 ++++++++ core/js/share.js | 6 +++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 86ee018e38..abcb4b5c22 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -80,6 +80,14 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo break; case 'setExpirationDate': if (isset($_POST['date'])) { + $l = OC_L10N::get('core'); + $date = new \DateTime($_POST['date']); + $today = new \DateTime('now'); + + if ($date < $today) { + OC_JSON::error(array('data' => array('message' => $l->t('Expiration date is in the past.')))); + return; + } $return = OCP\Share::setExpirationDate($_POST['itemType'], $_POST['itemSource'], $_POST['date']); ($return) ? OC_JSON::success() : OC_JSON::error(); } diff --git a/core/js/share.js b/core/js/share.js index 0939259b7d..0b65e15309 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -720,7 +720,11 @@ $(document).ready(function() { var itemSource = $('#dropdown').data('item-source'); $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: $(this).val() }, function(result) { if (!result || result.status !== 'success') { - OC.dialogs.alert(t('core', 'Error setting expiration date'), t('core', 'Error')); + if (!result.data.message) { + OC.dialogs.alert(t('core', 'Error setting expiration date'), t('core', 'Error')); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } } }); }); From 2e73c957e5b3ae4030e41520088fb078354ae8b1 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 4 Mar 2014 16:42:40 +0100 Subject: [PATCH 071/333] don't allow to create a file or folder named 'Shared' in the root folder, also exclude all combinations of lower and upper case letters --- apps/files/ajax/move.php | 2 +- apps/files/js/file-upload.js | 34 ++++++++++----------- apps/files/js/filelist.js | 9 ++---- apps/files/js/files.js | 7 +++-- apps/files/tests/js/filesSpec.js | 35 ++++++++++++++++++++++ lib/private/connector/sabre/directory.php | 4 +-- lib/private/connector/sabre/objecttree.php | 3 ++ 7 files changed, 66 insertions(+), 28 deletions(-) diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 93063e52eb..04a260265c 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -18,7 +18,7 @@ if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) { exit; } -if ($dir != '' || $file != 'Shared') { +if ($target != '' || strtolower($file) != 'shared') { $targetFile = \OC\Files\Filesystem::normalizePath($target . '/' . $file); $sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file); if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) { diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index f962a7044a..aa85644cef 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -82,7 +82,7 @@ OC.Upload = { */ isProcessing:function() { var count = 0; - + jQuery.each(this._uploads,function(i, data) { if (data.state() === 'pending') { count++; @@ -208,13 +208,13 @@ $(document).ready(function() { add: function(e, data) { OC.Upload.log('add', e, data); var that = $(this); - + // we need to collect all data upload objects before starting the upload so we can check their existence // and set individual conflict actions. unfortunately there is only one variable that we can use to identify // the selection a data upload is part of, so we have to collect them in data.originalFiles // turning singleFileUploads off is not an option because we want to gracefully handle server errors like // already exists - + // create a container where we can store the data objects if ( ! data.originalFiles.selection ) { // initialize selection and remember number of files to upload @@ -225,34 +225,34 @@ $(document).ready(function() { }; } var selection = data.originalFiles.selection; - + // add uploads if ( selection.uploads.length < selection.filesToUpload ) { // remember upload selection.uploads.push(data); } - + //examine file var file = data.files[0]; try { // FIXME: not so elegant... need to refactor that method to return a value - Files.isFileNameValid(file.name); + Files.isFileNameValid(file.name, FileList.getCurrentDirectory()); } catch (errorMessage) { data.textStatus = 'invalidcharacters'; data.errorThrown = errorMessage; } - + if (file.type === '' && file.size === 4096) { data.textStatus = 'dirorzero'; data.errorThrown = t('files', 'Unable to upload {filename} as it is a directory or has 0 bytes', {filename: file.name} ); } - + // add size selection.totalBytes += file.size; - + // check PHP upload limit if (selection.totalBytes > $('#upload_limit').val()) { data.textStatus = 'sizeexceedlimit'; @@ -270,7 +270,7 @@ $(document).ready(function() { 'size2': humanFileSize($('#free_space').val()) }); } - + // end upload for whole selection on error if (data.errorThrown) { // trigger fileupload fail @@ -281,12 +281,12 @@ $(document).ready(function() { // check existing files when all is collected if ( selection.uploads.length >= selection.filesToUpload ) { - + //remove our selection hack: delete data.originalFiles.selection; var callbacks = { - + onNoConflicts: function (selection) { $.each(selection.uploads, function(i, upload) { upload.submit(); @@ -309,7 +309,7 @@ $(document).ready(function() { }; OC.Upload.checkExistingFiles(selection, callbacks); - + } return true; // continue adding files @@ -439,7 +439,7 @@ $(document).ready(function() { }); fileupload.on('fileuploadstop', function(e, data) { OC.Upload.log('progress handle fileuploadstop', e, data); - + $('#uploadprogresswrapper input.stop').fadeOut(); $('#uploadprogressbar').fadeOut(); Files.updateStorageStatistics(); @@ -531,7 +531,7 @@ $(document).ready(function() { if ($(this).children('p').length === 0) { return; } - + $('#new .error').tipsy('hide'); $('#new li').each(function(i,element) { @@ -545,7 +545,7 @@ $(document).ready(function() { var text=$(this).children('p').text(); $(this).data('text',text); $(this).children('p').remove(); - + // add input field var form = $('
'); var input = $(''); @@ -562,7 +562,7 @@ $(document).ready(function() { throw t('files', 'URL cannot be empty'); } else if (type !== 'web' && !Files.isFileNameValid(filename)) { // Files.isFileNameValid(filename) throws an exception itself - } else if ($('#dir').val() === '/' && filename === 'Shared') { + } else if (FileList.getCurrentDirectory() === '/' && filename.toLowerCase() === 'shared') { throw t('files', 'In the home folder \'Shared\' is a reserved filename'); } else if (FileList.inList(filename)) { throw t('files', '{new_name} already exists', {new_name: filename}); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 550c10dba3..020ee275b7 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -419,15 +419,12 @@ window.FileList={ len = input.val().length; } input.selectRange(0, len); - var checkInput = function () { var filename = input.val(); if (filename !== oldname) { - if (!Files.isFileNameValid(filename)) { - // Files.isFileNameValid(filename) throws an exception itself - } else if($('#dir').val() === '/' && filename === 'Shared') { - throw t('files','In the home folder \'Shared\' is a reserved filename'); - } else if (FileList.inList(filename)) { + // Files.isFileNameValid(filename) throws an exception itself + Files.isFileNameValid(filename, FileList.getCurrentDirectory()); + if (FileList.inList(filename)) { throw t('files', '{new_name} already exists', {new_name: filename}); } } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index f454612070..48e5771ae8 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -87,9 +87,12 @@ var Files = { * Throws a string exception with an error message if * the file name is not valid */ - isFileNameValid: function (name) { + isFileNameValid: function (name, root) { var trimmedName = name.trim(); - if (trimmedName === '.' || trimmedName === '..') { + if (trimmedName === '.' + || trimmedName === '..' + || (root === '/' && trimmedName.toLowerCase() === 'shared')) + { throw t('files', '"{name}" is an invalid file name.', {name: name}); } else if (trimmedName.length === 0) { throw t('files', 'File name cannot be empty.'); diff --git a/apps/files/tests/js/filesSpec.js b/apps/files/tests/js/filesSpec.js index 018c8ef0f3..95bf87e03e 100644 --- a/apps/files/tests/js/filesSpec.js +++ b/apps/files/tests/js/filesSpec.js @@ -48,6 +48,41 @@ describe('Files tests', function() { expect(error).toEqual(false); } }); + it('Validates correct file names do not create Shared folder in root', function() { + // create shared file in subfolder + var error = false; + try { + expect(Files.isFileNameValid('shared', '/foo')).toEqual(true); + expect(Files.isFileNameValid('Shared', '/foo')).toEqual(true); + } + catch (e) { + error = e; + } + expect(error).toEqual(false); + + // create shared file in root + var threwException = false; + try { + Files.isFileNameValid('Shared', '/'); + console.error('Invalid file name not detected'); + } + catch (e) { + threwException = true; + } + expect(threwException).toEqual(true); + + // create shared file in root + var threwException = false; + try { + Files.isFileNameValid('shared', '/'); + console.error('Invalid file name not detected'); + } + catch (e) { + threwException = true; + } + expect(threwException).toEqual(true); + + }); it('Detects invalid file names', function() { var fileNames = [ '', diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 02d1a9f4ba..3ed9e94d69 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -50,7 +50,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createFile($name, $data = null) { - if ($name === 'Shared' && empty($this->path)) { + if (strtolower($name) === 'shared' && empty($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } @@ -86,7 +86,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createDirectory($name) { - if ($name === 'Shared' && empty($this->path)) { + if (strtolower($name) === 'shared' && empty($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index d2fa425b22..accf020daa 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -94,6 +94,9 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { } if ($sourceDir !== $destinationDir) { // for a full move we need update privileges on sourcePath and sourceDir as well as destinationDir + if (ltrim($destinationDir, '/') === '' && strtolower($sourceNode->getName()) === 'shared') { + throw new \Sabre_DAV_Exception_Forbidden(); + } if (!$fs->isUpdatable($sourceDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } From bdb96b9af85256f9b3f8663ccf6d27b3d1330918 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 5 Mar 2014 13:20:50 +0100 Subject: [PATCH 072/333] fix issue with spamming logging files when loading cached thumbnail --- lib/private/preview.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 798a1322b0..b0d91fd568 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -403,7 +403,9 @@ class Preview { $cached = $this->isCached(); if ($cached) { - $image = new \OC_Image($this->userView->file_get_contents($cached, 'r')); + $stream = $this->userView->fopen($cached, 'r'); + $image = new \OC_Image(); + $image->loadFromFileHandle($stream); $this->preview = $image->valid() ? $image : null; $this->resizeAndCrop(); } From 4d679de30bc4911d833ac54ed3bfb5cfeeb763d6 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 5 Mar 2014 13:21:33 +0100 Subject: [PATCH 073/333] add hover/focus states for star icons to hint at action --- core/css/icons.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/core/css/icons.css b/core/css/icons.css index 027a3f8557..b41c733861 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -156,11 +156,15 @@ background-image: url('../img/actions/sound-off.svg'); } -.icon-star { +.icon-star, +.icon-starred:hover, +.icon-starred:focus { background-image: url('../img/actions/star.svg'); } -.icon-starred { +.icon-starred, +.icon-star:hover, +.icon-star:focus { background-image: url('../img/actions/starred.svg'); } From 0285d5b6e27302378fff18cfc2e4f3ef0c0ce5eb Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 5 Mar 2014 14:53:20 +0100 Subject: [PATCH 074/333] Hide QMail when not selected and hide sendmail when not available on the server Fix #7559 --- settings/admin.php | 5 +++++ settings/templates/admin.php | 10 +++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/settings/admin.php b/settings/admin.php index 42477bfc1c..47028a701d 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -20,6 +20,11 @@ $htaccessworking=OC_Util::isHtAccessWorking(); $entries=OC_Log_Owncloud::getEntries(3); $entriesremain = count(OC_Log_Owncloud::getEntries(4)) > 3; +// Should we display sendmail as an option? +if (ini_get('sendmail_path') || file_exists('/usr/sbin/sendmail') || file_exists('/var/qmail/bin/sendmail')) { + $tmpl->assign('sendmail_is_available', true); +} + $tmpl->assign('loglevel', OC_Config::getValue( "loglevel", 2 )); $tmpl->assign('mail_domain', OC_Config::getValue( "mail_domain", '' )); $tmpl->assign('mail_from_address', OC_Config::getValue( "mail_from_address", '' )); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 487da036e7..9f5f9f54ba 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -26,11 +26,15 @@ $mail_smtpsecure = array( ); $mail_smtpmode = array( - 'sendmail', - 'smtp', - 'qmail', 'php', + 'smtp', ); +if ($_['sendmail_is_available']) { + $mail_smtpmode[] = 'sendmail'; +} +if ($_['mail_smtpmode'] == 'qmail') { + $mail_smtpmode[] = 'qmail'; +} ?> From 5a9689eb5c97b3cf6c38f0289622955109e23b11 Mon Sep 17 00:00:00 2001 From: raghunayyar Date: Wed, 5 Mar 2014 19:36:36 +0530 Subject: [PATCH 075/333] Adds 0 Outlines to Buttons --- core/css/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/styles.css b/core/css/styles.css index bf9ca835dc..69cf6df07d 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -175,6 +175,7 @@ button, .button, border: 1px solid rgba(190,190,190,.9); cursor: pointer; border-radius: 3px; + outline: none; } input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus, From 4a4b32d3258eb446520c6218b35a53fd878a9223 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 5 Mar 2014 15:08:16 +0100 Subject: [PATCH 076/333] restrict height of settings and make scrollable --- core/css/apps.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/css/apps.css b/core/css/apps.css index f68f53d699..58f2759f69 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -187,6 +187,9 @@ } #app-settings.open #app-settings-content { display: block; + /* restrict height of settings and make scrollable */ + max-height: 300px; + overflow-y: scroll; } .settings-button { From 32a5d51fa6cdbf437342f028fce6e91b53ece16f Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 5 Mar 2014 15:37:26 +0100 Subject: [PATCH 077/333] add fclose, fixes issue from bdb96b9af85256f9b3f8663ccf6d27b3d1330918 --- lib/private/preview.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/preview.php b/lib/private/preview.php index b0d91fd568..74051fbc2a 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -408,6 +408,7 @@ class Preview { $image->loadFromFileHandle($stream); $this->preview = $image->valid() ? $image : null; $this->resizeAndCrop(); + fclose($stream); } if (is_null($this->preview)) { From 7ad7f9479735a3bd5c780af3c1e038399ea12944 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 5 Mar 2014 15:47:12 +0100 Subject: [PATCH 078/333] fix some spaces to tabs issues reported by Scrutinizer --- apps/files_external/js/settings.js | 2 +- core/js/router.js | 26 +++++++++++++------------- core/js/share.js | 4 ++-- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index dbc9f54829..cd2a3103eb 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -264,7 +264,7 @@ $(document).ready(function() { OC.MountConfig.saveStorage($(this).parent().parent()); }); - $('#sslCertificate').on('click', 'td.remove>img', function() { + $('#sslCertificate').on('click', 'td.remove>img', function() { var $tr = $(this).parent().parent(); var row = this.parentNode.parentNode; $.post(OC.filePath('files_external', 'ajax', 'removeRootCertificate.php'), {cert: row.id}); diff --git a/core/js/router.js b/core/js/router.js index e6ef54a186..e764783ca8 100644 --- a/core/js/router.js +++ b/core/js/router.js @@ -32,37 +32,37 @@ OC.Router = { var optional = true; $(route.tokens).each(function(i, token) { if ('text' === token[0]) { - url = token[1] + url; - optional = false; + url = token[1] + url; + optional = false; - return; + return; } if ('variable' === token[0]) { - if (false === optional || !(token[3] in route.defaults) - || ((token[3] in params) && params[token[3]] != route.defaults[token[3]])) { + if (false === optional || !(token[3] in route.defaults) + || ((token[3] in params) && params[token[3]] != route.defaults[token[3]])) { var value; if (token[3] in params) { - value = params[token[3]]; - delete unusedParams[token[3]]; + value = params[token[3]]; + delete unusedParams[token[3]]; } else if (token[3] in route.defaults) { - value = route.defaults[token[3]]; + value = route.defaults[token[3]]; } else if (optional) { - return; + return; } else { - throw new Error('The route "' + name + '" requires the parameter "' + token[3] + '".'); + throw new Error('The route "' + name + '" requires the parameter "' + token[3] + '".'); } var empty = true === value || false === value || '' === value; if (!empty || !optional) { - url = token[1] + encodeURIComponent(value).replace(/%2F/g, '/') + url; + url = token[1] + encodeURIComponent(value).replace(/%2F/g, '/') + url; } optional = false; - } + } - return; + return; } throw new Error('The token type "' + token[0] + '" is not supported.'); diff --git a/core/js/share.js b/core/js/share.js index 0939259b7d..129e50b22d 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -584,8 +584,8 @@ $(document).ready(function() { $(checkboxes).filter('input[name="edit"]').attr('checked', false); // Check Edit if Create, Update, or Delete is checked } else if (($(this).attr('name') == 'create' - || $(this).attr('name') == 'update' - || $(this).attr('name') == 'delete')) + || $(this).attr('name') == 'update' + || $(this).attr('name') == 'delete')) { $(checkboxes).filter('input[name="edit"]').attr('checked', true); } From dbf83aada2f8dae509d17b947ecce6a4d09f8174 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 5 Mar 2014 15:53:12 +0100 Subject: [PATCH 079/333] fix issue with Non-static method Imagick ../..; @ doesn't seem to work in this case --- lib/private/preview/office.php | 35 +++++++++++--------- lib/private/preview/pdf.php | 49 ++++++++++++++++------------ lib/private/preview/svg.php | 58 +++++++++++++++++++--------------- 3 files changed, 80 insertions(+), 62 deletions(-) diff --git a/lib/private/preview/office.php b/lib/private/preview/office.php index 02bb22e9b9..269e1dad74 100644 --- a/lib/private/preview/office.php +++ b/lib/private/preview/office.php @@ -6,24 +6,29 @@ * See the COPYING-README file. */ //both, libreoffice backend and php fallback, need imagick -if (extension_loaded('imagick') && count(@\Imagick::queryFormats("PDF")) === 1) { - $isShellExecEnabled = \OC_Helper::is_function_enabled('shell_exec'); +if (extension_loaded('imagick')) { - // LibreOffice preview is currently not supported on Windows - if (!\OC_Util::runningOnWindows()) { - $whichLibreOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); - $isLibreOfficeAvailable = !empty($whichLibreOffice); - $whichOpenOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); - $isOpenOfficeAvailable = !empty($whichOpenOffice); - //let's see if there is libreoffice or openoffice on this machine - if($isShellExecEnabled && ($isLibreOfficeAvailable || $isOpenOfficeAvailable || is_string(\OC_Config::getValue('preview_libreoffice_path', null)))) { - require_once('office-cl.php'); - }else{ + $checkImagick = new Imagick(); + + if(count($checkImagick->queryFormats('PDF')) === 1) { + $isShellExecEnabled = \OC_Helper::is_function_enabled('shell_exec'); + + // LibreOffice preview is currently not supported on Windows + if (!\OC_Util::runningOnWindows()) { + $whichLibreOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); + $isLibreOfficeAvailable = !empty($whichLibreOffice); + $whichOpenOffice = ($isShellExecEnabled ? shell_exec('which libreoffice') : ''); + $isOpenOfficeAvailable = !empty($whichOpenOffice); + //let's see if there is libreoffice or openoffice on this machine + if($isShellExecEnabled && ($isLibreOfficeAvailable || $isOpenOfficeAvailable || is_string(\OC_Config::getValue('preview_libreoffice_path', null)))) { + require_once('office-cl.php'); + }else{ + //in case there isn't, use our fallback + require_once('office-fallback.php'); + } + } else { //in case there isn't, use our fallback require_once('office-fallback.php'); } - } else { - //in case there isn't, use our fallback - require_once('office-fallback.php'); } } diff --git a/lib/private/preview/pdf.php b/lib/private/preview/pdf.php index d390b4fc67..064a5a3b3d 100644 --- a/lib/private/preview/pdf.php +++ b/lib/private/preview/pdf.php @@ -7,34 +7,41 @@ */ namespace OC\Preview; -if (extension_loaded('imagick') && count(@\Imagick::queryFormats("PDF")) === 1) { +use Imagick; - class PDF extends Provider { +if (extension_loaded('imagick')) { - public function getMimeType() { - return '/application\/pdf/'; - } + $checkImagick = new Imagick(); - public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { - $tmpPath = $fileview->toTmpFile($path); + if(count($checkImagick->queryFormats('PDF')) === 1) { - //create imagick object from pdf - try{ - $pdf = new \imagick($tmpPath . '[0]'); - $pdf->setImageFormat('jpg'); - } catch (\Exception $e) { - \OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR); - return false; + class PDF extends Provider { + + public function getMimeType() { + return '/application\/pdf/'; } - unlink($tmpPath); + public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { + $tmpPath = $fileview->toTmpFile($path); - //new image object - $image = new \OC_Image($pdf); - //check if image object is valid - return $image->valid() ? $image : false; + //create imagick object from pdf + try{ + $pdf = new Imagick($tmpPath . '[0]'); + $pdf->setImageFormat('jpg'); + } catch (\Exception $e) { + \OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR); + return false; + } + + unlink($tmpPath); + + //new image object + $image = new \OC_Image($pdf); + //check if image object is valid + return $image->valid() ? $image : false; + } } - } - \OC\Preview::registerProvider('OC\Preview\PDF'); + \OC\Preview::registerProvider('OC\Preview\PDF'); + } } diff --git a/lib/private/preview/svg.php b/lib/private/preview/svg.php index 9a73fff946..505122fddb 100644 --- a/lib/private/preview/svg.php +++ b/lib/private/preview/svg.php @@ -7,40 +7,46 @@ */ namespace OC\Preview; -if (extension_loaded('imagick') && count(@\Imagick::queryFormats("SVG")) === 1) { +use Imagick; - class SVG extends Provider { +if (extension_loaded('imagick')) { - public function getMimeType() { - return '/image\/svg\+xml/'; - } + $checkImagick = new Imagick(); - public function getThumbnail($path,$maxX,$maxY,$scalingup,$fileview) { - try{ - $svg = new \Imagick(); - $svg->setBackgroundColor(new \ImagickPixel('transparent')); + if(count($checkImagick->queryFormats('SVG')) === 1) { - $content = stream_get_contents($fileview->fopen($path, 'r')); - if(substr($content, 0, 5) !== '' . $content; - } + class SVG extends Provider { - $svg->readImageBlob($content); - $svg->setImageFormat('png32'); - } catch (\Exception $e) { - \OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR); - return false; + public function getMimeType() { + return '/image\/svg\+xml/'; } + public function getThumbnail($path,$maxX,$maxY,$scalingup,$fileview) { + try{ + $svg = new Imagick(); + $svg->setBackgroundColor(new \ImagickPixel('transparent')); - //new image object - $image = new \OC_Image(); - $image->loadFromData($svg); - //check if image object is valid - return $image->valid() ? $image : false; + $content = stream_get_contents($fileview->fopen($path, 'r')); + if(substr($content, 0, 5) !== '' . $content; + } + + $svg->readImageBlob($content); + $svg->setImageFormat('png32'); + } catch (\Exception $e) { + \OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR); + return false; + } + + + //new image object + $image = new \OC_Image(); + $image->loadFromData($svg); + //check if image object is valid + return $image->valid() ? $image : false; + } } + + \OC\Preview::registerProvider('OC\Preview\SVG'); } - - \OC\Preview::registerProvider('OC\Preview\SVG'); - } \ No newline at end of file From 1ab10cb4f7e085f957198e05e727c81b2c9b27a9 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 5 Mar 2014 18:46:55 +0100 Subject: [PATCH 080/333] Do not set #dir when on public.php Fix #7571 --- apps/files/js/filelist.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 550c10dba3..9a64035d72 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1156,9 +1156,9 @@ $(document).ready(function() { // need to initially switch the dir to the one from the hash (IE8) FileList.changeDirectory(parseCurrentDirFromUrl(), false, true); } - } - FileList.setCurrentDir(parseCurrentDirFromUrl(), false); + FileList.setCurrentDir(parseCurrentDirFromUrl(), false); + } FileList.createFileSummary(); }); From 8e667d1934d6bd9b4344ac624fdd2846c89abb0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 6 Mar 2014 00:17:48 +0100 Subject: [PATCH 081/333] adding new javascript function OC.generateUrl(url, params) --- core/js/js.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/core/js/js.js b/core/js/js.js index 21ccee0f1d..89797ed2a3 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -175,6 +175,30 @@ var OC={ appswebroots:(typeof oc_appswebroots !== 'undefined') ? oc_appswebroots:false, currentUser:(typeof oc_current_user!=='undefined')?oc_current_user:false, coreApps:['', 'admin','log','search','settings','core','3rdparty'], + + /** + * Generates the absolute url for the given relative url, which can contain parameters. + * + * @returns {string} + * @param {string} url + * @param params + */ + generateUrl: function(url, params) { + var _build = function (text, vars) { + return text.replace(/{([^{}]*)}/g, + function (a, b) { + var r = vars[b]; + return typeof r === 'string' || typeof r === 'number' ? r : a; + } + ); + }; + if (url.charAt(0) !== '/') { + url = '/' + url; + + } + return OC.webroot + '/index.php' + _build(url, params); + }, + /** * get an absolute url to a file in an appen * @param app the id of the app the file belongs to From b46517f0129345e2199e160c73f418a0db1d509f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 6 Mar 2014 00:26:57 +0100 Subject: [PATCH 082/333] adding js unit tests for OC.generateUrl() --- core/js/tests/specs/coreSpec.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 478505e928..d69e1fc7e2 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -276,5 +276,14 @@ describe('Core base tests', function() { }); }); + describe('Generate Url', function() { + it('returns absolute urls', function() { + expect(OC.generateUrl('heartbeat')).toEqual(OC.webroot + '/index.php/heartbeat'); + expect(OC.generateUrl('/heartbeat')).toEqual(OC.webroot + '/index.php/heartbeat'); + }); + it('substitutes parameters', function() { + expect(OC.generateUrl('apps/files/download{file}', {file: '/Welcome.txt'})).toEqual(OC.webroot + '/index.php/apps/files/download/Welcome.txt'); + }); + }); }); From 421cff00bdb6441b1639c83ed68dc1cbe196e333 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 5 Mar 2014 15:02:05 +0100 Subject: [PATCH 083/333] Show warning page when accessing server from an untrusted domain Added early check for the requested domain host and show a warning page if the domain is not trusted. --- lib/base.php | 16 ++++++++ lib/private/request.php | 82 ++++++++++++++++++++++++++++++----------- 2 files changed, 76 insertions(+), 22 deletions(-) diff --git a/lib/base.php b/lib/base.php index 351b91b7df..82612a1877 100644 --- a/lib/base.php +++ b/lib/base.php @@ -694,6 +694,22 @@ class OC { exit(); } + $host = OC_Request::insecureServerHost(); + // if the host passed in headers isn't trusted + if (!OC::$CLI + // overwritehost is always trusted + && OC_Request::getOverwriteHost() === null + && !OC_Request::isTrustedDomain($host)) { + + header('HTTP/1.1 400 Bad Request'); + header('Status: 400 Bad Request'); + OC_Template::printErrorPage( + 'You are accessing the server from an untrusted domain.', + 'Please contact your administrator' + ); + return; + } + $request = OC_Request::getPathInfo(); if (substr($request, -3) !== '.js') { // we need these files during the upgrade self::checkMaintenanceMode(); diff --git a/lib/private/request.php b/lib/private/request.php index afd3fda4f2..fb387e83e3 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -25,17 +25,64 @@ class OC_Request { } /** - * @brief Checks whether a domain is considered as trusted. This is used to prevent Host Header Poisoning. + * @brief Checks whether a domain is considered as trusted from the list + * of trusted domains. If no trusted domains have been configured, returns + * true. + * This is used to prevent Host Header Poisoning. * @param string $host - * @return bool + * @return bool true if the given domain is trusted or if no trusted domains + * have been configured */ public static function isTrustedDomain($domain) { - $trustedList = \OC_Config::getValue('trusted_domains', array('')); + $trustedList = \OC_Config::getValue('trusted_domains', array()); + if (empty($trustedList)) { + return true; + } return in_array($domain, $trustedList); } /** - * @brief Returns the server host + * @brief Returns the unverified server host from the headers without checking + * whether it is a trusted domain + * @returns string the server host + * + * Returns the server host, even if the website uses one or more + * reverse proxies + */ + public static function insecureServerHost() { + $host = null; + if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) { + if (strpos($_SERVER['HTTP_X_FORWARDED_HOST'], ",") !== false) { + $host = trim(array_pop(explode(",", $_SERVER['HTTP_X_FORWARDED_HOST']))); + } else { + $host = $_SERVER['HTTP_X_FORWARDED_HOST']; + } + } else { + if (isset($_SERVER['HTTP_HOST'])) { + $host = $_SERVER['HTTP_HOST']; + } else if (isset($_SERVER['SERVER_NAME'])) { + $host = $_SERVER['SERVER_NAME']; + } + } + return $host; + } + + /** + * Returns the overwritehost setting from the config if set and + * if the overwrite condition is met + * @return overwritehost value or null if not defined or the defined condition + * isn't met + */ + public static function getOverwriteHost() { + if(OC_Config::getValue('overwritehost', '') !== '' and self::isOverwriteCondition()) { + return OC_Config::getValue('overwritehost'); + } + return null; + } + + /** + * @brief Returns the server host from the headers, or the first configured + * trusted domain if the host isn't in the trusted list * @returns string the server host * * Returns the server host, even if the website uses one or more @@ -45,29 +92,20 @@ class OC_Request { if(OC::$CLI) { return 'localhost'; } - if(OC_Config::getValue('overwritehost', '') !== '' and self::isOverwriteCondition()) { - return OC_Config::getValue('overwritehost'); - } - if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) { - if (strpos($_SERVER['HTTP_X_FORWARDED_HOST'], ",") !== false) { - $host = trim(array_pop(explode(",", $_SERVER['HTTP_X_FORWARDED_HOST']))); - } - else{ - $host = $_SERVER['HTTP_X_FORWARDED_HOST']; - } - } else { - if (isset($_SERVER['HTTP_HOST'])) { - $host = $_SERVER['HTTP_HOST']; - } - else if (isset($_SERVER['SERVER_NAME'])) { - $host = $_SERVER['SERVER_NAME']; - } + + // overwritehost is always trusted + $host = self::getOverwriteHost(); + if ($host !== null) { + return $host; } + // get the host from the headers + $host = self::insecureServerHost(); + // Verify that the host is a trusted domain if the trusted domains // are defined // If no trusted domain is provided the first trusted domain is returned - if(self::isTrustedDomain($host) || \OC_Config::getValue('trusted_domains', "") === "") { + if (self::isTrustedDomain($host)) { return $host; } else { $trustedList = \OC_Config::getValue('trusted_domains', array('')); From f8fe2753b125c6882019d1ba2c2db661b0bdcbf2 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 5 Mar 2014 15:41:28 +0100 Subject: [PATCH 084/333] Added localhost as trusted domain --- lib/private/request.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/private/request.php b/lib/private/request.php index fb387e83e3..347d77b372 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -13,6 +13,8 @@ class OC_Request { const USER_AGENT_ANDROID_MOBILE_CHROME = '#Android.*Chrome/[.0-9]*#'; const USER_AGENT_FREEBOX = '#^Mozilla/5\.0$#'; + const REGEX_LOCALHOST = '/^(127\.0\.0\.1|localhost)(:[0-9]+|)$/'; + /** * @brief Check overwrite condition * @param string $type @@ -38,6 +40,9 @@ class OC_Request { if (empty($trustedList)) { return true; } + if (preg_match(self::REGEX_LOCALHOST, $domain) === 1) { + return true; + } return in_array($domain, $trustedList); } From c7e204bd3674b616faddbb0b88187f94638e5b01 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 5 Mar 2014 17:04:15 +0100 Subject: [PATCH 085/333] Added unit tests for serverHost and other related functions --- tests/lib/request.php | 137 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 137 insertions(+) diff --git a/tests/lib/request.php b/tests/lib/request.php index 1d77acc70a..bff84e1b03 100644 --- a/tests/lib/request.php +++ b/tests/lib/request.php @@ -135,4 +135,141 @@ class Test_Request extends PHPUnit_Framework_TestCase { ), ); } + + public function testInsecureServerHost() { + unset($_SERVER['HTTP_X_FORWARDED_HOST']); + unset($_SERVER['HTTP_HOST']); + unset($_SERVER['SERVER_NAME']); + $_SERVER['SERVER_NAME'] = 'from.server.name:8080'; + $host = OC_Request::insecureServerHost(); + $this->assertEquals('from.server.name:8080', $host); + + $_SERVER['HTTP_HOST'] = 'from.host.header:8080'; + $host = OC_Request::insecureServerHost(); + $this->assertEquals('from.host.header:8080', $host); + + $_SERVER['HTTP_X_FORWARDED_HOST'] = 'from.forwarded.host:8080'; + $host = OC_Request::insecureServerHost(); + $this->assertEquals('from.forwarded.host:8080', $host); + + $_SERVER['HTTP_X_FORWARDED_HOST'] = 'from.forwarded.host2:8080,another.one:9000'; + $host = OC_Request::insecureServerHost(); + $this->assertEquals('from.forwarded.host2:8080', $host); + + // clean up + unset($_SERVER['HTTP_X_FORWARDED_HOST']); + unset($_SERVER['HTTP_HOST']); + unset($_SERVER['SERVER_NAME']); + } + + public function testGetOverwriteHost() { + unset($_SERVER['REMOTE_ADDR']); + OC_Config::deleteKey('overwritecondaddr'); + OC_Config::deleteKey('overwritehost'); + $host = OC_Request::getOverwriteHost(); + $this->assertNull($host); + + OC_Config::setValue('overwritehost', ''); + $host = OC_Request::getOverwriteHost(); + $this->assertNull($host); + + OC_Config::setValue('overwritehost', 'host.one.test:8080'); + $host = OC_Request::getOverwriteHost(); + $this->assertEquals('host.one.test:8080', $host); + + $_SERVER['REMOTE_ADDR'] = 'somehost.test:8080'; + OC_Config::setValue('overwritecondaddr', '^somehost\..*$'); + $host = OC_Request::getOverwriteHost(); + $this->assertEquals('host.one.test:8080', $host); + + OC_Config::setValue('overwritecondaddr', '^somethingelse.*$'); + $host = OC_Request::getOverwriteHost(); + $this->assertNull($host); + + // clean up + unset($_SERVER['REMOTE_ADDR']); + OC_Config::deleteKey('overwritecondaddr'); + OC_Config::deleteKey('overwritehost'); + } + + /** + * @dataProvider trustedDomainDataProvider + */ + public function testIsTrustedDomain($trustedDomains, $testDomain, $result) { + OC_Config::deleteKey('trusted_domains'); + if ($trustedDomains !== null) { + OC_Config::setValue('trusted_domains', $trustedDomains); + } + + $this->assertEquals($result, OC_Request::isTrustedDomain($testDomain)); + + // clean up + OC_Config::deleteKey('trusted_domains'); + } + + public function trustedDomainDataProvider() { + $trustedHostTestList = array('host.one.test:8080', 'host.two.test:8080'); + return array( + // empty defaults to true + array(null, 'host.one.test:8080', true), + array('', 'host.one.test:8080', true), + array(array(), 'host.one.test:8080', true), + + // trust list when defined + array($trustedHostTestList, 'host.two.test:8080', true), + array($trustedHostTestList, 'host.two.test:9999', false), + array($trustedHostTestList, 'host.three.test:8080', false), + + // trust localhost regardless of trust list + array($trustedHostTestList, 'localhost', true), + array($trustedHostTestList, 'localhost:8080', true), + array($trustedHostTestList, '127.0.0.1', true), + array($trustedHostTestList, '127.0.0.1:8080', true), + + // do not trust invalid localhosts + array($trustedHostTestList, 'localhost:1:2', false), + array($trustedHostTestList, 'localhost: evil.host', false), + ); + } + + public function testServerHost() { + OC_Config::deleteKey('overwritecondaddr'); + OC_Config::setValue('overwritehost', 'overwritten.host:8080'); + OC_Config::setValue( + 'trusted_domains', + array( + 'trusted.host:8080', + 'second.trusted.host:8080' + ) + ); + $_SERVER['HTTP_HOST'] = 'trusted.host:8080'; + + // CLI always gives localhost + $oldCLI = OC::$CLI; + OC::$CLI = true; + $host = OC_Request::serverHost(); + $this->assertEquals('localhost', $host); + OC::$CLI = false; + + // overwritehost overrides trusted domain + $host = OC_Request::serverHost(); + $this->assertEquals('overwritten.host:8080', $host); + + // trusted domain returned when used + OC_Config::deleteKey('overwritehost'); + $host = OC_Request::serverHost(); + $this->assertEquals('trusted.host:8080', $host); + + // trusted domain returned when untrusted one in header + $_SERVER['HTTP_HOST'] = 'untrusted.host:8080'; + OC_Config::deleteKey('overwritehost'); + $host = OC_Request::serverHost(); + $this->assertEquals('trusted.host:8080', $host); + + // clean up + OC_Config::deleteKey('overwritecondaddr'); + OC_Config::deleteKey('overwritehost'); + unset($_SERVER['HTTP_HOST']); + OC::$CLI = $oldCLI; + } } From 9136e6ad3028040b91685fc94e8fccd29c9b9210 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 5 Mar 2014 17:04:45 +0100 Subject: [PATCH 086/333] Fixed X-Forwarded-Host parsing --- lib/private/request.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/request.php b/lib/private/request.php index 347d77b372..8041c4f004 100755 --- a/lib/private/request.php +++ b/lib/private/request.php @@ -58,7 +58,8 @@ class OC_Request { $host = null; if (isset($_SERVER['HTTP_X_FORWARDED_HOST'])) { if (strpos($_SERVER['HTTP_X_FORWARDED_HOST'], ",") !== false) { - $host = trim(array_pop(explode(",", $_SERVER['HTTP_X_FORWARDED_HOST']))); + $parts = explode(',', $_SERVER['HTTP_X_FORWARDED_HOST']); + $host = trim(current($parts)); } else { $host = $_SERVER['HTTP_X_FORWARDED_HOST']; } From 0b0687c9fc8a505bb63734e4501c3132364b619c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 6 Mar 2014 12:38:11 +0100 Subject: [PATCH 087/333] fix noise not repeating --- core/css/icons.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/icons.css b/core/css/icons.css index b41c733861..cdfdd8e43e 100644 --- a/core/css/icons.css +++ b/core/css/icons.css @@ -24,7 +24,7 @@ .icon-noise { background-image: url('../img/noise.png'); - background-repeat: no-repeat; + background-repeat: repeat; } From e129f6845b8ec728455737e46cda872cc45f50c2 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 6 Mar 2014 12:50:18 +0100 Subject: [PATCH 088/333] Added testArea for JS Unit tests Added a testArea that is outside the viewport but still considered as visible from the jQuery code. The testArea is useful when: - tested code tries to access DOM elements using global ids - tested code is requiring some UI elements to be visible to activate themselves --- core/js/tests/specHelper.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/js/tests/specHelper.js b/core/js/tests/specHelper.js index b119324058..48dcb97ef7 100644 --- a/core/js/tests/specHelper.js +++ b/core/js/tests/specHelper.js @@ -68,9 +68,14 @@ window.oc_defaults = {}; // global setup for all tests (function setupTests() { var fakeServer = null, + $testArea = null, routesRequestStub; beforeEach(function() { + // test area for elements that need absolute selector access or measure widths/heights + // which wouldn't work for detached or hidden elements + $testArea = $('
'); + $('body').append($testArea); // enforce fake XHR, tests should not depend on the server and // must use fake responses for expected calls fakeServer = sinon.fakeServer.create(); @@ -101,6 +106,8 @@ window.oc_defaults = {}; // uncomment this to log requests // console.log(window.fakeServer.requests); fakeServer.restore(); + + $testArea.remove(); }); })(); From 07f78c824833bfcb3233f881286dc625d81e44f6 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 6 Mar 2014 13:49:57 +0100 Subject: [PATCH 089/333] Added unit tests for "add()" method for file upload - Added OC.Upload.init() to make the code testable - Added unit tests for the add() method of the uploader with some error cases --- apps/files/js/file-upload.js | 1087 +++++++++++++------------ apps/files/tests/js/fileUploadSpec.js | 127 +++ 2 files changed, 673 insertions(+), 541 deletions(-) create mode 100644 apps/files/tests/js/fileUploadSpec.js diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index aa85644cef..b9c4dc941f 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -177,549 +177,554 @@ OC.Upload = { checkExistingFiles: function (selection, callbacks) { // TODO check filelist before uploading and show dialog on conflicts, use callbacks callbacks.onNoConflicts(selection); + }, + + init: function() { + if ( $('#file_upload_start').exists() ) { + + var file_upload_param = { + dropZone: $('#content'), // restrict dropZone to content div + autoUpload: false, + sequentialUploads: true, + //singleFileUploads is on by default, so the data.files array will always have length 1 + /** + * on first add of every selection + * - check all files of originalFiles array with files in dir + * - on conflict show dialog + * - skip all -> remember as single skip action for all conflicting files + * - replace all -> remember as single replace action for all conflicting files + * - choose -> show choose dialog + * - mark files to keep + * - when only existing -> remember as single skip action + * - when only new -> remember as single replace action + * - when both -> remember as single autorename action + * - start uploading selection + * @param {object} e + * @param {object} data + * @returns {boolean} + */ + add: function(e, data) { + OC.Upload.log('add', e, data); + var that = $(this); + + // we need to collect all data upload objects before starting the upload so we can check their existence + // and set individual conflict actions. unfortunately there is only one variable that we can use to identify + // the selection a data upload is part of, so we have to collect them in data.originalFiles + // turning singleFileUploads off is not an option because we want to gracefully handle server errors like + // already exists + + // create a container where we can store the data objects + if ( ! data.originalFiles.selection ) { + // initialize selection and remember number of files to upload + data.originalFiles.selection = { + uploads: [], + filesToUpload: data.originalFiles.length, + totalBytes: 0 + }; + } + var selection = data.originalFiles.selection; + + // add uploads + if ( selection.uploads.length < selection.filesToUpload ) { + // remember upload + selection.uploads.push(data); + } + + //examine file + var file = data.files[0]; + try { + // FIXME: not so elegant... need to refactor that method to return a value + Files.isFileNameValid(file.name, FileList.getCurrentDirectory()); + } + catch (errorMessage) { + data.textStatus = 'invalidcharacters'; + data.errorThrown = errorMessage; + } + + if (file.type === '' && file.size === 4096) { + data.textStatus = 'dirorzero'; + data.errorThrown = t('files', 'Unable to upload {filename} as it is a directory or has 0 bytes', + {filename: file.name} + ); + } + + // add size + selection.totalBytes += file.size; + + // check PHP upload limit + if (selection.totalBytes > $('#upload_limit').val()) { + data.textStatus = 'sizeexceedlimit'; + data.errorThrown = t('files', 'Total file size {size1} exceeds upload limit {size2}', { + 'size1': humanFileSize(selection.totalBytes), + 'size2': humanFileSize($('#upload_limit').val()) + }); + } + + // check free space + if (selection.totalBytes > $('#free_space').val()) { + data.textStatus = 'notenoughspace'; + data.errorThrown = t('files', 'Not enough free space, you are uploading {size1} but only {size2} is left', { + 'size1': humanFileSize(selection.totalBytes), + 'size2': humanFileSize($('#free_space').val()) + }); + } + + // end upload for whole selection on error + if (data.errorThrown) { + // trigger fileupload fail + var fu = that.data('blueimp-fileupload') || that.data('fileupload'); + fu._trigger('fail', e, data); + return false; //don't upload anything + } + + // check existing files when all is collected + if ( selection.uploads.length >= selection.filesToUpload ) { + + //remove our selection hack: + delete data.originalFiles.selection; + + var callbacks = { + + onNoConflicts: function (selection) { + $.each(selection.uploads, function(i, upload) { + upload.submit(); + }); + }, + onSkipConflicts: function (selection) { + //TODO mark conflicting files as toskip + }, + onReplaceConflicts: function (selection) { + //TODO mark conflicting files as toreplace + }, + onChooseConflicts: function (selection) { + //TODO mark conflicting files as chosen + }, + onCancel: function (selection) { + $.each(selection.uploads, function(i, upload) { + upload.abort(); + }); + } + }; + + OC.Upload.checkExistingFiles(selection, callbacks); + + } + + return true; // continue adding files + }, + /** + * called after the first add, does NOT have the data param + * @param {object} e + */ + start: function(e) { + OC.Upload.log('start', e, null); + }, + submit: function(e, data) { + OC.Upload.rememberUpload(data); + if ( ! data.formData ) { + // noone set update parameters, we set the minimum + data.formData = { + requesttoken: oc_requesttoken, + dir: $('#dir').val() + }; + } + }, + fail: function(e, data) { + OC.Upload.log('fail', e, data); + if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) { + if (data.textStatus === 'abort') { + OC.Notification.show(t('files', 'Upload cancelled.')); + } else { + // HTTP connection problem + OC.Notification.show(data.errorThrown); + if (data.result) { + var result = JSON.parse(data.result); + if (result && result[0] && result[0].data && result[0].data.code === 'targetnotfound') { + // abort upload of next files if any + OC.Upload.cancelUploads(); + } + } + } + //hide notification after 10 sec + setTimeout(function() { + OC.Notification.hide(); + }, 10000); + } + OC.Upload.deleteUpload(data); + }, + /** + * called for every successful upload + * @param {object} e + * @param {object} data + */ + done:function(e, data) { + OC.Upload.log('done', e, data); + // handle different responses (json or body from iframe for ie) + var response; + if (typeof data.result === 'string') { + response = data.result; + } else { + //fetch response from iframe + response = data.result[0].body.innerText; + } + var result=$.parseJSON(response); + + delete data.jqXHR; + + if (result.status === 'error' && result.data && result.data.message){ + data.textStatus = 'servererror'; + data.errorThrown = result.data.message; + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + } else if (typeof result[0] === 'undefined') { + data.textStatus = 'servererror'; + data.errorThrown = t('files', 'Could not get result from server.'); + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + } else if (result[0].status === 'existserror') { + //show "file already exists" dialog + var original = result[0]; + var replacement = data.files[0]; + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + OC.dialogs.fileexists(data, original, replacement, OC.Upload, fu); + } else if (result[0].status !== 'success') { + //delete data.jqXHR; + data.textStatus = 'servererror'; + data.errorThrown = result[0].data.message; // error message has been translated on server + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + } + }, + /** + * called after last upload + * @param {object} e + * @param {object} data + */ + stop: function(e, data) { + OC.Upload.log('stop', e, data); + } + }; + + // initialize jquery fileupload (blueimp) + var fileupload = $('#file_upload_start').fileupload(file_upload_param); + window.file_upload_param = fileupload; + + if (supportAjaxUploadWithProgress()) { + + // add progress handlers + fileupload.on('fileuploadadd', function(e, data) { + OC.Upload.log('progress handle fileuploadadd', e, data); + //show cancel button + //if (data.dataType !== 'iframe') { //FIXME when is iframe used? only for ie? + // $('#uploadprogresswrapper input.stop').show(); + //} + }); + // add progress handlers + fileupload.on('fileuploadstart', function(e, data) { + OC.Upload.log('progress handle fileuploadstart', e, data); + $('#uploadprogresswrapper input.stop').show(); + $('#uploadprogressbar').progressbar({value:0}); + $('#uploadprogressbar').fadeIn(); + }); + fileupload.on('fileuploadprogress', function(e, data) { + OC.Upload.log('progress handle fileuploadprogress', e, data); + //TODO progressbar in row + }); + fileupload.on('fileuploadprogressall', function(e, data) { + OC.Upload.log('progress handle fileuploadprogressall', e, data); + var progress = (data.loaded / data.total) * 100; + $('#uploadprogressbar').progressbar('value', progress); + }); + fileupload.on('fileuploadstop', function(e, data) { + OC.Upload.log('progress handle fileuploadstop', e, data); + + $('#uploadprogresswrapper input.stop').fadeOut(); + $('#uploadprogressbar').fadeOut(); + Files.updateStorageStatistics(); + }); + fileupload.on('fileuploadfail', function(e, data) { + OC.Upload.log('progress handle fileuploadfail', e, data); + //if user pressed cancel hide upload progress bar and cancel button + if (data.errorThrown === 'abort') { + $('#uploadprogresswrapper input.stop').fadeOut(); + $('#uploadprogressbar').fadeOut(); + } + }); + + } else { + console.log('skipping file progress because your browser is broken'); + } + } + + $.assocArraySize = function(obj) { + // http://stackoverflow.com/a/6700/11236 + var size = 0, key; + for (key in obj) { + if (obj.hasOwnProperty(key)) { + size++; + } + } + return size; + }; + + // warn user not to leave the page while upload is in progress + $(window).on('beforeunload', function(e) { + if (OC.Upload.isProcessing()) { + return t('files', 'File upload is in progress. Leaving the page now will cancel the upload.'); + } + }); + + //add multiply file upload attribute to all browsers except konqueror (which crashes when it's used) + if (navigator.userAgent.search(/konqueror/i) === -1) { + $('#file_upload_start').attr('multiple', 'multiple'); + } + + //if the breadcrumb is to long, start by replacing foldernames with '...' except for the current folder + var crumb=$('div.crumb').first(); + while($('div.controls').height() > 40 && crumb.next('div.crumb').length > 0) { + crumb.children('a').text('...'); + crumb = crumb.next('div.crumb'); + } + //if that isn't enough, start removing items from the breacrumb except for the current folder and it's parent + var crumb = $('div.crumb').first(); + var next = crumb.next('div.crumb'); + while($('div.controls').height()>40 && next.next('div.crumb').length > 0) { + crumb.remove(); + crumb = next; + next = crumb.next('div.crumb'); + } + //still not enough, start shorting down the current folder name + var crumb=$('div.crumb>a').last(); + while($('div.controls').height() > 40 && crumb.text().length > 6) { + var text=crumb.text(); + text = text.substr(0,text.length-6)+'...'; + crumb.text(text); + } + + $(document).click(function(ev) { + // do not close when clicking in the dropdown + if ($(ev.target).closest('#new').length){ + return; + } + $('#new>ul').hide(); + $('#new').removeClass('active'); + if ($('#new .error').length > 0) { + $('#new .error').tipsy('hide'); + } + $('#new li').each(function(i,element) { + if ($(element).children('p').length === 0) { + $(element).children('form').remove(); + $(element).append('

'+$(element).data('text')+'

'); + } + }); + }); + $('#new').click(function(event) { + event.stopPropagation(); + }); + $('#new>a').click(function() { + $('#new>ul').toggle(); + $('#new').toggleClass('active'); + }); + $('#new li').click(function() { + if ($(this).children('p').length === 0) { + return; + } + + $('#new .error').tipsy('hide'); + + $('#new li').each(function(i,element) { + if ($(element).children('p').length === 0) { + $(element).children('form').remove(); + $(element).append('

'+$(element).data('text')+'

'); + } + }); + + var type=$(this).data('type'); + var text=$(this).children('p').text(); + $(this).data('text',text); + $(this).children('p').remove(); + + // add input field + var form = $('
'); + var input = $(''); + var newName = $(this).attr('data-newname') || ''; + if (newName) { + input.val(newName); + } + form.append(input); + $(this).append(form); + var lastPos; + var checkInput = function () { + var filename = input.val(); + if (type === 'web' && filename.length === 0) { + throw t('files', 'URL cannot be empty'); + } else if (type !== 'web' && !Files.isFileNameValid(filename)) { + // Files.isFileNameValid(filename) throws an exception itself + } else if (FileList.getCurrentDirectory() === '/' && filename.toLowerCase() === 'shared') { + throw t('files', 'In the home folder \'Shared\' is a reserved filename'); + } else if (FileList.inList(filename)) { + throw t('files', '{new_name} already exists', {new_name: filename}); + } else { + return true; + } + }; + + // verify filename on typing + input.keyup(function(event) { + try { + checkInput(); + input.tipsy('hide'); + input.removeClass('error'); + } catch (error) { + input.attr('title', error); + input.tipsy({gravity: 'w', trigger: 'manual'}); + input.tipsy('show'); + input.addClass('error'); + } + }); + + input.focus(); + // pre select name up to the extension + lastPos = newName.lastIndexOf('.'); + if (lastPos === -1) { + lastPos = newName.length; + } + input.selectRange(0, lastPos); + form.submit(function(event) { + event.stopPropagation(); + event.preventDefault(); + try { + checkInput(); + var newname = input.val(); + if (FileList.lastAction) { + FileList.lastAction(); + } + var name = getUniqueName(newname); + if (newname !== name) { + FileList.checkName(name, newname, true); + var hidden = true; + } else { + var hidden = false; + } + switch(type) { + case 'file': + $.post( + OC.filePath('files', 'ajax', 'newfile.php'), + {dir:$('#dir').val(), filename:name}, + function(result) { + if (result.status === 'success') { + var date = new Date(); + // TODO: ideally addFile should be able to receive + // all attributes and set them automatically, + // and also auto-load the preview + var tr = FileList.addFile(name, 0, date, false, hidden); + tr.attr('data-size', result.data.size); + tr.attr('data-mime', result.data.mime); + tr.attr('data-id', result.data.id); + tr.attr('data-etag', result.data.etag); + tr.find('.filesize').text(humanFileSize(result.data.size)); + var path = getPathForPreview(name); + Files.lazyLoadPreview(path, result.data.mime, function(previewpath) { + tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); + }, null, null, result.data.etag); + FileActions.display(tr.find('td.filename'), true); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Could not create file')); + } + } + ); + break; + case 'folder': + $.post( + OC.filePath('files','ajax','newfolder.php'), + {dir:$('#dir').val(), foldername:name}, + function(result) { + if (result.status === 'success') { + var date=new Date(); + FileList.addDir(name, 0, date, hidden); + var tr = FileList.findFileEl(name); + tr.attr('data-id', result.data.id); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Could not create folder')); + } + } + ); + break; + case 'web': + if (name.substr(0,8) !== 'https://' && name.substr(0,7) !== 'http://') { + name = 'http://' + name; + } + var localName=name; + if (localName.substr(localName.length-1,1)==='/') {//strip / + localName=localName.substr(0,localName.length-1); + } + if (localName.indexOf('/')) {//use last part of url + localName=localName.split('/').pop(); + } else { //or the domain + localName=(localName.match(/:\/\/(.[^\/]+)/)[1]).replace('www.',''); + } + localName = getUniqueName(localName); + //IE < 10 does not fire the necessary events for the progress bar. + if ($('html.lte9').length === 0) { + $('#uploadprogressbar').progressbar({value:0}); + $('#uploadprogressbar').fadeIn(); + } + + var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName}); + eventSource.listen('progress',function(progress) { + //IE < 10 does not fire the necessary events for the progress bar. + if ($('html.lte9').length === 0) { + $('#uploadprogressbar').progressbar('value',progress); + } + }); + eventSource.listen('success',function(data) { + var mime = data.mime; + var size = data.size; + var id = data.id; + $('#uploadprogressbar').fadeOut(); + var date = new Date(); + FileList.addFile(localName, size, date, false, hidden); + var tr = FileList.findFileEl(localName); + tr.data('mime', mime).data('id', id); + tr.attr('data-id', id); + var path = $('#dir').val()+'/'+localName; + Files.lazyLoadPreview(path, mime, function(previewpath) { + tr.find('td.filename').attr('style', 'background-image:url('+previewpath+')'); + }, null, null, data.etag); + FileActions.display(tr.find('td.filename'), true); + }); + eventSource.listen('error',function(error) { + $('#uploadprogressbar').fadeOut(); + 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; + } + var li=form.parent(); + form.remove(); + /* workaround for IE 9&10 click event trap, 2 lines: */ + $('input').first().focus(); + $('#content').focus(); + li.append('

'+li.data('text')+'

'); + $('#new>a').click(); + } catch (error) { + input.attr('title', error); + input.tipsy({gravity: 'w', trigger: 'manual'}); + input.tipsy('show'); + input.addClass('error'); + } + }); + }); + window.file_upload_param = file_upload_param; + return file_upload_param; } }; $(document).ready(function() { - - if ( $('#file_upload_start').exists() ) { - - var file_upload_param = { - dropZone: $('#content'), // restrict dropZone to content div - autoUpload: false, - sequentialUploads: true, - //singleFileUploads is on by default, so the data.files array will always have length 1 - /** - * on first add of every selection - * - check all files of originalFiles array with files in dir - * - on conflict show dialog - * - skip all -> remember as single skip action for all conflicting files - * - replace all -> remember as single replace action for all conflicting files - * - choose -> show choose dialog - * - mark files to keep - * - when only existing -> remember as single skip action - * - when only new -> remember as single replace action - * - when both -> remember as single autorename action - * - start uploading selection - * @param {object} e - * @param {object} data - * @returns {boolean} - */ - add: function(e, data) { - OC.Upload.log('add', e, data); - var that = $(this); - - // we need to collect all data upload objects before starting the upload so we can check their existence - // and set individual conflict actions. unfortunately there is only one variable that we can use to identify - // the selection a data upload is part of, so we have to collect them in data.originalFiles - // turning singleFileUploads off is not an option because we want to gracefully handle server errors like - // already exists - - // create a container where we can store the data objects - if ( ! data.originalFiles.selection ) { - // initialize selection and remember number of files to upload - data.originalFiles.selection = { - uploads: [], - filesToUpload: data.originalFiles.length, - totalBytes: 0 - }; - } - var selection = data.originalFiles.selection; - - // add uploads - if ( selection.uploads.length < selection.filesToUpload ) { - // remember upload - selection.uploads.push(data); - } - - //examine file - var file = data.files[0]; - try { - // FIXME: not so elegant... need to refactor that method to return a value - Files.isFileNameValid(file.name, FileList.getCurrentDirectory()); - } - catch (errorMessage) { - data.textStatus = 'invalidcharacters'; - data.errorThrown = errorMessage; - } - - if (file.type === '' && file.size === 4096) { - data.textStatus = 'dirorzero'; - data.errorThrown = t('files', 'Unable to upload {filename} as it is a directory or has 0 bytes', - {filename: file.name} - ); - } - - // add size - selection.totalBytes += file.size; - - // check PHP upload limit - if (selection.totalBytes > $('#upload_limit').val()) { - data.textStatus = 'sizeexceedlimit'; - data.errorThrown = t('files', 'Total file size {size1} exceeds upload limit {size2}', { - 'size1': humanFileSize(selection.totalBytes), - 'size2': humanFileSize($('#upload_limit').val()) - }); - } - - // check free space - if (selection.totalBytes > $('#free_space').val()) { - data.textStatus = 'notenoughspace'; - data.errorThrown = t('files', 'Not enough free space, you are uploading {size1} but only {size2} is left', { - 'size1': humanFileSize(selection.totalBytes), - 'size2': humanFileSize($('#free_space').val()) - }); - } - - // end upload for whole selection on error - if (data.errorThrown) { - // trigger fileupload fail - var fu = that.data('blueimp-fileupload') || that.data('fileupload'); - fu._trigger('fail', e, data); - return false; //don't upload anything - } - - // check existing files when all is collected - if ( selection.uploads.length >= selection.filesToUpload ) { - - //remove our selection hack: - delete data.originalFiles.selection; - - var callbacks = { - - onNoConflicts: function (selection) { - $.each(selection.uploads, function(i, upload) { - upload.submit(); - }); - }, - onSkipConflicts: function (selection) { - //TODO mark conflicting files as toskip - }, - onReplaceConflicts: function (selection) { - //TODO mark conflicting files as toreplace - }, - onChooseConflicts: function (selection) { - //TODO mark conflicting files as chosen - }, - onCancel: function (selection) { - $.each(selection.uploads, function(i, upload) { - upload.abort(); - }); - } - }; - - OC.Upload.checkExistingFiles(selection, callbacks); - - } - - return true; // continue adding files - }, - /** - * called after the first add, does NOT have the data param - * @param {object} e - */ - start: function(e) { - OC.Upload.log('start', e, null); - }, - submit: function(e, data) { - OC.Upload.rememberUpload(data); - if ( ! data.formData ) { - // noone set update parameters, we set the minimum - data.formData = { - requesttoken: oc_requesttoken, - dir: $('#dir').val() - }; - } - }, - fail: function(e, data) { - OC.Upload.log('fail', e, data); - if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) { - if (data.textStatus === 'abort') { - OC.Notification.show(t('files', 'Upload cancelled.')); - } else { - // HTTP connection problem - OC.Notification.show(data.errorThrown); - if (data.result) { - var result = JSON.parse(data.result); - if (result && result[0] && result[0].data && result[0].data.code === 'targetnotfound') { - // abort upload of next files if any - OC.Upload.cancelUploads(); - } - } - } - //hide notification after 10 sec - setTimeout(function() { - OC.Notification.hide(); - }, 10000); - } - OC.Upload.deleteUpload(data); - }, - /** - * called for every successful upload - * @param {object} e - * @param {object} data - */ - done:function(e, data) { - OC.Upload.log('done', e, data); - // handle different responses (json or body from iframe for ie) - var response; - if (typeof data.result === 'string') { - response = data.result; - } else { - //fetch response from iframe - response = data.result[0].body.innerText; - } - var result=$.parseJSON(response); - - delete data.jqXHR; - - if (result.status === 'error' && result.data && result.data.message){ - data.textStatus = 'servererror'; - data.errorThrown = result.data.message; - var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); - fu._trigger('fail', e, data); - } else if (typeof result[0] === 'undefined') { - data.textStatus = 'servererror'; - data.errorThrown = t('files', 'Could not get result from server.'); - var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); - fu._trigger('fail', e, data); - } else if (result[0].status === 'existserror') { - //show "file already exists" dialog - var original = result[0]; - var replacement = data.files[0]; - var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); - OC.dialogs.fileexists(data, original, replacement, OC.Upload, fu); - } else if (result[0].status !== 'success') { - //delete data.jqXHR; - data.textStatus = 'servererror'; - data.errorThrown = result[0].data.message; // error message has been translated on server - var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); - fu._trigger('fail', e, data); - } - }, - /** - * called after last upload - * @param {object} e - * @param {object} data - */ - stop: function(e, data) { - OC.Upload.log('stop', e, data); - } - }; - - // initialize jquery fileupload (blueimp) - var fileupload = $('#file_upload_start').fileupload(file_upload_param); - window.file_upload_param = fileupload; - - if (supportAjaxUploadWithProgress()) { - - // add progress handlers - fileupload.on('fileuploadadd', function(e, data) { - OC.Upload.log('progress handle fileuploadadd', e, data); - //show cancel button - //if (data.dataType !== 'iframe') { //FIXME when is iframe used? only for ie? - // $('#uploadprogresswrapper input.stop').show(); - //} - }); - // add progress handlers - fileupload.on('fileuploadstart', function(e, data) { - OC.Upload.log('progress handle fileuploadstart', e, data); - $('#uploadprogresswrapper input.stop').show(); - $('#uploadprogressbar').progressbar({value:0}); - $('#uploadprogressbar').fadeIn(); - }); - fileupload.on('fileuploadprogress', function(e, data) { - OC.Upload.log('progress handle fileuploadprogress', e, data); - //TODO progressbar in row - }); - fileupload.on('fileuploadprogressall', function(e, data) { - OC.Upload.log('progress handle fileuploadprogressall', e, data); - var progress = (data.loaded / data.total) * 100; - $('#uploadprogressbar').progressbar('value', progress); - }); - fileupload.on('fileuploadstop', function(e, data) { - OC.Upload.log('progress handle fileuploadstop', e, data); - - $('#uploadprogresswrapper input.stop').fadeOut(); - $('#uploadprogressbar').fadeOut(); - Files.updateStorageStatistics(); - }); - fileupload.on('fileuploadfail', function(e, data) { - OC.Upload.log('progress handle fileuploadfail', e, data); - //if user pressed cancel hide upload progress bar and cancel button - if (data.errorThrown === 'abort') { - $('#uploadprogresswrapper input.stop').fadeOut(); - $('#uploadprogressbar').fadeOut(); - } - }); - - } else { - console.log('skipping file progress because your browser is broken'); - } - } - - $.assocArraySize = function(obj) { - // http://stackoverflow.com/a/6700/11236 - var size = 0, key; - for (key in obj) { - if (obj.hasOwnProperty(key)) { - size++; - } - } - return size; - }; - - // warn user not to leave the page while upload is in progress - $(window).on('beforeunload', function(e) { - if (OC.Upload.isProcessing()) { - return t('files', 'File upload is in progress. Leaving the page now will cancel the upload.'); - } - }); - - //add multiply file upload attribute to all browsers except konqueror (which crashes when it's used) - if (navigator.userAgent.search(/konqueror/i) === -1) { - $('#file_upload_start').attr('multiple', 'multiple'); - } - - //if the breadcrumb is to long, start by replacing foldernames with '...' except for the current folder - var crumb=$('div.crumb').first(); - while($('div.controls').height() > 40 && crumb.next('div.crumb').length > 0) { - crumb.children('a').text('...'); - crumb = crumb.next('div.crumb'); - } - //if that isn't enough, start removing items from the breacrumb except for the current folder and it's parent - var crumb = $('div.crumb').first(); - var next = crumb.next('div.crumb'); - while($('div.controls').height()>40 && next.next('div.crumb').length > 0) { - crumb.remove(); - crumb = next; - next = crumb.next('div.crumb'); - } - //still not enough, start shorting down the current folder name - var crumb=$('div.crumb>a').last(); - while($('div.controls').height() > 40 && crumb.text().length > 6) { - var text=crumb.text(); - text = text.substr(0,text.length-6)+'...'; - crumb.text(text); - } - - $(document).click(function(ev) { - // do not close when clicking in the dropdown - if ($(ev.target).closest('#new').length){ - return; - } - $('#new>ul').hide(); - $('#new').removeClass('active'); - if ($('#new .error').length > 0) { - $('#new .error').tipsy('hide'); - } - $('#new li').each(function(i,element) { - if ($(element).children('p').length === 0) { - $(element).children('form').remove(); - $(element).append('

'+$(element).data('text')+'

'); - } - }); - }); - $('#new').click(function(event) { - event.stopPropagation(); - }); - $('#new>a').click(function() { - $('#new>ul').toggle(); - $('#new').toggleClass('active'); - }); - $('#new li').click(function() { - if ($(this).children('p').length === 0) { - return; - } - - $('#new .error').tipsy('hide'); - - $('#new li').each(function(i,element) { - if ($(element).children('p').length === 0) { - $(element).children('form').remove(); - $(element).append('

'+$(element).data('text')+'

'); - } - }); - - var type=$(this).data('type'); - var text=$(this).children('p').text(); - $(this).data('text',text); - $(this).children('p').remove(); - - // add input field - var form = $('
'); - var input = $(''); - var newName = $(this).attr('data-newname') || ''; - if (newName) { - input.val(newName); - } - form.append(input); - $(this).append(form); - var lastPos; - var checkInput = function () { - var filename = input.val(); - if (type === 'web' && filename.length === 0) { - throw t('files', 'URL cannot be empty'); - } else if (type !== 'web' && !Files.isFileNameValid(filename)) { - // Files.isFileNameValid(filename) throws an exception itself - } else if (FileList.getCurrentDirectory() === '/' && filename.toLowerCase() === 'shared') { - throw t('files', 'In the home folder \'Shared\' is a reserved filename'); - } else if (FileList.inList(filename)) { - throw t('files', '{new_name} already exists', {new_name: filename}); - } else { - return true; - } - }; - - // verify filename on typing - input.keyup(function(event) { - try { - checkInput(); - input.tipsy('hide'); - input.removeClass('error'); - } catch (error) { - input.attr('title', error); - input.tipsy({gravity: 'w', trigger: 'manual'}); - input.tipsy('show'); - input.addClass('error'); - } - }); - - input.focus(); - // pre select name up to the extension - lastPos = newName.lastIndexOf('.'); - if (lastPos === -1) { - lastPos = newName.length; - } - input.selectRange(0, lastPos); - form.submit(function(event) { - event.stopPropagation(); - event.preventDefault(); - try { - checkInput(); - var newname = input.val(); - if (FileList.lastAction) { - FileList.lastAction(); - } - var name = getUniqueName(newname); - if (newname !== name) { - FileList.checkName(name, newname, true); - var hidden = true; - } else { - var hidden = false; - } - switch(type) { - case 'file': - $.post( - OC.filePath('files', 'ajax', 'newfile.php'), - {dir:$('#dir').val(), filename:name}, - function(result) { - if (result.status === 'success') { - var date = new Date(); - // TODO: ideally addFile should be able to receive - // all attributes and set them automatically, - // and also auto-load the preview - var tr = FileList.addFile(name, 0, date, false, hidden); - tr.attr('data-size', result.data.size); - tr.attr('data-mime', result.data.mime); - tr.attr('data-id', result.data.id); - tr.attr('data-etag', result.data.etag); - tr.find('.filesize').text(humanFileSize(result.data.size)); - var path = getPathForPreview(name); - Files.lazyLoadPreview(path, result.data.mime, function(previewpath) { - tr.find('td.filename').attr('style','background-image:url('+previewpath+')'); - }, null, null, result.data.etag); - FileActions.display(tr.find('td.filename'), true); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Could not create file')); - } - } - ); - break; - case 'folder': - $.post( - OC.filePath('files','ajax','newfolder.php'), - {dir:$('#dir').val(), foldername:name}, - function(result) { - if (result.status === 'success') { - var date=new Date(); - FileList.addDir(name, 0, date, hidden); - var tr = FileList.findFileEl(name); - tr.attr('data-id', result.data.id); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Could not create folder')); - } - } - ); - break; - case 'web': - if (name.substr(0,8) !== 'https://' && name.substr(0,7) !== 'http://') { - name = 'http://' + name; - } - var localName=name; - if (localName.substr(localName.length-1,1)==='/') {//strip / - localName=localName.substr(0,localName.length-1); - } - if (localName.indexOf('/')) {//use last part of url - localName=localName.split('/').pop(); - } else { //or the domain - localName=(localName.match(/:\/\/(.[^\/]+)/)[1]).replace('www.',''); - } - localName = getUniqueName(localName); - //IE < 10 does not fire the necessary events for the progress bar. - if ($('html.lte9').length === 0) { - $('#uploadprogressbar').progressbar({value:0}); - $('#uploadprogressbar').fadeIn(); - } - - var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName}); - eventSource.listen('progress',function(progress) { - //IE < 10 does not fire the necessary events for the progress bar. - if ($('html.lte9').length === 0) { - $('#uploadprogressbar').progressbar('value',progress); - } - }); - eventSource.listen('success',function(data) { - var mime = data.mime; - var size = data.size; - var id = data.id; - $('#uploadprogressbar').fadeOut(); - var date = new Date(); - FileList.addFile(localName, size, date, false, hidden); - var tr = FileList.findFileEl(localName); - tr.data('mime', mime).data('id', id); - tr.attr('data-id', id); - var path = $('#dir').val()+'/'+localName; - Files.lazyLoadPreview(path, mime, function(previewpath) { - tr.find('td.filename').attr('style', 'background-image:url('+previewpath+')'); - }, null, null, data.etag); - FileActions.display(tr.find('td.filename'), true); - }); - eventSource.listen('error',function(error) { - $('#uploadprogressbar').fadeOut(); - 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; - } - var li=form.parent(); - form.remove(); - /* workaround for IE 9&10 click event trap, 2 lines: */ - $('input').first().focus(); - $('#content').focus(); - li.append('

'+li.data('text')+'

'); - $('#new>a').click(); - } catch (error) { - input.attr('title', error); - input.tipsy({gravity: 'w', trigger: 'manual'}); - input.tipsy('show'); - input.addClass('error'); - } - }); - }); - window.file_upload_param = file_upload_param; + OC.Upload.init(); }); + diff --git a/apps/files/tests/js/fileUploadSpec.js b/apps/files/tests/js/fileUploadSpec.js new file mode 100644 index 0000000000..2b4341ef1c --- /dev/null +++ b/apps/files/tests/js/fileUploadSpec.js @@ -0,0 +1,127 @@ +/** +* ownCloud +* +* @author Vincent Petry +* @copyright 2014 Vincent Petry +* +* This library is free software; you can redistribute it and/or +* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE +* License as published by the Free Software Foundation; either +* version 3 of the License, or any later version. +* +* This library is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU AFFERO GENERAL PUBLIC LICENSE for more details. +* +* You should have received a copy of the GNU Affero General Public +* License along with this library. If not, see . +* +*/ + +/* global OC */ +describe('OC.Upload tests', function() { + var $dummyUploader; + var testFile; + + beforeEach(function() { + testFile = { + name: 'test.txt', + size: 5000, // 5 KB + type: 'text/plain', + lastModifiedDate: new Date() + }; + // need a dummy button because file-upload checks on it + $('#testArea').append( + '' + + '' + // 10 MB + '' // 50 MB + ); + $dummyUploader = $('#file_upload_start'); + }); + afterEach(function() { + delete window.file_upload_param; + $dummyUploader = undefined; + }); + describe('Adding files for upload', function() { + var params; + var failStub; + + beforeEach(function() { + params = OC.Upload.init(); + failStub = sinon.stub(); + $dummyUploader.on('fileuploadfail', failStub); + }); + afterEach(function() { + params = undefined; + failStub = undefined; + }); + + /** + * Add file for upload + * @param file file data + */ + function addFile(file) { + return params.add.call( + $dummyUploader[0], + {}, + { + originalFiles: {}, + files: [file] + }); + } + + it('adds file when size is below limits', function() { + var result = addFile(testFile); + expect(result).toEqual(true); + }); + it('adds file when free space is unknown', function() { + var result; + $('#free_space').val(-2); + + result = addFile(testFile); + + expect(result).toEqual(true); + expect(failStub.notCalled).toEqual(true); + }); + it('does not add file if it exceeds upload limit', function() { + var result; + $('#upload_limit').val(1000); + + result = addFile(testFile); + + expect(result).toEqual(false); + expect(failStub.calledOnce).toEqual(true); + expect(failStub.getCall(0).args[1].textStatus).toEqual('sizeexceedlimit'); + expect(failStub.getCall(0).args[1].errorThrown).toEqual( + 'Total file size 5 kB exceeds upload limit 1000 B' + ); + }); + it('does not add file if it exceeds free space', function() { + var result; + $('#free_space').val(1000); + + result = addFile(testFile); + + expect(result).toEqual(false); + expect(failStub.calledOnce).toEqual(true); + expect(failStub.getCall(0).args[1].textStatus).toEqual('notenoughspace'); + expect(failStub.getCall(0).args[1].errorThrown).toEqual( + 'Not enough free space, you are uploading 5 kB but only 1000 B is left' + ); + }); + it('does not add file if it has invalid characters', function() { + var result; + testFile.name = 'stars*stars.txt'; + + result = addFile(testFile); + + expect(result).toEqual(false); + expect(failStub.calledOnce).toEqual(true); + expect(failStub.getCall(0).args[1].textStatus).toEqual('invalidcharacters'); + expect(failStub.getCall(0).args[1].errorThrown.substr(0, 12)).toEqual( + 'Invalid name' + ); + }); + }); +}); From 0dcac65aa1eb14adc4d3693b6a2c99cbf6ea2425 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 6 Mar 2014 13:50:53 +0100 Subject: [PATCH 090/333] Fixed upload issue when free space is not known --- apps/files/js/file-upload.js | 4 +++- lib/private/helper.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index b9c4dc941f..b7b8f6fdeb 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -206,6 +206,7 @@ OC.Upload = { add: function(e, data) { OC.Upload.log('add', e, data); var that = $(this); + var freeSpace; // we need to collect all data upload objects before starting the upload so we can check their existence // and set individual conflict actions. unfortunately there is only one variable that we can use to identify @@ -261,7 +262,8 @@ OC.Upload = { } // check free space - if (selection.totalBytes > $('#free_space').val()) { + freeSpace = $('#free_space').val(); + if (freeSpace >= 0 && selection.totalBytes > freeSpace) { data.textStatus = 'notenoughspace'; data.errorThrown = t('files', 'Not enough free space, you are uploading {size1} but only {size2} is left', { 'size1': humanFileSize(selection.totalBytes), diff --git a/lib/private/helper.php b/lib/private/helper.php index d8c4650f66..b9956d5ec1 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -839,7 +839,7 @@ class OC_Helper { * @return int number of bytes representing */ public static function maxUploadFilesize($dir, $freeSpace = null) { - if (is_null($freeSpace)){ + if (is_null($freeSpace) || $freeSpace < 0){ $freeSpace = self::freeSpace($dir); } return min($freeSpace, self::uploadLimit()); From 895fc0fa26ee5a1e9dbadb09736dbb56cad0c6e8 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 6 Mar 2014 14:23:27 +0100 Subject: [PATCH 091/333] Fix check if fileinfo is valid --- lib/private/files/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 975b5d0009..f06c2fcd66 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -843,7 +843,7 @@ class View { $data = $cache->get($internalPath); } - if ($data and $data['fileid']) { + if ($data and isset($data['fileid'])) { if ($includeMountPoints and $data['mimetype'] === 'httpd/unix-directory') { //add the sizes of other mountpoints to the folder $mountPoints = Filesystem::getMountPoints($path); From 256dca935bbd683515912f555cee90f8cc43b341 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 6 Mar 2014 15:10:32 +0100 Subject: [PATCH 092/333] Revert "adding new javascript function OC.generateUrl(url, params)" This reverts commit 8e667d1934d6bd9b4344ac624fdd2846c89abb0a. --- core/js/js.js | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 279a5390a8..77aadd23e0 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -175,30 +175,6 @@ var OC={ appswebroots:(typeof oc_appswebroots !== 'undefined') ? oc_appswebroots:false, currentUser:(typeof oc_current_user!=='undefined')?oc_current_user:false, coreApps:['', 'admin','log','search','settings','core','3rdparty'], - - /** - * Generates the absolute url for the given relative url, which can contain parameters. - * - * @returns {string} - * @param {string} url - * @param params - */ - generateUrl: function(url, params) { - var _build = function (text, vars) { - return text.replace(/{([^{}]*)}/g, - function (a, b) { - var r = vars[b]; - return typeof r === 'string' || typeof r === 'number' ? r : a; - } - ); - }; - if (url.charAt(0) !== '/') { - url = '/' + url; - - } - return OC.webroot + '/index.php' + _build(url, params); - }, - /** * get an absolute url to a file in an appen * @param app the id of the app the file belongs to From e08dbf80dc1e9e571a4f827acca7715703955366 Mon Sep 17 00:00:00 2001 From: ideaship Date: Thu, 6 Mar 2014 16:03:00 +0100 Subject: [PATCH 093/333] fix: use print_escaped for radio button "checked" use of p() results in escaped HTML code: checked="checked" where it should be: checked="checked" --- core/templates/installation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/installation.php b/core/templates/installation.php index e2d296a713..709207e797 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -95,7 +95,7 @@ /> + /> From 242cbb802a980f47f4f5038154069768327e1487 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Thu, 6 Mar 2014 18:19:58 +0300 Subject: [PATCH 094/333] Reset time of last update feed polling --- lib/private/updater.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/private/updater.php b/lib/private/updater.php index f05d5038b7..94f7ea34cb 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -134,6 +134,8 @@ class Updater extends BasicEmitter { $repair = new Repair(); $repair->run(); + //Invalidate update feed + \OC_Appconfig::setValue('core', 'lastupdatedat', 0); \OC_Config::setValue('maintenance', false); $this->emit('\OC\Updater', 'maintenanceEnd'); } From ceb5b918d750f39ddb3d8a4575be9bf42096cbc1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 6 Mar 2014 23:56:11 +0100 Subject: [PATCH 095/333] Add \OC:: to URLGenerator::getAbsoluteURL() --- lib/private/urlgenerator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index 60da34f2d6..aa06d6fca1 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -148,6 +148,7 @@ class URLGenerator implements IURLGenerator { */ public function getAbsoluteURL($url) { $separator = $url[0] === '/' ? '' : '/'; - return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost() . $separator . $url; + + return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost(). \OC::$WEBROOT . $separator . $url; } } From ada8d4e0c91a885ca21db6b2bf4ca5d5c932e51b Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 7 Mar 2014 02:44:34 +0100 Subject: [PATCH 096/333] Fix unit tests --- tests/lib/urlgenerator.php | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/tests/lib/urlgenerator.php b/tests/lib/urlgenerator.php index 875a7f0658..8e605d88f3 100644 --- a/tests/lib/urlgenerator.php +++ b/tests/lib/urlgenerator.php @@ -12,17 +12,32 @@ class Test_Urlgenerator extends PHPUnit_Framework_TestCase { /** * @small * @brief test absolute URL construction - * @dataProvider provideURLs + * @dataProvider provideDocRootURLs */ - function testGetAbsoluteURL($url, $expectedResult) { + function testGetAbsoluteURLDocRoot($url, $expectedResult) { + \OC::$WEBROOT = ''; $urlGenerator = new \OC\URLGenerator(null); $result = $urlGenerator->getAbsoluteURL($url); $this->assertEquals($expectedResult, $result); } - public function provideURLs() { + /** + * @small + * @brief test absolute URL construction + * @dataProvider provideSubDirURLs + */ + function testGetAbsoluteURLSubDir($url, $expectedResult) { + + \OC::$WEBROOT = '/owncloud'; + $urlGenerator = new \OC\URLGenerator(null); + $result = $urlGenerator->getAbsoluteURL($url); + + $this->assertEquals($expectedResult, $result); + } + + public function provideDocRootURLs() { return array( array("index.php", "http://localhost/index.php"), array("/index.php", "http://localhost/index.php"), @@ -30,5 +45,14 @@ class Test_Urlgenerator extends PHPUnit_Framework_TestCase { array("apps/index.php", "http://localhost/apps/index.php"), ); } + + public function provideSubDirURLs() { + return array( + array("index.php", "http://localhost/owncloud/index.php"), + array("/index.php", "http://localhost/owncloud/index.php"), + array("/apps/index.php", "http://localhost/owncloud/apps/index.php"), + array("apps/index.php", "http://localhost/owncloud/apps/index.php"), + ); + } } From 7f24d42ca5f70e5ed48cf800f0a8f134b9445d2e Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 7 Mar 2014 11:00:22 +0100 Subject: [PATCH 097/333] Propagate unencrypted_size up to the file cache root --- lib/private/files/cache/homecache.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/private/files/cache/homecache.php b/lib/private/files/cache/homecache.php index a7c310a378..2af5b03c6e 100644 --- a/lib/private/files/cache/homecache.php +++ b/lib/private/files/cache/homecache.php @@ -24,15 +24,20 @@ class HomeCache extends Cache { $entry = $this->get($path); if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { $id = $entry['fileid']; - $sql = 'SELECT SUM(`size`) FROM `*PREFIX*filecache` ' . + $sql = 'SELECT SUM(`size`) AS f1, ' . + 'SUM(`unencrypted_size`) AS f2 FROM `*PREFIX*filecache` ' . 'WHERE `parent` = ? AND `storage` = ? AND `size` >= 0'; $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); if ($row = $result->fetchRow()) { - list($sum) = array_values($row); + list($sum, $unencryptedSum) = array_values($row); $totalSize = (int)$sum; + $unencryptedSize = (int)$unencryptedSum; if ($entry['size'] !== $totalSize) { $this->update($id, array('size' => $totalSize)); } + if ($entry['unencrypted_size'] !== $unencryptedSize) { + $this->update($id, array('unencrypted_size' => $unencryptedSize)); + } } } return $totalSize; From 65f52fee4f333cc31591a265c2d5b4c0ed0d7016 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 7 Mar 2014 14:52:44 +0100 Subject: [PATCH 098/333] Fix FileInfo->getType errors --- lib/private/files/fileinfo.php | 9 ++++++++- lib/public/files/fileinfo.php | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/private/files/fileinfo.php b/lib/private/files/fileinfo.php index 2dbdd80a26..a9e64fe153 100644 --- a/lib/private/files/fileinfo.php +++ b/lib/private/files/fileinfo.php @@ -53,6 +53,9 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { } public function offsetGet($offset) { + if ($offset === 'type') { + return $this->getType(); + } return $this->data[$offset]; } @@ -144,7 +147,11 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { * @return \OCP\Files\FileInfo::TYPE_FILE | \OCP\Files\FileInfo::TYPE_FOLDER */ public function getType() { - return $this->data['type']; + if (isset($this->data['type'])) { + return $this->data['type']; + } else { + return $this->getMimetype() === 'httpd/unix-directory' ? self::TYPE_FOLDER : self::TYPE_FILE; + } } public function getData(){ diff --git a/lib/public/files/fileinfo.php b/lib/public/files/fileinfo.php index 68ce45d3fa..37162e0933 100644 --- a/lib/public/files/fileinfo.php +++ b/lib/public/files/fileinfo.php @@ -9,7 +9,7 @@ namespace OCP\Files; interface FileInfo { const TYPE_FILE = 'file'; - const TYPE_FOLDER = 'folder'; + const TYPE_FOLDER = 'dir'; /** * Get the Etag of the file or folder From 48d63a6278078d164774fd182f03ebba5e3c77ad Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 7 Mar 2014 11:25:29 +0100 Subject: [PATCH 099/333] Return unencrypted_size of folder when queried This fixes the "used space" to be based on the unencrypted size, not encrypted size, to be consistent with how quota/space is handled when encryption is enabled --- apps/files_encryption/lib/proxy.php | 7 +++++++ apps/files_encryption/tests/proxy.php | 20 ++++++++++++++++++++ lib/private/files/storage/wrapper/quota.php | 5 +++++ tests/lib/files/storage/wrapper/quota.php | 16 ++++++++++++++++ 4 files changed, 48 insertions(+) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index a2d42c22c1..b7e1599c1f 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -340,6 +340,13 @@ class Proxy extends \OC_FileProxy { // if path is a folder do nothing if ($view->is_dir($path)) { + $proxyState = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; + $fileInfo = $view->getFileInfo($path); + \OC_FileProxy::$enabled = $proxyState; + if ($fileInfo['unencrypted_size'] > 0) { + return $fileInfo['unencrypted_size']; + } return $size; } diff --git a/apps/files_encryption/tests/proxy.php b/apps/files_encryption/tests/proxy.php index 51cc0b795e..647ee955eb 100644 --- a/apps/files_encryption/tests/proxy.php +++ b/apps/files_encryption/tests/proxy.php @@ -112,4 +112,24 @@ class Test_Encryption_Proxy extends \PHPUnit_Framework_TestCase { } + function testPostFileSizeWithDirectory() { + + $this->view->file_put_contents($this->filename, $this->data); + + \OC_FileProxy::$enabled = false; + + // get root size, must match the file's unencrypted size + $unencryptedSize = $this->view->filesize(''); + + \OC_FileProxy::$enabled = true; + + $encryptedSize = $this->view->filesize(''); + + $this->assertTrue($encryptedSize !== $unencryptedSize); + + // cleanup + $this->view->unlink($this->filename); + + } + } diff --git a/lib/private/files/storage/wrapper/quota.php b/lib/private/files/storage/wrapper/quota.php index 26c952e694..ea61273547 100644 --- a/lib/private/files/storage/wrapper/quota.php +++ b/lib/private/files/storage/wrapper/quota.php @@ -36,6 +36,11 @@ class Quota extends Wrapper { $cache = $this->getCache(); $data = $cache->get($path); if (is_array($data) and isset($data['size'])) { + if (isset($data['unencrypted_size']) + && $data['unencrypted_size'] > 0 + ) { + return $data['unencrypted_size']; + } return $data['size']; } else { return \OC\Files\SPACE_NOT_COMPUTED; diff --git a/tests/lib/files/storage/wrapper/quota.php b/tests/lib/files/storage/wrapper/quota.php index 43eae78415..bd2c69a739 100644 --- a/tests/lib/files/storage/wrapper/quota.php +++ b/tests/lib/files/storage/wrapper/quota.php @@ -53,6 +53,22 @@ class Quota extends \Test\Files\Storage\Storage { $this->assertEquals(9, $instance->free_space('')); } + public function testFreeSpaceWithUsedSpace() { + $instance = $this->getLimitedStorage(9); + $instance->getCache()->put( + '', array('size' => 3, 'unencrypted_size' => 0) + ); + $this->assertEquals(6, $instance->free_space('')); + } + + public function testFreeSpaceWithUsedSpaceAndEncryption() { + $instance = $this->getLimitedStorage(9); + $instance->getCache()->put( + '', array('size' => 7, 'unencrypted_size' => 3) + ); + $this->assertEquals(6, $instance->free_space('')); + } + public function testFWriteNotEnoughSpace() { $instance = $this->getLimitedStorage(9); $stream = $instance->fopen('foo', 'w+'); From 5671aac5ca3375c4a5398ea2b7bf430ff75279d7 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 7 Mar 2014 15:03:35 +0100 Subject: [PATCH 100/333] Fixed log warning when deleting a single file --- apps/files/ajax/delete.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index 69f859daa9..99f4918838 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -9,7 +9,7 @@ OCP\JSON::callCheck(); // Get data $dir = stripslashes($_POST["dir"]); $files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"]; -$allFiles = isset($_POST["allfiles"]) ? $_POST["allfiles"] : $_POST["allfiles"]; +$allFiles = isset($_POST["allfiles"]) ? $_POST["allfiles"] : false; if ($allFiles === 'true') { $allFiles = true; } From 51165a1a04a8a97a5d7ac684b0588a86c01a0018 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 7 Mar 2014 15:16:35 +0100 Subject: [PATCH 101/333] Check if value exists before returning --- lib/private/files/fileinfo.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/private/files/fileinfo.php b/lib/private/files/fileinfo.php index a9e64fe153..d6940f50bf 100644 --- a/lib/private/files/fileinfo.php +++ b/lib/private/files/fileinfo.php @@ -55,8 +55,11 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { public function offsetGet($offset) { if ($offset === 'type') { return $this->getType(); + } elseif (isset($this->data[$offset])) { + return $this->data[$offset]; + } else { + return null; } - return $this->data[$offset]; } /** @@ -154,7 +157,7 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { } } - public function getData(){ + public function getData() { return $this->data; } From e7d571511408f44c6caffe31e13289d245590954 Mon Sep 17 00:00:00 2001 From: IchEben Date: Fri, 7 Mar 2014 17:45:24 +0100 Subject: [PATCH 102/333] only initialise upload dropZone if public upload is allowed --- apps/files/js/file-upload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index b7b8f6fdeb..ea4061c9b0 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -180,7 +180,7 @@ OC.Upload = { }, init: function() { - if ( $('#file_upload_start').exists() ) { + if ( $('#file_upload_start').exists() && $('#file_upload_start').is(':visible')) { var file_upload_param = { dropZone: $('#content'), // restrict dropZone to content div From 0d90b90d9402cbcab4037efc913728cdeb4eadbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 7 Mar 2014 20:00:34 +0100 Subject: [PATCH 103/333] we first shall check if the current session is valid - otherwise the session-id will be regenerated on login via basic auth --- lib/private/api.php | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/lib/private/api.php b/lib/private/api.php index 3f96196e6d..e9d31242e3 100644 --- a/lib/private/api.php +++ b/lib/private/api.php @@ -270,7 +270,19 @@ class OC_API { * @return string|false (username, or false on failure) */ private static function loginUser(){ - // basic auth + + // reuse existing login + $loggedIn = OC_User::isLoggedIn(); + $ocsApiRequest = isset($_SERVER['HTTP_OCS_APIREQUEST']) ? $_SERVER['HTTP_OCS_APIREQUEST'] === 'true' : false; + if ($loggedIn === true && $ocsApiRequest) { + + // initialize the user's filesystem + \OC_Util::setUpFS(\OC_User::getUser()); + + return OC_User::getUser(); + } + + // basic auth $authUser = isset($_SERVER['PHP_AUTH_USER']) ? $_SERVER['PHP_AUTH_USER'] : ''; $authPw = isset($_SERVER['PHP_AUTH_PW']) ? $_SERVER['PHP_AUTH_PW'] : ''; $return = OC_User::login($authUser, $authPw); @@ -283,17 +295,6 @@ class OC_API { return $authUser; } - // reuse existing login - $loggedIn = OC_User::isLoggedIn(); - $ocsApiRequest = isset($_SERVER['HTTP_OCS_APIREQUEST']) ? $_SERVER['HTTP_OCS_APIREQUEST'] === 'true' : false; - if ($loggedIn === true && $ocsApiRequest) { - - // initialize the user's filesystem - \OC_Util::setUpFS(\OC_User::getUser()); - - return OC_User::getUser(); - } - return false; } From 25f523680ac1ed46470ea40277e578fd35ec02a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 7 Mar 2014 20:06:06 +0100 Subject: [PATCH 104/333] fixing ident --- lib/private/api.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/private/api.php b/lib/private/api.php index e9d31242e3..1537cc11dd 100644 --- a/lib/private/api.php +++ b/lib/private/api.php @@ -271,18 +271,18 @@ class OC_API { */ private static function loginUser(){ - // reuse existing login - $loggedIn = OC_User::isLoggedIn(); - $ocsApiRequest = isset($_SERVER['HTTP_OCS_APIREQUEST']) ? $_SERVER['HTTP_OCS_APIREQUEST'] === 'true' : false; - if ($loggedIn === true && $ocsApiRequest) { + // reuse existing login + $loggedIn = OC_User::isLoggedIn(); + $ocsApiRequest = isset($_SERVER['HTTP_OCS_APIREQUEST']) ? $_SERVER['HTTP_OCS_APIREQUEST'] === 'true' : false; + if ($loggedIn === true && $ocsApiRequest) { - // initialize the user's filesystem - \OC_Util::setUpFS(\OC_User::getUser()); + // initialize the user's filesystem + \OC_Util::setUpFS(\OC_User::getUser()); - return OC_User::getUser(); - } + return OC_User::getUser(); + } - // basic auth + // basic auth $authUser = isset($_SERVER['PHP_AUTH_USER']) ? $_SERVER['PHP_AUTH_USER'] : ''; $authPw = isset($_SERVER['PHP_AUTH_PW']) ? $_SERVER['PHP_AUTH_PW'] : ''; $return = OC_User::login($authUser, $authPw); From 9548670da76b15ca4e44df63304a11364dde44a0 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 10 Mar 2014 11:16:09 +0100 Subject: [PATCH 105/333] we need the file_source to delete a share successfully --- apps/files_sharing/lib/api.php | 13 ++++++------ apps/files_sharing/tests/api.php | 34 ++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 7 deletions(-) diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index 0ba58aa896..dc95a791d2 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -68,7 +68,7 @@ class Api { public static function getShare($params) { $s = self::getShareFromId($params['id']); - $params['itemSource'] = $s['item_source']; + $params['itemSource'] = $s['file_source']; $params['itemType'] = $s['item_type']; $params['specificShare'] = true; @@ -281,9 +281,8 @@ class Api { public static function updateShare($params) { $share = self::getShareFromId($params['id']); - $itemSource = isset($share['item_source']) ? $share['item_source'] : null; - if($itemSource === null) { + if(!isset($share['file_source'])) { return new \OC_OCS_Result(null, 404, "wrong share Id, share doesn't exist."); } @@ -431,10 +430,10 @@ class Api { public static function deleteShare($params) { $share = self::getShareFromId($params['id']); - $itemSource = isset($share['item_source']) ? $share['item_source'] : null; + $fileSource = isset($share['file_source']) ? $share['file_source'] : null; $itemType = isset($share['item_type']) ? $share['item_type'] : null;; - if($itemSource === null) { + if($fileSource === null) { return new \OC_OCS_Result(null, 404, "wrong share ID, share doesn't exist."); } @@ -448,7 +447,7 @@ class Api { try { $return = \OCP\Share::unshare( $itemType, - $itemSource, + $fileSource, $shareType, $shareWith); } catch (\Exception $e) { @@ -504,7 +503,7 @@ class Api { * @return array with: item_source, share_type, share_with, item_type, permissions */ private static function getShareFromId($shareID) { - $sql = 'SELECT `item_source`, `share_type`, `share_with`, `item_type`, `permissions` FROM `*PREFIX*share` WHERE `id` = ?'; + $sql = 'SELECT `file_source`, `item_source`, `share_type`, `share_with`, `item_type`, `permissions` FROM `*PREFIX*share` WHERE `id` = ?'; $args = array($shareID); $query = \OCP\DB::prepare($sql); $result = $query->execute($args); diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 0d3d9b98b2..073e2dd8c5 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -559,4 +559,38 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(empty($itemsAfterDelete)); } + + /** + * @brief test unshare of a reshared file + */ + function testDeleteReshare() { + + // user 1 shares a folder with user2 + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $fileInfo1 = $this->view->getFileInfo($this->folder); + $fileInfo2 = $this->view->getFileInfo($this->folder.'/'.$this->filename); + + $result1 = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + $this->assertTrue($result1); + + // user2 shares a file from the folder as link + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + $result2 = \OCP\Share::shareItem('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); + + $this->assertTrue(is_string($result2)); + + // test if we can unshare the link again + $items = \OCP\Share::getItemShared('file', null); + $this->assertEquals(1, count($items)); + + $item = reset($items); + $result3 = Share\Api::deleteShare(array('id' => $item['id'])); + + $this->assertTrue($result3->succeeded()); + + } } From 8ab7d18a6a2b023527d2eef63099e2834c46ec97 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 10 Mar 2014 14:04:58 +0100 Subject: [PATCH 106/333] Move the router classes to a namespace and expose it with a public interface --- apps/files_sharing/appinfo/routes.php | 2 +- lib/base.php | 14 +-- .../appframework/routing/routeconfig.php | 7 +- lib/private/{ => route}/route.php | 12 +- lib/private/{ => route}/router.php | 105 ++++++++++++------ lib/private/server.php | 15 +++ lib/public/appframework/app.php | 2 +- lib/public/iservercontainer.php | 6 + lib/public/route/iroute.php | 79 +++++++++++++ lib/public/route/irouter.php | 71 ++++++++++++ .../lib/appframework/routing/RoutingTest.php | 8 +- 11 files changed, 266 insertions(+), 55 deletions(-) rename lib/private/{ => route}/route.php (90%) rename lib/private/{ => route}/router.php (62%) create mode 100644 lib/public/route/iroute.php create mode 100644 lib/public/route/irouter.php diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index 9417a6eeb8..06e454b7d7 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -1,5 +1,5 @@ create('core_ajax_public_preview', '/publicpreview.png')->action( function() { require_once __DIR__ . '/../ajax/publicpreview.php'; diff --git a/lib/base.php b/lib/base.php index 86ee534982..d49dd95831 100644 --- a/lib/base.php +++ b/lib/base.php @@ -73,11 +73,6 @@ class OC { */ public static $CLI = false; - /** - * @var OC_Router - */ - protected static $router = null; - /** * @var \OC\Session\Session */ @@ -388,15 +383,10 @@ class OC { } /** - * @return OC_Router + * @return \OCP\Route\IRouter */ public static function getRouter() { - if (!isset(OC::$router)) { - OC::$router = new OC_Router(); - OC::$router->loadRoutes(); - } - - return OC::$router; + return self::$server->getRouter(); } diff --git a/lib/private/appframework/routing/routeconfig.php b/lib/private/appframework/routing/routeconfig.php index 716358444a..35bee75cc4 100644 --- a/lib/private/appframework/routing/routeconfig.php +++ b/lib/private/appframework/routing/routeconfig.php @@ -23,6 +23,7 @@ namespace OC\AppFramework\routing; use OC\AppFramework\DependencyInjection\DIContainer; +use OCP\Route\IRouter; /** * Class RouteConfig @@ -36,10 +37,10 @@ class RouteConfig { /** * @param \OC\AppFramework\DependencyInjection\DIContainer $container - * @param \OC_Router $router + * @param \OCP\Route\IRouter $router * @internal param $appName */ - public function __construct(DIContainer $container, \OC_Router $router, $routes) { + public function __construct(DIContainer $container, IRouter $router, $routes) { $this->routes = $routes; $this->container = $container; $this->router = $router; @@ -47,7 +48,7 @@ class RouteConfig { } /** - * The routes and resource will be registered to the \OC_Router + * The routes and resource will be registered to the \OCP\Route\IRouter */ public function register() { diff --git a/lib/private/route.php b/lib/private/route/route.php similarity index 90% rename from lib/private/route.php rename to lib/private/route/route.php index fb7da456b6..6ade9ec15f 100644 --- a/lib/private/route.php +++ b/lib/private/route/route.php @@ -6,13 +6,17 @@ * See the COPYING-README file. */ -use Symfony\Component\Routing\Route; +namespace OC\Route; -class OC_Route extends Route { +use OCP\Route\IRoute; +use Symfony\Component\Routing\Route as SymfonyRoute; + +class Route extends SymfonyRoute implements IRoute { /** * Specify the method when this route is to be used * * @param string $method HTTP method (uppercase) + * @return \OC\Route\Route */ public function method($method) { $this->setRequirement('_method', strtoupper($method)); @@ -63,6 +67,7 @@ class OC_Route extends Route { * Defaults to use for this route * * @param array $defaults The defaults + * @return \OC\Route\Route */ public function defaults($defaults) { $action = $this->getDefault('action'); @@ -78,6 +83,7 @@ class OC_Route extends Route { * Requirements for this route * * @param array $requirements The requirements + * @return \OC\Route\Route */ public function requirements($requirements) { $method = $this->getRequirement('_method'); @@ -93,8 +99,10 @@ class OC_Route extends Route { /** * The action to execute when this route matches + * * @param string|callable $class the class or a callable * @param string $function the function to use with the class + * @return \OC\Route\Route * * This function is called with $class set to a callable or * to the class with $function diff --git a/lib/private/router.php b/lib/private/route/router.php similarity index 62% rename from lib/private/router.php rename to lib/private/route/router.php index 918e3b1320..60ba587840 100644 --- a/lib/private/router.php +++ b/lib/private/route/router.php @@ -6,68 +6,103 @@ * See the COPYING-README file. */ +namespace OC\Route; + +use OCP\Route\IRouter; use Symfony\Component\Routing\Matcher\UrlMatcher; use Symfony\Component\Routing\Generator\UrlGenerator; use Symfony\Component\Routing\RequestContext; use Symfony\Component\Routing\RouteCollection; -//use Symfony\Component\Routing\Route; -class OC_Router { +class Router implements IRouter { + /** + * @var \Symfony\Component\Routing\RouteCollection[] + */ protected $collections = array(); + + /** + * @var \Symfony\Component\Routing\RouteCollection + */ protected $collection = null; + + /** + * @var \Symfony\Component\Routing\RouteCollection + */ protected $root = null; + /** + * @var \Symfony\Component\Routing\Generator\UrlGenerator + */ protected $generator = null; - protected $routing_files; - protected $cache_key; + + /** + * @var string[] + */ + protected $routingFiles; + + /** + * @var string + */ + protected $cacheKey; + + protected $loaded = false; public function __construct() { - $baseUrl = OC_Helper::linkTo('', 'index.php'); - if ( !OC::$CLI) { + $baseUrl = \OC_Helper::linkTo('', 'index.php'); + if (!\OC::$CLI) { $method = $_SERVER['REQUEST_METHOD']; - }else{ + } else { $method = 'GET'; } - $host = OC_Request::serverHost(); - $schema = OC_Request::serverProtocol(); + $host = \OC_Request::serverHost(); + $schema = \OC_Request::serverProtocol(); $this->context = new RequestContext($baseUrl, $method, $host, $schema); // TODO cache $this->root = $this->getCollection('root'); } + /** + * Get the files to load the routes from + * + * @return string[] + */ public function getRoutingFiles() { - if (!isset($this->routing_files)) { - $this->routing_files = array(); - foreach(OC_APP::getEnabledApps() as $app) { - $file = OC_App::getAppPath($app).'/appinfo/routes.php'; - if(file_exists($file)) { - $this->routing_files[$app] = $file; + if (!isset($this->routingFiles)) { + $this->routingFiles = array(); + foreach (\OC_APP::getEnabledApps() as $app) { + $file = \OC_App::getAppPath($app) . '/appinfo/routes.php'; + if (file_exists($file)) { + $this->routingFiles[$app] = $file; } } } - return $this->routing_files; + return $this->routingFiles; } public function getCacheKey() { - if (!isset($this->cache_key)) { + if (!isset($this->cacheKey)) { $files = $this->getRoutingFiles(); $files[] = 'settings/routes.php'; $files[] = 'core/routes.php'; $files[] = 'ocs/routes.php'; - $this->cache_key = OC_Cache::generateCacheKeyFromFiles($files); + $this->cacheKey = \OC_Cache::generateCacheKeyFromFiles($files); } - return $this->cache_key; + return $this->cacheKey; } /** * loads the api routes */ public function loadRoutes() { - foreach($this->getRoutingFiles() as $app => $file) { + if ($this->loaded) { + return; + } + $this->loaded = true; + foreach ($this->getRoutingFiles() as $app => $file) { $this->useCollection($app); require_once $file; $collection = $this->getCollection($app); - $collection->addPrefix('/apps/'.$app); + $collection->addPrefix('/apps/' . $app); $this->root->addCollection($collection); } $this->useCollection('root'); @@ -81,6 +116,10 @@ class OC_Router { $this->root->addCollection($collection); } + /** + * @param string $name + * @return \Symfony\Component\Routing\RouteCollection + */ protected function getCollection($name) { if (!isset($this->collections[$name])) { $this->collections[$name] = new RouteCollection(); @@ -91,22 +130,23 @@ class OC_Router { /** * Sets the collection to use for adding routes * - * @param string $name Name of the colletion to use. + * @param string $name Name of the collection to use. */ public function useCollection($name) { $this->collection = $this->getCollection($name); } /** - * Create a OC_Route. + * Create a \OC\Route\Route. * * @param string $name Name of the route to create. * @param string $pattern The pattern to match - * @param array $defaults An array of default parameter values - * @param array $requirements An array of requirements for parameters (regexes) + * @param array $defaults An array of default parameter values + * @param array $requirements An array of requirements for parameters (regexes) + * @return \OC\Route\Route */ public function create($name, $pattern, array $defaults = array(), array $requirements = array()) { - $route = new OC_Route($pattern, $defaults, $requirements); + $route = new Route($pattern, $defaults, $requirements); $this->collection->add($name, $route); return $route; } @@ -115,6 +155,7 @@ class OC_Router { * Find the route matching $url. * * @param string $url The url to find + * @throws \Exception */ public function match($url) { $matcher = new UrlMatcher($this->root, $this->context); @@ -123,14 +164,14 @@ class OC_Router { $action = $parameters['action']; if (!is_callable($action)) { var_dump($action); - throw new Exception('not a callable action'); + throw new \Exception('not a callable action'); } unset($parameters['action']); call_user_func($action, $parameters); } elseif (isset($parameters['file'])) { include $parameters['file']; } else { - throw new Exception('no action available'); + throw new \Exception('no action available'); } } @@ -138,8 +179,7 @@ class OC_Router { * Get the url generator * */ - public function getGenerator() - { + public function getGenerator() { if (null !== $this->generator) { return $this->generator; } @@ -152,9 +192,10 @@ class OC_Router { * * @param string $name Name of the route to use. * @param array $parameters Parameters for the route + * @param bool $absolute + * @return string */ - public function generate($name, $parameters = array(), $absolute = false) - { + public function generate($name, $parameters = array(), $absolute = false) { return $this->getGenerator()->generate($name, $parameters, $absolute); } diff --git a/lib/private/server.php b/lib/private/server.php index 7696fc207f..8c9ea39c56 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -158,6 +158,10 @@ class Server extends SimpleContainer implements IServerContainer { $config = $c->getConfig(); return new \OC\BackgroundJob\JobList($c->getDatabaseConnection(), $config); }); + $this->registerService('Router', function ($c){ + $router = new \OC\Route\Router(); + return $router; + }); } /** @@ -364,4 +368,15 @@ class Server extends SimpleContainer implements IServerContainer { function getJobList(){ return $this->query('JobList'); } + + /** + * Returns a router for generating and matching urls + * + * @return \OCP\Route\IRouter + */ + function getRouter(){ + $router = $this->query('Router'); + $router->loadRoutes(); + return $router; + } } diff --git a/lib/public/appframework/app.php b/lib/public/appframework/app.php index 90150245c4..2161232787 100644 --- a/lib/public/appframework/app.php +++ b/lib/public/appframework/app.php @@ -67,7 +67,7 @@ class App { * $a = new TasksApp(); * $a->registerRoutes($this, $routes); * - * @param \OC_Router $router + * @param \OCP\Route\IRouter $router * @param array $routes */ public function registerRoutes($router, $routes) { diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 5fb51f9ecd..dc3aff663d 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -190,4 +190,10 @@ interface IServerContainer { */ function getJobList(); + /** + * Returns a router for generating and matching urls + * + * @return \OCP\Route\IRouter + */ + function getRouter(); } diff --git a/lib/public/route/iroute.php b/lib/public/route/iroute.php new file mode 100644 index 0000000000..66fdb84182 --- /dev/null +++ b/lib/public/route/iroute.php @@ -0,0 +1,79 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ +namespace OCP\Route; + +interface IRoute { + /** + * Specify PATCH as the method to use with this route + */ + public function patch(); + + /** + * Specify the method when this route is to be used + * + * @param string $method HTTP method (uppercase) + * @return \OCP\Route\IRoute + */ + public function method($method); + + /** + * The action to execute when this route matches, includes a file like + * it is called directly + * + * @param $file + */ + public function actionInclude($file); + + /** + * Specify GET as the method to use with this route + */ + public function get(); + + /** + * Specify POST as the method to use with this route + */ + public function post(); + + /** + * Specify DELETE as the method to use with this route + */ + public function delete(); + + /** + * The action to execute when this route matches + * + * @param string|callable $class the class or a callable + * @param string $function the function to use with the class + * @return \OCP\Route\IRoute + * + * This function is called with $class set to a callable or + * to the class with $function + */ + public function action($class, $function = null); + + /** + * Defaults to use for this route + * + * @param array $defaults The defaults + * @return \OCP\Route\IRoute + */ + public function defaults($defaults); + + /** + * Requirements for this route + * + * @param array $requirements The requirements + * @return \OCP\Route\IRoute + */ + public function requirements($requirements); + + /** + * Specify PUT as the method to use with this route + */ + public function put(); +} diff --git a/lib/public/route/irouter.php b/lib/public/route/irouter.php new file mode 100644 index 0000000000..deb01bca9b --- /dev/null +++ b/lib/public/route/irouter.php @@ -0,0 +1,71 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OCP\Route; + +interface IRouter { + + public function __construct(); + + /** + * Get the files to load the routes from + * + * @return string[] + */ + public function getRoutingFiles(); + + public function getCacheKey(); + + /** + * loads the api routes + */ + public function loadRoutes(); + + /** + * Sets the collection to use for adding routes + * + * @param string $name Name of the collection to use. + */ + public function useCollection($name); + + /** + * Create a \OCP\Route\IRoute. + * + * @param string $name Name of the route to create. + * @param string $pattern The pattern to match + * @param array $defaults An array of default parameter values + * @param array $requirements An array of requirements for parameters (regexes) + * @return \OCP\Route\IRoute + */ + public function create($name, $pattern, array $defaults = array(), array $requirements = array()); + + /** + * Find the route matching $url. + * + * @param string $url The url to find + * @throws \Exception + */ + public function match($url); + + /** + * Get the url generator + * + */ + public function getGenerator(); + + /** + * Generate url based on $name and $parameters + * + * @param string $name Name of the route to use. + * @param array $parameters Parameters for the route + * @param bool $absolute + * @return string + */ + public function generate($name, $parameters = array(), $absolute = false); + +} diff --git a/tests/lib/appframework/routing/RoutingTest.php b/tests/lib/appframework/routing/RoutingTest.php index d0244cf251..9f2675bf0b 100644 --- a/tests/lib/appframework/routing/RoutingTest.php +++ b/tests/lib/appframework/routing/RoutingTest.php @@ -46,7 +46,7 @@ class RouteConfigTest extends \PHPUnit_Framework_TestCase )); // router mock - $router = $this->getMock("\OC_Router", array('create')); + $router = $this->getMock("\OC\Route\Router", array('create')); // load route configuration $container = new DIContainer('app1'); @@ -91,7 +91,7 @@ class RouteConfigTest extends \PHPUnit_Framework_TestCase $route = $this->mockRoute($verb, $controllerName, $actionName); // router mock - $router = $this->getMock("\OC_Router", array('create')); + $router = $this->getMock("\OC\Route\Router", array('create')); // we expect create to be called once: $router @@ -116,7 +116,7 @@ class RouteConfigTest extends \PHPUnit_Framework_TestCase private function assertResource($yaml, $resourceName, $url, $controllerName, $paramName) { // router mock - $router = $this->getMock("\OC_Router", array('create')); + $router = $this->getMock("\OC\Route\Router", array('create')); // route mocks $indexRoute = $this->mockRoute('GET', $controllerName, 'index'); @@ -174,7 +174,7 @@ class RouteConfigTest extends \PHPUnit_Framework_TestCase private function mockRoute($verb, $controllerName, $actionName) { $container = new DIContainer('app1'); - $route = $this->getMock("\OC_Route", array('method', 'action'), array(), '', false); + $route = $this->getMock("\OC\Route\Route", array('method', 'action'), array(), '', false); $route ->expects($this->exactly(1)) ->method('method') From 26793e1f943012937776324698855108dd5352ba Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 10 Mar 2014 14:06:47 +0100 Subject: [PATCH 107/333] switch OC::getRouter usages to OC::$server->getRouter --- lib/base.php | 10 +--------- lib/private/api.php | 4 ++-- lib/private/urlgenerator.php | 2 +- ocs/v1.php | 2 +- 4 files changed, 5 insertions(+), 13 deletions(-) diff --git a/lib/base.php b/lib/base.php index d49dd95831..4bc6c4329c 100644 --- a/lib/base.php +++ b/lib/base.php @@ -382,14 +382,6 @@ class OC { return OC_Config::getValue('session_lifetime', 60 * 60 * 24); } - /** - * @return \OCP\Route\IRouter - */ - public static function getRouter() { - return self::$server->getRouter(); - } - - public static function loadAppClassPaths() { foreach (OC_APP::getEnabledApps() as $app) { $file = OC_App::getAppPath($app) . '/appinfo/classpath.php'; @@ -714,7 +706,7 @@ class OC { OC_App::loadApps(); } self::checkSingleUserMode(); - OC::getRouter()->match(OC_Request::getRawPathInfo()); + OC::$server->getRouter()->match(OC_Request::getRawPathInfo()); return; } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { //header('HTTP/1.0 404 Not Found'); diff --git a/lib/private/api.php b/lib/private/api.php index 3f96196e6d..cde24f78a5 100644 --- a/lib/private/api.php +++ b/lib/private/api.php @@ -65,8 +65,8 @@ class OC_API { $name = strtolower($method).$url; $name = str_replace(array('/', '{', '}'), '_', $name); if(!isset(self::$actions[$name])) { - OC::getRouter()->useCollection('ocs'); - OC::getRouter()->create($name, $url) + OC::$server->getRouter()->useCollection('ocs'); + OC::$server->getRouter()->create($name, $url) ->method($method) ->defaults($defaults) ->requirements($requirements) diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index 60da34f2d6..44b46ef670 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -39,7 +39,7 @@ class URLGenerator implements IURLGenerator { * Returns a url to the given app and file. */ public function linkToRoute($route, $parameters = array()) { - $urlLinkTo = \OC::getRouter()->generate($route, $parameters); + $urlLinkTo = \OC::$server->getRouter()->generate($route, $parameters); return $urlLinkTo; } diff --git a/ocs/v1.php b/ocs/v1.php index 1c7d1c8976..3da72e65f1 100644 --- a/ocs/v1.php +++ b/ocs/v1.php @@ -26,7 +26,7 @@ use Symfony\Component\Routing\Exception\ResourceNotFoundException; use Symfony\Component\Routing\Exception\MethodNotAllowedException; try { - OC::getRouter()->match('/ocs'.OC_Request::getRawPathInfo()); + OC::$server->getRouter()->match('/ocs'.OC_Request::getRawPathInfo()); } catch (ResourceNotFoundException $e) { OC_OCS::notFound(); } catch (MethodNotAllowedException $e) { From 73a1ece7533b9d90305e11052947809b91850184 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 10 Mar 2014 14:21:12 +0100 Subject: [PATCH 108/333] adding an explicit close method to class session - write operations (set and remove) being called after close() will throw an exception --- lib/private/session/internal.php | 2 +- lib/private/session/memory.php | 8 ++++++++ lib/private/session/session.php | 6 ++++++ lib/public/isession.php | 5 +++++ 4 files changed, 20 insertions(+), 1 deletion(-) diff --git a/lib/private/session/internal.php b/lib/private/session/internal.php index a7c9e2fdef..d589932d42 100644 --- a/lib/private/session/internal.php +++ b/lib/private/session/internal.php @@ -27,7 +27,7 @@ class Internal extends Memory { public function __destruct() { $_SESSION = array_merge($_SESSION, $this->data); - session_write_close(); + \OC::$session->close(); } /** diff --git a/lib/private/session/memory.php b/lib/private/session/memory.php index 1b9ac45257..1562c2ce03 100644 --- a/lib/private/session/memory.php +++ b/lib/private/session/memory.php @@ -28,6 +28,7 @@ class Memory extends Session { * @param integer $value */ public function set($key, $value) { + $this->validateSession(); $this->data[$key] = $value; } @@ -54,10 +55,17 @@ class Memory extends Session { * @param string $key */ public function remove($key) { + $this->validateSession(); unset($this->data[$key]); } public function clear() { $this->data = array(); } + + private function validateSession() { + if ($this->sessionClosed) { + throw new \Exception('Session has been closed - no further changes to the session as allowed'); + } + } } diff --git a/lib/private/session/session.php b/lib/private/session/session.php index fe160faa26..5c18f3e495 100644 --- a/lib/private/session/session.php +++ b/lib/private/session/session.php @@ -49,4 +49,10 @@ abstract class Session implements \ArrayAccess, ISession { public function offsetUnset($offset) { $this->remove($offset); } + + protected $sessionClosed = false; + + public function close() { + $this->sessionClosed = true; + } } diff --git a/lib/public/isession.php b/lib/public/isession.php index 20da712cda..dc5719625c 100644 --- a/lib/public/isession.php +++ b/lib/public/isession.php @@ -75,4 +75,9 @@ interface ISession { */ public function clear(); + /** + * Close the session and release the lock + */ + public function close(); + } From 58c216d0e8ea4bb6d72ac3382b67a7f4b02f3ed1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 10 Mar 2014 14:39:27 +0100 Subject: [PATCH 109/333] close the session on all file operations --- apps/files/ajax/delete.php | 5 ++--- apps/files/ajax/download.php | 1 + apps/files/ajax/getstoragestats.php | 1 + apps/files/ajax/list.php | 1 + apps/files/ajax/mimeicon.php | 1 + apps/files/ajax/move.php | 4 +--- apps/files/ajax/newfile.php | 3 ++- apps/files/ajax/newfolder.php | 1 + apps/files/ajax/rawlist.php | 1 + apps/files/ajax/rename.php | 1 + apps/files/ajax/scan.php | 2 +- apps/files/ajax/upgrade.php | 2 +- apps/files/ajax/upload.php | 1 + cron.php | 2 +- 14 files changed, 16 insertions(+), 10 deletions(-) diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index 99f4918838..f6aa4f0c90 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -1,10 +1,9 @@ close(); + // Get data $dir = stripslashes($_POST["dir"]); diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 6a34cbe4ef..1f7e42e0d3 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -29,6 +29,7 @@ $RUNTIME_APPTYPES=array('filesystem'); // Check if we are a user OCP\User::checkLoggedIn(); +\OC::$session->close(); $files = $_GET["files"]; $dir = $_GET["dir"]; diff --git a/apps/files/ajax/getstoragestats.php b/apps/files/ajax/getstoragestats.php index dd7c7dc557..17415b6933 100644 --- a/apps/files/ajax/getstoragestats.php +++ b/apps/files/ajax/getstoragestats.php @@ -10,6 +10,7 @@ if (isset($_GET['dir'])) { } OCP\JSON::checkLoggedIn(); +\OC::$session->close(); // send back json OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir))); diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index c8286bc15c..667209599a 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -7,6 +7,7 @@ $RUNTIME_APPTYPES=array('filesystem'); OCP\JSON::checkLoggedIn(); +\OC::$session->close(); // Load the files $dir = isset( $_GET['dir'] ) ? $_GET['dir'] : ''; diff --git a/apps/files/ajax/mimeicon.php b/apps/files/ajax/mimeicon.php index dbb8b60112..6557ff941a 100644 --- a/apps/files/ajax/mimeicon.php +++ b/apps/files/ajax/mimeicon.php @@ -1,3 +1,4 @@ close(); print OC_Helper::mimetypeIcon($_GET['mime']); diff --git a/apps/files/ajax/move.php b/apps/files/ajax/move.php index 04a260265c..0a8dbc24a6 100644 --- a/apps/files/ajax/move.php +++ b/apps/files/ajax/move.php @@ -1,10 +1,8 @@ close(); // Get data $dir = stripslashes($_POST["dir"]); diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 0187b20075..1234cf1139 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -7,7 +7,8 @@ if(!OC_User::isLoggedIn()) { exit; } -session_write_close(); +\OC::$session->close(); + // Get the params $dir = isset( $_REQUEST['dir'] ) ? '/'.trim($_REQUEST['dir'], '/\\') : ''; $filename = isset( $_REQUEST['filename'] ) ? trim($_REQUEST['filename'], '/\\') : ''; diff --git a/apps/files/ajax/newfolder.php b/apps/files/ajax/newfolder.php index b2b4fb27f7..032447460f 100644 --- a/apps/files/ajax/newfolder.php +++ b/apps/files/ajax/newfolder.php @@ -5,6 +5,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); +\OC::$session->close(); // Get the params $dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : ''; diff --git a/apps/files/ajax/rawlist.php b/apps/files/ajax/rawlist.php index 89c21a172f..9dba9f9f81 100644 --- a/apps/files/ajax/rawlist.php +++ b/apps/files/ajax/rawlist.php @@ -4,6 +4,7 @@ $RUNTIME_APPTYPES = array('filesystem'); OCP\JSON::checkLoggedIn(); +\OC::$session->close(); // Load the files $dir = isset($_GET['dir']) ? $_GET['dir'] : ''; diff --git a/apps/files/ajax/rename.php b/apps/files/ajax/rename.php index 5b07c306af..fa3ddace63 100644 --- a/apps/files/ajax/rename.php +++ b/apps/files/ajax/rename.php @@ -23,6 +23,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::callCheck(); +\OC::$session->close(); $files = new \OCA\Files\App( \OC\Files\Filesystem::getView(), diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index 5b32b6db9b..d5d8848380 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -1,6 +1,6 @@ close(); $force = (isset($_GET['force']) and ($_GET['force'] === 'true')); $dir = isset($_GET['dir']) ? $_GET['dir'] : ''; diff --git a/apps/files/ajax/upgrade.php b/apps/files/ajax/upgrade.php index 7237b02c0b..a3383a8863 100644 --- a/apps/files/ajax/upgrade.php +++ b/apps/files/ajax/upgrade.php @@ -1,6 +1,6 @@ close(); $user = OC_User::getUser(); $eventSource = new OC_EventSource(); diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 145f40c50d..37c600e91d 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -58,6 +58,7 @@ if (empty($_POST['dirToken'])) { OCP\JSON::callCheck(); +\OC::$session->close(); // get array with current storage stats (e.g. max file size) diff --git a/cron.php b/cron.php index 44ca421328..a0447f97f1 100644 --- a/cron.php +++ b/cron.php @@ -48,7 +48,7 @@ try { require_once 'lib/base.php'; - session_write_close(); + \OC::$session->close(); $logger = \OC_Log::$object; From 4a2b16d76dafbd83c3f8c137cba9edda375b206a Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 10 Mar 2014 14:40:05 +0100 Subject: [PATCH 110/333] update copyright header --- lib/public/route/irouter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/public/route/irouter.php b/lib/public/route/irouter.php index deb01bca9b..d6b0750ba6 100644 --- a/lib/public/route/irouter.php +++ b/lib/public/route/irouter.php @@ -1,6 +1,6 @@ + * Copyright (c) 2014 Robin Appelman * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. From f0603a971d49f7143471123a2a255fc9632a45c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 10 Mar 2014 14:40:36 +0100 Subject: [PATCH 111/333] close the session for all DAV calls right after authentication - no need to write to the session afterwards --- lib/private/connector/sabre/auth.php | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/lib/private/connector/sabre/auth.php b/lib/private/connector/sabre/auth.php index 0c84fa6b75..5577273df8 100644 --- a/lib/private/connector/sabre/auth.php +++ b/lib/private/connector/sabre/auth.php @@ -73,6 +73,20 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { */ public function authenticate(Sabre_DAV_Server $server, $realm) { + $result = $this->auth($server, $realm); + + // close the session - right after authentication there is not need to write to the session any more + \OC::$session->close(); + + return $result; + } + + /** + * @param Sabre_DAV_Server $server + * @param $realm + * @return bool + */ + private function auth(Sabre_DAV_Server $server, $realm) { if (OC_User::handleApacheAuth() || OC_User::isLoggedIn()) { $user = OC_User::getUser(); OC_Util::setupFS($user); @@ -81,5 +95,5 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { } return parent::authenticate($server, $realm); - } + } } From eab844e2267a2955711f9d426c47eedeeea2d479 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 25 Feb 2014 20:46:41 +0100 Subject: [PATCH 112/333] if file is not in db, fall back to restore file to the users root --- apps/files_trashbin/ajax/list.php | 6 +-- apps/files_trashbin/index.php | 13 +++--- apps/files_trashbin/lib/helper.php | 55 ++++++++++++++----------- apps/files_trashbin/lib/trashbin.php | 60 ++++++++++------------------ 4 files changed, 62 insertions(+), 72 deletions(-) diff --git a/apps/files_trashbin/ajax/list.php b/apps/files_trashbin/ajax/list.php index c9dc13b784..124a236bcb 100644 --- a/apps/files_trashbin/ajax/list.php +++ b/apps/files_trashbin/ajax/list.php @@ -26,9 +26,9 @@ if($doBreadcrumb) { } // make filelist -$files = \OCA\Files_Trashbin\Helper::getTrashFiles($dir); - -if ($files === null){ +try { + $files = \OCA\Files_Trashbin\Helper::getTrashFiles($dir); +} catch (Exception $e) { header("HTTP/1.0 404 Not Found"); exit(); } diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 93f385dd30..f0c5b0508b 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -37,19 +37,18 @@ if ($isIE8 && isset($_GET['dir'])){ $ajaxLoad = false; if (!$isIE8){ - $files = \OCA\Files_Trashbin\Helper::getTrashFiles($dir); + try { + $files = \OCA\Files_Trashbin\Helper::getTrashFiles($dir); + } catch (Exception $e) { + header('Location: ' . OCP\Util::linkTo('files_trashbin', 'index.php')); + exit(); + } } else{ $files = array(); $ajaxLoad = true; } -// Redirect if directory does not exist -if ($files === null){ - header('Location: ' . OCP\Util::linkTo('files_trashbin', 'index.php')); - exit(); -} - $dirlisting = false; if ($dir && $dir !== '/') { $dirlisting = true; diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php index c454b35a5f..f1cec6cc94 100644 --- a/apps/files_trashbin/lib/helper.php +++ b/apps/files_trashbin/lib/helper.php @@ -12,35 +12,42 @@ class Helper */ public static function getTrashFiles($dir){ $result = array(); + $timestamp = null; $user = \OCP\User::getUser(); - if ($dir && $dir !== '/') { - $view = new \OC_Filesystemview('/'.$user.'/files_trashbin/files'); - $dirContent = $view->opendir($dir); - if ($dirContent === false){ - return null; - } - if(is_resource($dirContent)){ - while(($entryName = readdir($dirContent)) !== false) { - if (!\OC\Files\Filesystem::isIgnoredDir($entryName)) { - $pos = strpos($dir.'/', '/', 1); - $tmp = substr($dir, 0, $pos); - $pos = strrpos($tmp, '.d'); - $timestamp = substr($tmp, $pos+2); - $result[] = array( - 'id' => $entryName, - 'timestamp' => $timestamp, - 'mime' => $view->getMimeType($dir.'/'.$entryName), - 'type' => $view->is_dir($dir.'/'.$entryName) ? 'dir' : 'file', - 'location' => $dir, - ); + $view = new \OC_Filesystemview('/' . $user . '/files_trashbin/files'); + + if (ltrim($dir, '/') !== '' && !$view->is_dir($dir)) { + throw new \Exception('Directory does not exists'); + } + + $dirContent = $view->opendir($dir); + if ($dirContent === false) { + return $result; + } + if (is_resource($dirContent)) { + while (($entryName = readdir($dirContent)) !== false) { + if (!\OC\Files\Filesystem::isIgnoredDir($entryName)) { + $id = $entryName; + if ($dir === '' || $dir === '/') { + $pathparts = pathinfo($entryName); + $timestamp = substr($pathparts['extension'], 1); + $id = $pathparts['filename']; + } else if ($timestamp === null) { + // for subfolders we need to calculate the timestamp only once + $parts = explode('/', ltrim($dir, '/')); + $timestamp = substr(pathinfo($parts[0], PATHINFO_EXTENSION), 1); } + $result[] = array( + 'id' => $id, + 'timestamp' => $timestamp, + 'mime' => $view->getMimeType($dir . '/' . $entryName), + 'type' => $view->is_dir($dir . '/' . $entryName) ? 'dir' : 'file', + 'location' => $dir, + ); } - closedir($dirContent); } - } else { - $query = \OC_DB::prepare('SELECT `id`,`location`,`timestamp`,`type`,`mime` FROM `*PREFIX*files_trash` WHERE `user` = ?'); - $result = $query->execute(array($user))->fetchAll(); + closedir($dirContent); } $files = array(); diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index bc77e9c154..3933395c29 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -62,11 +62,13 @@ class Trashbin { /** + * @brief copy file to owners trash + * @param string $sourcePath * @param string $owner + * @param string $ownerPath * @param integer $timestamp - * @param string $type */ - private static function copyFilesToOwner($sourcePath, $owner, $ownerPath, $timestamp, $type, $mime) { + private static function copyFilesToOwner($sourcePath, $owner, $ownerPath, $timestamp) { self::setUpTrash($owner); $ownerFilename = basename($ownerPath); @@ -82,12 +84,10 @@ class Trashbin { if ($view->file_exists($target)) { - $query = \OC_DB::prepare("INSERT INTO `*PREFIX*files_trash` (`id`,`timestamp`,`location`,`type`,`mime`,`user`) VALUES (?,?,?,?,?,?)"); - $result = $query->execute(array($ownerFilename, $timestamp, $ownerLocation, $type, $mime, $owner)); - if (!$result) { // if file couldn't be added to the database than also don't store it in the trash bin. - $view->deleteAll($owner.'/files_trashbin/files/' . $ownerFilename . '.d' . $timestamp); + $query = \OC_DB::prepare("INSERT INTO `*PREFIX*files_trash` (`id`,`timestamp`,`location`,`user`) VALUES (?,?,?,?)"); + $result = $query->execute(array($ownerFilename, $timestamp, $ownerLocation, $owner)); + if (!$result) { \OC_Log::write('files_trashbin', 'trash bin database couldn\'t be updated for the files owner', \OC_log::ERROR); - return; } } } @@ -110,13 +110,6 @@ class Trashbin { $filename = $path_parts['basename']; $location = $path_parts['dirname']; $timestamp = time(); - $mime = $view->getMimeType('files' . $file_path); - - if ($view->is_dir('files' . $file_path)) { - $type = 'dir'; - } else { - $type = 'file'; - } $userTrashSize = self::getTrashbinSize($user); if ($userTrashSize === false || $userTrashSize < 0) { @@ -132,12 +125,10 @@ class Trashbin { if ($view->file_exists('files_trashbin/files/' . $filename . '.d' . $timestamp)) { $size = $sizeOfAddedFiles; - $query = \OC_DB::prepare("INSERT INTO `*PREFIX*files_trash` (`id`,`timestamp`,`location`,`type`,`mime`,`user`) VALUES (?,?,?,?,?,?)"); - $result = $query->execute(array($filename, $timestamp, $location, $type, $mime, $user)); - if (!$result) { // if file couldn't be added to the database than also don't store it in the trash bin. - $view->deleteAll('files_trashbin/files/' . $filename . '.d' . $timestamp); + $query = \OC_DB::prepare("INSERT INTO `*PREFIX*files_trash` (`id`,`timestamp`,`location`,`user`) VALUES (?,?,?,?)"); + $result = $query->execute(array($filename, $timestamp, $location, $user)); + if (!$result) { \OC_Log::write('files_trashbin', 'trash bin database couldn\'t be updated', \OC_log::ERROR); - return; } \OCP\Util::emitHook('\OCA\Files_Trashbin\Trashbin', 'post_moveToTrash', array('filePath' => \OC\Files\Filesystem::normalizePath($file_path), 'trashPath' => \OC\Files\Filesystem::normalizePath($filename . '.d' . $timestamp))); @@ -147,7 +138,7 @@ class Trashbin { // if owner !== user we need to also add a copy to the owners trash if ($user !== $owner) { - self::copyFilesToOwner($file_path, $owner, $ownerPath, $timestamp, $type, $mime); + self::copyFilesToOwner($file_path, $owner, $ownerPath, $timestamp); } } else { \OC_Log::write('files_trashbin', 'Couldn\'t move ' . $file_path . ' to the trash bin', \OC_log::ERROR); @@ -330,29 +321,22 @@ class Trashbin { if ($trashbinSize === false || $trashbinSize < 0) { $trashbinSize = self::calculateSize(new \OC\Files\View('/' . $user . '/files_trashbin')); } + $location = ''; if ($timestamp) { - $query = \OC_DB::prepare('SELECT `location`,`type` FROM `*PREFIX*files_trash`' - . ' WHERE `user`=? AND `id`=? AND `timestamp`=?'); + $query = \OC_DB::prepare('SELECT `location` FROM `*PREFIX*files_trash`' + . ' WHERE `user`=? AND `id`=? AND `timestamp`=?'); $result = $query->execute(array($user, $filename, $timestamp))->fetchAll(); if (count($result) !== 1) { \OC_Log::write('files_trashbin', 'trash bin database inconsistent!', \OC_Log::ERROR); - return false; + } else { + $location = $result[0]['location']; + // if location no longer exists, restore file in the root directory + if ($location !== '/' && + (!$view->is_dir('files' . $location) || + !$view->isUpdatable('files' . $location))) { + $location = ''; + } } - - // if location no longer exists, restore file in the root directory - $location = $result[0]['location']; - if ($result[0]['location'] !== '/' && - (!$view->is_dir('files' . $result[0]['location']) || - !$view->isUpdatable('files' . $result[0]['location']))) { - $location = ''; - } - } else { - $path_parts = pathinfo($file); - $result[] = array( - 'location' => $path_parts['dirname'], - 'type' => $view->is_dir('/files_trashbin/files/' . $file) ? 'dir' : 'files', - ); - $location = ''; } // we need a extension in case a file/dir with the same name already exists From abad625cac2ef0417996f196f522ef006836940d Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 25 Feb 2014 21:28:39 +0100 Subject: [PATCH 113/333] only enable previews if the encryption is disabled --- apps/files_trashbin/lib/helper.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php index f1cec6cc94..4bb5186048 100644 --- a/apps/files_trashbin/lib/helper.php +++ b/apps/files_trashbin/lib/helper.php @@ -70,7 +70,11 @@ class Helper $i['directory'] = ''; } $i['permissions'] = \OCP\PERMISSION_READ; - $i['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($r['mime']); + if (\OCP\App::isEnabled('files_encryption')) { + $i['isPreviewAvailable'] = false; + } else { + $i['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($r['mime']); + } $i['icon'] = \OCA\Files\Helper::determineIcon($i); $files[] = $i; } From 4562909a2021be795b89cb7fcf6f244d7f6a8204 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 25 Feb 2014 21:35:54 +0100 Subject: [PATCH 114/333] get trash size from file cache --- apps/files_trashbin/appinfo/database.xml | 4 +- apps/files_trashbin/appinfo/update.php | 2 +- apps/files_trashbin/appinfo/version | 2 +- apps/files_trashbin/lib/trashbin.php | 79 ++---------------------- lib/private/files/cache/homecache.php | 2 +- 5 files changed, 11 insertions(+), 78 deletions(-) diff --git a/apps/files_trashbin/appinfo/database.xml b/apps/files_trashbin/appinfo/database.xml index d08c3469b0..db104ee929 100644 --- a/apps/files_trashbin/appinfo/database.xml +++ b/apps/files_trashbin/appinfo/database.xml @@ -49,7 +49,7 @@ type text - true + false 4 @@ -57,7 +57,7 @@ mime text - true + false 255 diff --git a/apps/files_trashbin/appinfo/update.php b/apps/files_trashbin/appinfo/update.php index 0ca232668d..ca7b87a868 100644 --- a/apps/files_trashbin/appinfo/update.php +++ b/apps/files_trashbin/appinfo/update.php @@ -2,7 +2,7 @@ $installedVersion=OCP\Config::getAppValue('files_trashbin', 'installed_version'); -if (version_compare($installedVersion, '0.4', '<')) { +if (version_compare($installedVersion, '0.6', '<')) { //size of the trash bin could be incorrect, remove it for all users to //enforce a recalculation during next usage. $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trashsize`'); diff --git a/apps/files_trashbin/appinfo/version b/apps/files_trashbin/appinfo/version index 2eb3c4fe4e..5a2a5806df 100644 --- a/apps/files_trashbin/appinfo/version +++ b/apps/files_trashbin/appinfo/version @@ -1 +1 @@ -0.5 +0.6 diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index 3933395c29..f6816b2b4c 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -112,9 +112,6 @@ class Trashbin { $timestamp = time(); $userTrashSize = self::getTrashbinSize($user); - if ($userTrashSize === false || $userTrashSize < 0) { - $userTrashSize = self::calculateSize(new \OC\Files\View('/' . $user . '/files_trashbin')); - } // disable proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; @@ -146,17 +143,12 @@ class Trashbin { $userTrashSize += $size; $userTrashSize -= self::expire($userTrashSize, $user); - self::setTrashbinSize($user, $userTrashSize); // if owner !== user we also need to update the owners trash size if($owner !== $user) { $ownerTrashSize = self::getTrashbinSize($owner); - if ($ownerTrashSize === false || $ownerTrashSize < 0) { - $ownerTrashSize = self::calculateSize(new \OC\Files\View('/' . $owner . '/files_trashbin')); - } $ownerTrashSize += $size; $ownerTrashSize -= self::expire($ownerTrashSize, $owner); - self::setTrashbinSize($owner, $ownerTrashSize); } } @@ -317,10 +309,6 @@ class Trashbin { $user = \OCP\User::getUser(); $view = new \OC\Files\View('/' . $user); - $trashbinSize = self::getTrashbinSize($user); - if ($trashbinSize === false || $trashbinSize < 0) { - $trashbinSize = self::calculateSize(new \OC\Files\View('/' . $user . '/files_trashbin')); - } $location = ''; if ($timestamp) { $query = \OC_DB::prepare('SELECT `location` FROM `*PREFIX*files_trash`' @@ -361,22 +349,15 @@ class Trashbin { $view->chroot($fakeRoot); \OCP\Util::emitHook('\OCA\Files_Trashbin\Trashbin', 'post_restore', array('filePath' => \OC\Files\Filesystem::normalizePath('/' . $location . '/' . $uniqueFilename), 'trashPath' => \OC\Files\Filesystem::normalizePath($file))); - if ($view->is_dir($target)) { - $trashbinSize -= self::calculateSize(new \OC\Files\View('/' . $user . '/' . $target)); - } else { - $trashbinSize -= $view->filesize($target); - } - $trashbinSize -= self::restoreVersions($view, $file, $filename, $uniqueFilename, $location, $timestamp); - $trashbinSize -= self::restoreEncryptionKeys($view, $file, $filename, $uniqueFilename, $location, $timestamp); + self::restoreVersions($view, $file, $filename, $uniqueFilename, $location, $timestamp); + self::restoreEncryptionKeys($view, $file, $filename, $uniqueFilename, $location, $timestamp); if ($timestamp) { $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trash` WHERE `user`=? AND `id`=? AND `timestamp`=?'); $query->execute(array($user, $filename, $timestamp)); } - self::setTrashbinSize($user, $trashbinSize); - // enable proxy \OC_FileProxy::$enabled = $proxyStatus; @@ -399,10 +380,8 @@ class Trashbin { * @param $location location if file * @param $timestamp deleteion time * - * @return size of restored versions */ private static function restoreVersions($view, $file, $filename, $uniqueFilename, $location, $timestamp) { - $size = 0; if (\OCP\App::isEnabled('files_versions')) { // disable proxy to prevent recursive calls @@ -423,15 +402,12 @@ class Trashbin { } if ($view->is_dir('/files_trashbin/versions/' . $file)) { - $size += self::calculateSize(new \OC\Files\View('/' . $user . '/' . 'files_trashbin/versions/' . $file)); $rootView->rename(\OC\Files\Filesystem::normalizePath($user . '/files_trashbin/versions/' . $file), \OC\Files\Filesystem::normalizePath($owner . '/files_versions/' . $ownerPath)); } else if ($versions = self::getVersionsFromTrash($versionedFile, $timestamp)) { foreach ($versions as $v) { if ($timestamp) { - $size += $view->filesize('files_trashbin/versions/' . $versionedFile . '.v' . $v . '.d' . $timestamp); $rootView->rename($user . '/files_trashbin/versions/' . $versionedFile . '.v' . $v . '.d' . $timestamp, $owner . '/files_versions/' . $ownerPath . '.v' . $v); } else { - $size += $view->filesize('files_trashbin/versions/' . $versionedFile . '.v' . $v); $rootView->rename($user . '/files_trashbin/versions/' . $versionedFile . '.v' . $v, $owner . '/files_versions/' . $ownerPath . '.v' . $v); } } @@ -440,7 +416,6 @@ class Trashbin { // enable proxy \OC_FileProxy::$enabled = $proxyStatus; } - return $size; } /** @@ -453,11 +428,9 @@ class Trashbin { * @param $location location of file * @param $timestamp deleteion time * - * @return size of restored encrypted file */ private static function restoreEncryptionKeys($view, $file, $filename, $uniqueFilename, $location, $timestamp) { // Take care of encryption keys TODO! Get '.key' in file between file name and delete date (also for permanent delete!) - $size = 0; if (\OCP\App::isEnabled('files_encryption')) { $user = \OCP\User::getUser(); $rootView = new \OC\Files\View('/'); @@ -502,18 +475,15 @@ class Trashbin { if ($rootView->is_dir($keyfile)) { // handle keyfiles - $size += self::calculateSize(new \OC\Files\View($keyfile)); $rootView->rename($keyfile, $baseDir . '/keyfiles/' . $ownerPath); // handle share-keys if ($timestamp) { $sharekey .= '.d' . $timestamp; } - $size += self::calculateSize(new \OC\Files\View($sharekey)); $rootView->rename($sharekey, $baseDir . '/share-keys/' . $ownerPath); } else { // handle keyfiles - $size += $rootView->filesize($keyfile); $rootView->rename($keyfile, $baseDir . '/keyfiles/' . $ownerPath . '.key'); // handle share-keys @@ -522,8 +492,6 @@ class Trashbin { $ownerShareKey .= '.d' . $timestamp; } - $size += $rootView->filesize($ownerShareKey); - // move only owners key $rootView->rename($ownerShareKey, $baseDir . '/share-keys/' . $ownerPath . '.' . $user . '.shareKey'); @@ -550,7 +518,6 @@ class Trashbin { // enable proxy \OC_FileProxy::$enabled = $proxyStatus; } - return $size; } /** @@ -560,7 +527,6 @@ class Trashbin { $user = \OCP\User::getUser(); $view = new \OC\Files\View('/' . $user); $view->deleteAll('files_trashbin'); - self::setTrashbinSize($user, 0); $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trash` WHERE `user`=?'); $query->execute(array($user)); @@ -581,11 +547,6 @@ class Trashbin { $view = new \OC\Files\View('/' . $user); $size = 0; - $trashbinSize = self::getTrashbinSize($user); - if ($trashbinSize === false || $trashbinSize < 0) { - $trashbinSize = self::calculateSize(new \OC\Files\View('/' . $user . '/files_trashbin')); - } - if ($timestamp) { $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trash` WHERE `user`=? AND `id`=? AND `timestamp`=?'); $query->execute(array($user, $filename, $timestamp)); @@ -604,8 +565,6 @@ class Trashbin { } $view->unlink('/files_trashbin/files/' . $file); \OC_Hook::emit('\OCP\Trashbin', 'delete', array('path' => '/files_trashbin/files/' . $file)); - $trashbinSize -= $size; - self::setTrashbinSize($user, $trashbinSize); return $size; } @@ -751,17 +710,10 @@ class Trashbin { $size = self::getTrashbinSize($user); - if ($size === false || $size < 0) { - $size = self::calculateSize(new \OC\Files\View('/' . $user . '/files_trashbin')); - } - $freeSpace = self::calculateFreeSpace($size); if ($freeSpace < 0) { - $newSize = $size - self::expire($size, $user); - if ($newSize !== $size) { - self::setTrashbinSize($user, $newSize); - } + self::expire($size, $user); } } @@ -938,28 +890,9 @@ class Trashbin { * @return mixed trash bin size or false if no trash bin size is stored */ private static function getTrashbinSize($user) { - $query = \OC_DB::prepare('SELECT `size` FROM `*PREFIX*files_trashsize` WHERE `user`=?'); - $result = $query->execute(array($user))->fetchAll(); - - if ($result) { - return (int)$result[0]['size']; - } - return false; - } - - /** - * write to the database how much space is in use for the trash bin - * - * @param $user owner of the trash bin - * @param $size size of the trash bin - */ - private static function setTrashbinSize($user, $size) { - if (self::getTrashbinSize($user) === false) { - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*files_trashsize` (`size`, `user`) VALUES (?, ?)'); - } else { - $query = \OC_DB::prepare('UPDATE `*PREFIX*files_trashsize` SET `size`=? WHERE `user`=?'); - } - $query->execute(array($size, $user)); + $view = new \OC\Files\View('/' . $user); + $fileInfo = $view->getFileInfo('/files_trashbin'); + return $fileInfo['size']; } /** diff --git a/lib/private/files/cache/homecache.php b/lib/private/files/cache/homecache.php index a7c310a378..a35e4d5e1b 100644 --- a/lib/private/files/cache/homecache.php +++ b/lib/private/files/cache/homecache.php @@ -16,7 +16,7 @@ class HomeCache extends Cache { * @return int */ public function calculateFolderSize($path) { - if ($path !== '/' and $path !== '' and $path !== 'files') { + if ($path !== '/' and $path !== '' and $path !== 'files' and $path !== 'files_trashbin') { return parent::calculateFolderSize($path); } From 5ddabd7cd02108718b286b36de5927d90afc150a Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 12:23:21 +0100 Subject: [PATCH 115/333] fix mimetype detection, introduce fake etag to identify preview images --- apps/files_trashbin/lib/helper.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php index 4bb5186048..fe0d1d30a7 100644 --- a/apps/files_trashbin/lib/helper.php +++ b/apps/files_trashbin/lib/helper.php @@ -41,7 +41,7 @@ class Helper $result[] = array( 'id' => $id, 'timestamp' => $timestamp, - 'mime' => $view->getMimeType($dir . '/' . $entryName), + 'mime' => \OC_Helper::getFileNameMimeType($id), 'type' => $view->is_dir($dir . '/' . $entryName) ? 'dir' : 'file', 'location' => $dir, ); @@ -58,6 +58,7 @@ class Helper $i['name'] = $r['id']; $i['date'] = \OCP\Util::formatDate($r['timestamp']); $i['timestamp'] = $r['timestamp']; + $i['etag'] = $r['timestamp']; // add fake etag, it is only needed to identify the preview image $i['mimetype'] = $r['mime']; $i['type'] = $r['type']; if ($i['type'] === 'file') { From a074adb2af2a72a5f122435bece7b8f5c2850ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 10 Mar 2014 15:36:20 +0100 Subject: [PATCH 116/333] fix close() implementation in \OC\Session\Internal --- lib/private/session/internal.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/private/session/internal.php b/lib/private/session/internal.php index d589932d42..9d3b9cb81b 100644 --- a/lib/private/session/internal.php +++ b/lib/private/session/internal.php @@ -26,8 +26,7 @@ class Internal extends Memory { } public function __destruct() { - $_SESSION = array_merge($_SESSION, $this->data); - \OC::$session->close(); + $this->close(); } /** @@ -47,4 +46,12 @@ class Internal extends Memory { @session_start(); $this->data = $_SESSION = array(); } + + public function close() { + $_SESSION = array_merge($_SESSION, $this->data); + session_write_close(); + + parent::close(); + } + } From 01bcdf5b53d44510176ca1487116c171379def06 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 10 Mar 2014 16:22:52 +0100 Subject: [PATCH 117/333] Add function remove() to OC.localeStorage --- core/js/js.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/js/js.js b/core/js/js.js index 77aadd23e0..78eeceb2b0 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -662,6 +662,9 @@ if(typeof localStorage !=='undefined' && localStorage !== null){ setItem:function(name,item){ return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item)); }, + removeItem:function(name,item){ + return localStorage.removeItem(OC.localStorage.namespace+name,JSON.stringify(item)); + }, getItem:function(name){ var item = localStorage.getItem(OC.localStorage.namespace+name); if(item===null) { From 5e6f0dcc6d83ce319ea2685cedbc9b23c7f33c27 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Mon, 10 Mar 2014 16:26:07 +0100 Subject: [PATCH 118/333] Fix copy/paste error --- core/js/js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/js.js b/core/js/js.js index 78eeceb2b0..841f3a769f 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -663,7 +663,7 @@ if(typeof localStorage !=='undefined' && localStorage !== null){ return localStorage.setItem(OC.localStorage.namespace+name,JSON.stringify(item)); }, removeItem:function(name,item){ - return localStorage.removeItem(OC.localStorage.namespace+name,JSON.stringify(item)); + return localStorage.removeItem(OC.localStorage.namespace+name); }, getItem:function(name){ var item = localStorage.getItem(OC.localStorage.namespace+name); From 9fe5033f1ec1737eae9402008c5228e5fe60f9bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 10 Mar 2014 17:15:19 +0100 Subject: [PATCH 119/333] PHPDoc updated --- lib/private/session/memory.php | 5 +++++ lib/private/session/session.php | 10 ++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/lib/private/session/memory.php b/lib/private/session/memory.php index 1562c2ce03..8434b6000e 100644 --- a/lib/private/session/memory.php +++ b/lib/private/session/memory.php @@ -63,6 +63,11 @@ class Memory extends Session { $this->data = array(); } + /** + * In case the session has already been locked an exception will be thrown + * + * @throws \Exception + */ private function validateSession() { if ($this->sessionClosed) { throw new \Exception('Session has been closed - no further changes to the session as allowed'); diff --git a/lib/private/session/session.php b/lib/private/session/session.php index 5c18f3e495..6f6c804f38 100644 --- a/lib/private/session/session.php +++ b/lib/private/session/session.php @@ -12,6 +12,11 @@ use OCP\ISession; abstract class Session implements \ArrayAccess, ISession { + /** + * @var bool + */ + protected $sessionClosed = false; + /** * $name serves as a namespace for the session keys * @@ -50,8 +55,9 @@ abstract class Session implements \ArrayAccess, ISession { $this->remove($offset); } - protected $sessionClosed = false; - + /** + * Close the session and release the lock + */ public function close() { $this->sessionClosed = true; } From 022d76c7bb999058803c6f0c41749672e681fab8 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 10 Mar 2014 17:25:16 +0100 Subject: [PATCH 120/333] Fixed warning when browsing Shared folder The virtual "Shared" folder doesn't have an unencrypted_size field. This fix adds a check to prevent warnings in the log. --- apps/files_encryption/lib/proxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index b7e1599c1f..bae1fded53 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -344,7 +344,7 @@ class Proxy extends \OC_FileProxy { \OC_FileProxy::$enabled = false; $fileInfo = $view->getFileInfo($path); \OC_FileProxy::$enabled = $proxyState; - if ($fileInfo['unencrypted_size'] > 0) { + if (isset($fileInfo['unencrypted_size']) && $fileInfo['unencrypted_size'] > 0) { return $fileInfo['unencrypted_size']; } return $size; From f4f61f03c9d14eaa16a7a7fcd49f2086dfa56e92 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 10 Mar 2014 17:49:47 +0100 Subject: [PATCH 121/333] Disable XML entities when parsing XML --- lib/private/ocsclient.php | 16 ++++++++++++---- lib/private/updater.php | 2 ++ 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/lib/private/ocsclient.php b/lib/private/ocsclient.php index fa6e3fac1b..68dc2c2d6e 100644 --- a/lib/private/ocsclient.php +++ b/lib/private/ocsclient.php @@ -72,7 +72,9 @@ class OC_OCSClient{ if($xml==false) { return null; } - $data=simplexml_load_string($xml); + $loadEntities = libxml_disable_entity_loader(true); + $data = simplexml_load_string($xml); + libxml_disable_entity_loader($loadEntities); $tmp=$data->data; $cats=array(); @@ -117,7 +119,9 @@ class OC_OCSClient{ if($xml==false) { return null; } - $data=simplexml_load_string($xml); + $loadEntities = libxml_disable_entity_loader(true); + $data = simplexml_load_string($xml); + libxml_disable_entity_loader($loadEntities); $tmp=$data->data->content; for($i = 0; $i < count($tmp); $i++) { @@ -159,7 +163,9 @@ class OC_OCSClient{ OC_Log::write('core', 'Unable to parse OCS content', OC_Log::FATAL); return null; } - $data=simplexml_load_string($xml); + $loadEntities = libxml_disable_entity_loader(true); + $data = simplexml_load_string($xml); + libxml_disable_entity_loader($loadEntities); $tmp=$data->data->content; $app=array(); @@ -200,7 +206,9 @@ class OC_OCSClient{ OC_Log::write('core', 'Unable to parse OCS content', OC_Log::FATAL); return null; } - $data=simplexml_load_string($xml); + $loadEntities = libxml_disable_entity_loader(true); + $data = simplexml_load_string($xml); + libxml_disable_entity_loader($loadEntities); $tmp=$data->data->content; $app=array(); diff --git a/lib/private/updater.php b/lib/private/updater.php index f05d5038b7..292752067b 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -76,7 +76,9 @@ class Updater extends BasicEmitter { if ($xml == false) { return array(); } + $loadEntities = libxml_disable_entity_loader(true); $data = @simplexml_load_string($xml); + libxml_disable_entity_loader($loadEntities); $tmp = array(); $tmp['version'] = $data->version; From 010eef95c0c5cebd03b03645d29847638e064bd5 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 10 Mar 2014 15:19:18 +0100 Subject: [PATCH 122/333] Fixed total space display when data size exceeds quota The total space display in the personal page now shows the quota value instead of used space when used space exceeds the quota (soft quota). --- lib/private/files/storage/wrapper/quota.php | 7 ++ lib/private/helper.php | 11 +- tests/lib/helperstorage.php | 113 ++++++++++++++++++++ 3 files changed, 130 insertions(+), 1 deletion(-) create mode 100644 tests/lib/helperstorage.php diff --git a/lib/private/files/storage/wrapper/quota.php b/lib/private/files/storage/wrapper/quota.php index 26c952e694..0e0d5b1310 100644 --- a/lib/private/files/storage/wrapper/quota.php +++ b/lib/private/files/storage/wrapper/quota.php @@ -29,6 +29,13 @@ class Quota extends Wrapper { $this->sizeRoot = isset($parameters['root']) ? $parameters['root'] : ''; } + /** + * @return quota value + */ + public function getQuota() { + return $this->quota; + } + /** * @param string $path */ diff --git a/lib/private/helper.php b/lib/private/helper.php index b9956d5ec1..0b1a26bbec 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -914,13 +914,22 @@ class OC_Helper { if ($used < 0) { $used = 0; } - $free = \OC\Files\Filesystem::free_space($path); + $quota = 0; + // TODO: need a better way to get total space from storage + $storage = $rootInfo->getStorage(); + if ($storage instanceof \OC\Files\Storage\Wrapper\Quota) { + $quota = $storage->getQuota(); + } + $free = $storage->free_space(''); if ($free >= 0) { $total = $free + $used; } else { $total = $free; //either unknown or unlimited } if ($total > 0) { + if ($quota > 0 && $total > $quota) { + $total = $quota; + } // prevent division by zero or error codes (negative values) $relative = round(($used / $total) * 10000) / 100; } else { diff --git a/tests/lib/helperstorage.php b/tests/lib/helperstorage.php new file mode 100644 index 0000000000..010a54e3bb --- /dev/null +++ b/tests/lib/helperstorage.php @@ -0,0 +1,113 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * Test the storage functions of OC_Helper + */ +class Test_Helper_Storage extends PHPUnit_Framework_TestCase { + private $user; + private $storageMock; + + public function setUp() { + $this->user = 'user_' . uniqid(); + \OC\Files\Filesystem::tearDown(); + \OC\Files\Filesystem::init($this->user, '/' . $this->user . '/files'); + + $this->storageMock = $this->getMock( + '\OC\Files\Storage\Temporary', + array('free_space'), + array('') + ); + + \OC\Files\Filesystem::clearMounts(); + + $this->storageMock->expects($this->once()) + ->method('free_space') + ->will($this->returnValue(12)); + } + + public function tearDown() { + $this->user = null; + + $this->storageMock->getCache()->clear(); + \OC\Files\Filesystem::tearDown(); + } + + /** + * Test getting the storage info + */ + function testGetStorageInfo() { + \OC\Files\Filesystem::mount($this->storageMock, array(), '/' . $this->user . '/files'); + $this->storageMock->file_put_contents('test.txt', '01234'); + + $storageInfo = \OC_Helper::getStorageInfo(''); + $this->assertEquals(12, $storageInfo['free']); + $this->assertEquals(5, $storageInfo['used']); + $this->assertEquals(17, $storageInfo['total']); + } + + /** + * Test getting the storage info with quota enabled + */ + function testGetStorageInfoWithQuota() { + $this->storageMock->file_put_contents('test.txt', '01234'); + $this->storageMock = new \OC\Files\Storage\Wrapper\Quota( + array( + 'storage' => $this->storageMock, + 'quota' => 7 + ) + ); + \OC\Files\Filesystem::mount($this->storageMock, array(), '/' . $this->user . '/files'); + + $storageInfo = \OC_Helper::getStorageInfo(''); + $this->assertEquals(2, $storageInfo['free']); + $this->assertEquals(5, $storageInfo['used']); + $this->assertEquals(7, $storageInfo['total']); + } + + /** + * Test getting the storage info when data exceeds quota + */ + function testGetStorageInfoWhenSizeExceedsQuota() { + $this->storageMock->file_put_contents('test.txt', '0123456789'); + $this->storageMock = new \OC\Files\Storage\Wrapper\Quota( + array( + 'storage' => $this->storageMock, + 'quota' => 7 + ) + ); + \OC\Files\Filesystem::mount($this->storageMock, array(), '/' . $this->user . '/files'); + + $storageInfo = \OC_Helper::getStorageInfo(''); + $this->assertEquals(0, $storageInfo['free']); + $this->assertEquals(10, $storageInfo['used']); + // total = quota + $this->assertEquals(7, $storageInfo['total']); + } + + /** + * Test getting the storage info when the remaining + * free storage space is less than the quota + */ + function testGetStorageInfoWhenFreeSpaceLessThanQuota() { + $this->storageMock->file_put_contents('test.txt', '01234'); + $this->storageMock = new \OC\Files\Storage\Wrapper\Quota( + array( + 'storage' => $this->storageMock, + 'quota' => 18 + ) + ); + \OC\Files\Filesystem::mount($this->storageMock, array(), '/' . $this->user . '/files'); + + $storageInfo = \OC_Helper::getStorageInfo(''); + $this->assertEquals(12, $storageInfo['free']); + $this->assertEquals(5, $storageInfo['used']); + // total = free + used (because quota > total) + $this->assertEquals(17, $storageInfo['total']); + } +} From f1ecc758f5f6543566ae9970de837e5524cf8bf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 10 Mar 2014 21:54:23 +0100 Subject: [PATCH 123/333] send an individual email to each recipient --- core/ajax/share.php | 11 +++++++++-- lib/private/share/mailnotifications.php | 23 +++++++++++++---------- 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 86ee018e38..ca1951ec9a 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -145,10 +145,17 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo } $result = $mailNotification->sendLinkShareMail($to_address, $file, $link, $expiration); - if($result === true) { + if(empty($result)) { \OCP\JSON::success(); } else { - \OCP\JSON::error(array('data' => array('message' => OC_Util::sanitizeHTML($result)))); + $l = OC_L10N::get('core'); + OCP\JSON::error(array( + 'data' => array( + 'message' => $l->t("Couldn't send mail to following users: %s ", + implode(', ', $result) + ) + ) + )); } break; diff --git a/lib/private/share/mailnotifications.php b/lib/private/share/mailnotifications.php index 360376294c..4573481873 100644 --- a/lib/private/share/mailnotifications.php +++ b/lib/private/share/mailnotifications.php @@ -97,7 +97,7 @@ class MailNotifications { try { \OCP\Util::sendMail($to, $recipientDisplayName, $subject, $htmlMail, $this->from, $this->senderDisplayName, 1, $alttextMail); } catch (\Exception $e) { - \OCP\Util::writeLog('sharing', "Can't send mail to inform the user abaut an internal share: " . $e->getMessage() , \OCP\Util::ERROR); + \OCP\Util::writeLog('sharing', "Can't send mail to inform the user about an internal share: " . $e->getMessage() , \OCP\Util::ERROR); $noMail[] = $recipientDisplayName; } } @@ -109,23 +109,26 @@ class MailNotifications { /** * @brief inform recipient about public link share * - * @param string recipient recipient email address + * @param string $recipient recipient email address * @param string $filename the shared file * @param string $link the public link * @param int $expiration expiration date (timestamp) - * @return mixed $result true or error message + * @return array $result of failed recipients */ public function sendLinkShareMail($recipient, $filename, $link, $expiration) { $subject = (string)$this->l->t('%s shared »%s« with you', array($this->senderDisplayName, $filename)); list($htmlMail, $alttextMail) = $this->createMailBody($filename, $link, $expiration); - try { - \OCP\Util::sendMail($recipient, $recipient, $subject, $htmlMail, $this->from, $this->senderDisplayName, 1, $alttextMail); - } catch (\Exception $e) { - \OCP\Util::writeLog('sharing', "Can't send mail with public link: " . $e->getMessage(), \OCP\Util::ERROR); - return $e->getMessage(); + $rs = explode(' ', $recipient); + $failed = array(); + foreach ($rs as $r) { + try { + \OCP\Util::sendMail($r, $r, $subject, $htmlMail, $this->from, $this->senderDisplayName, 1, $alttextMail); + } catch (\Exception $e) { + \OCP\Util::writeLog('sharing', "Can't send mail with public link to $r: " . $e->getMessage(), \OCP\Util::ERROR); + $failed[] = $r; + } } - - return true; + return $failed; } /** From 0de43f1fbe20f6cb69d14e8b07efa1e72f852464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 10 Mar 2014 21:56:37 +0100 Subject: [PATCH 124/333] remove magic handling of recipient lists by exploding the string - this functionality is nowhere used this way and nowhere documented - and broken because only $toaddress will be exploded not $toname --- lib/private/mail.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/private/mail.php b/lib/private/mail.php index 90c3e34319..9605290fe5 100644 --- a/lib/private/mail.php +++ b/lib/private/mail.php @@ -72,11 +72,8 @@ class OC_Mail { $mailo->From = $fromaddress; $mailo->FromName = $fromname;; $mailo->Sender = $fromaddress; - $a=explode(' ', $toaddress); try { - foreach($a as $ad) { - $mailo->AddAddress($ad, $toname); - } + $mailo->AddAddress($toaddress, $toname); if($ccaddress<>'') $mailo->AddCC($ccaddress, $ccname); if($bcc<>'') $mailo->AddBCC($bcc); From 26ec311cff896d7dc84209d155f6a70f3f59cb95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 10 Mar 2014 23:24:24 +0100 Subject: [PATCH 125/333] Changing host after transifex client update on server --- l10n/.tx/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l10n/.tx/config b/l10n/.tx/config index 70ec332856..62324f2488 100644 --- a/l10n/.tx/config +++ b/l10n/.tx/config @@ -1,5 +1,5 @@ [main] -host = https://www.transifex.net +host = https://www.transifex.com [owncloud.core] file_filter = /core.po From b0ec38e2024846e29d382e2c0cdff2c408ad209f Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 11 Mar 2014 01:59:39 -0400 Subject: [PATCH 126/333] [tx-robot] updated from transifex --- 3rdparty | 1 - apps/files/l10n/ar.php | 7 +- apps/files/l10n/bn_BD.php | 4 +- apps/files/l10n/ca.php | 10 +- apps/files/l10n/cs_CZ.php | 8 +- apps/files/l10n/cy_GB.php | 4 +- apps/files/l10n/da.php | 8 +- apps/files/l10n/de.php | 8 +- apps/files/l10n/de_AT.php | 6 +- apps/files/l10n/de_CH.php | 4 +- apps/files/l10n/de_DE.php | 8 +- apps/files/l10n/el.php | 8 +- apps/files/l10n/en_GB.php | 8 +- apps/files/l10n/eo.php | 8 +- apps/files/l10n/es.php | 16 +- apps/files/l10n/es_AR.php | 28 +- apps/files/l10n/es_CL.php | 5 +- apps/files/l10n/es_MX.php | 8 +- apps/files/l10n/et_EE.php | 8 +- apps/files/l10n/eu.php | 10 +- apps/files/l10n/eu_ES.php | 10 + apps/files/l10n/fa.php | 8 +- apps/files/l10n/fi_FI.php | 7 +- apps/files/l10n/fr.php | 8 +- apps/files/l10n/gl.php | 8 +- apps/files/l10n/he.php | 2 +- apps/files/l10n/hu_HU.php | 8 +- apps/files/l10n/id.php | 8 +- apps/files/l10n/is.php | 4 +- apps/files/l10n/it.php | 8 +- apps/files/l10n/ja_JP.php | 42 +- apps/files/l10n/ka_GE.php | 4 +- apps/files/l10n/km.php | 10 + apps/files/l10n/ko.php | 8 +- apps/files/l10n/ku_IQ.php | 1 + apps/files/l10n/lt_LT.php | 13 +- apps/files/l10n/lv.php | 4 +- apps/files/l10n/mk.php | 5 +- apps/files/l10n/ml.php | 7 + apps/files/l10n/mn.php | 7 + apps/files/l10n/nb_NO.php | 32 +- apps/files/l10n/nl.php | 8 +- apps/files/l10n/nn_NO.php | 6 +- apps/files/l10n/pl.php | 10 +- apps/files/l10n/pt_BR.php | 8 +- apps/files/l10n/pt_PT.php | 27 +- apps/files/l10n/ro.php | 6 +- apps/files/l10n/ru.php | 64 +- apps/files/l10n/sk_SK.php | 10 +- apps/files/l10n/sl.php | 8 +- apps/files/l10n/sq.php | 8 +- apps/files/l10n/sr.php | 4 +- apps/files/l10n/sr@latin.php | 1 + apps/files/l10n/su.php | 7 + apps/files/l10n/sv.php | 8 +- apps/files/l10n/ta_LK.php | 2 +- apps/files/l10n/th_TH.php | 5 +- apps/files/l10n/tr.php | 8 +- apps/files/l10n/ug.php | 1 - apps/files/l10n/uk.php | 4 +- apps/files/l10n/vi.php | 37 +- apps/files/l10n/zh_CN.php | 32 +- apps/files/l10n/zh_TW.php | 8 +- apps/files_encryption/l10n/ar.php | 41 +- apps/files_encryption/l10n/bg_BG.php | 1 - apps/files_encryption/l10n/bn_BD.php | 1 - apps/files_encryption/l10n/ca.php | 1 - apps/files_encryption/l10n/cs_CZ.php | 1 - apps/files_encryption/l10n/cy_GB.php | 1 - apps/files_encryption/l10n/da.php | 1 - apps/files_encryption/l10n/de.php | 1 - apps/files_encryption/l10n/de_CH.php | 1 - apps/files_encryption/l10n/de_DE.php | 1 - apps/files_encryption/l10n/el.php | 1 - apps/files_encryption/l10n/en_GB.php | 1 - apps/files_encryption/l10n/eo.php | 1 - apps/files_encryption/l10n/es.php | 1 - apps/files_encryption/l10n/es_AR.php | 9 +- apps/files_encryption/l10n/es_MX.php | 1 - apps/files_encryption/l10n/et_EE.php | 1 - apps/files_encryption/l10n/eu.php | 1 - apps/files_encryption/l10n/fa.php | 1 - apps/files_encryption/l10n/fi_FI.php | 2 +- apps/files_encryption/l10n/fr.php | 1 - apps/files_encryption/l10n/gl.php | 1 - apps/files_encryption/l10n/he.php | 1 - apps/files_encryption/l10n/hu_HU.php | 1 - apps/files_encryption/l10n/id.php | 1 - apps/files_encryption/l10n/is.php | 1 - apps/files_encryption/l10n/it.php | 1 - apps/files_encryption/l10n/ja_JP.php | 31 +- apps/files_encryption/l10n/ka_GE.php | 1 - apps/files_encryption/l10n/ko.php | 1 - apps/files_encryption/l10n/ku_IQ.php | 1 - apps/files_encryption/l10n/lt_LT.php | 3 +- apps/files_encryption/l10n/lv.php | 1 - apps/files_encryption/l10n/mk.php | 1 - apps/files_encryption/l10n/nb_NO.php | 41 +- apps/files_encryption/l10n/nl.php | 1 - apps/files_encryption/l10n/nn_NO.php | 1 - apps/files_encryption/l10n/pl.php | 1 - apps/files_encryption/l10n/pt_BR.php | 1 - apps/files_encryption/l10n/pt_PT.php | 1 - apps/files_encryption/l10n/ro.php | 18 +- apps/files_encryption/l10n/ru.php | 1 - apps/files_encryption/l10n/si_LK.php | 1 - apps/files_encryption/l10n/sk_SK.php | 1 - apps/files_encryption/l10n/sl.php | 1 - apps/files_encryption/l10n/sr.php | 1 - apps/files_encryption/l10n/sv.php | 1 - apps/files_encryption/l10n/ta_LK.php | 1 - apps/files_encryption/l10n/th_TH.php | 1 - apps/files_encryption/l10n/tr.php | 1 - apps/files_encryption/l10n/ug.php | 1 - apps/files_encryption/l10n/uk.php | 1 - apps/files_encryption/l10n/vi.php | 20 +- apps/files_encryption/l10n/zh_CN.php | 1 - apps/files_encryption/l10n/zh_TW.php | 1 - apps/files_external/l10n/bg_BG.php | 1 - apps/files_external/l10n/bn_BD.php | 1 - apps/files_external/l10n/ca.php | 1 - apps/files_external/l10n/cs_CZ.php | 1 - apps/files_external/l10n/da.php | 1 - apps/files_external/l10n/de.php | 1 - apps/files_external/l10n/de_AT.php | 5 + apps/files_external/l10n/de_CH.php | 1 - apps/files_external/l10n/de_DE.php | 1 - apps/files_external/l10n/el.php | 1 - apps/files_external/l10n/en_GB.php | 1 - apps/files_external/l10n/eo.php | 1 - apps/files_external/l10n/es.php | 1 - apps/files_external/l10n/es_AR.php | 1 - apps/files_external/l10n/es_MX.php | 1 - apps/files_external/l10n/et_EE.php | 1 - apps/files_external/l10n/eu.php | 1 - apps/files_external/l10n/eu_ES.php | 5 + apps/files_external/l10n/fa.php | 1 - apps/files_external/l10n/fi_FI.php | 1 - apps/files_external/l10n/fr.php | 1 - apps/files_external/l10n/gl.php | 1 - apps/files_external/l10n/he.php | 1 - apps/files_external/l10n/hu_HU.php | 1 - apps/files_external/l10n/id.php | 1 - apps/files_external/l10n/is.php | 1 - apps/files_external/l10n/it.php | 1 - apps/files_external/l10n/ja_JP.php | 17 +- apps/files_external/l10n/ka_GE.php | 1 - apps/files_external/l10n/km.php | 3 + apps/files_external/l10n/ko.php | 1 - apps/files_external/l10n/lt_LT.php | 1 - apps/files_external/l10n/lv.php | 1 - apps/files_external/l10n/mk.php | 1 - apps/files_external/l10n/nb_NO.php | 1 - apps/files_external/l10n/nl.php | 1 - apps/files_external/l10n/pl.php | 1 - apps/files_external/l10n/pt_BR.php | 1 - apps/files_external/l10n/pt_PT.php | 1 - apps/files_external/l10n/ro.php | 1 - apps/files_external/l10n/ru.php | 1 - apps/files_external/l10n/si_LK.php | 1 - apps/files_external/l10n/sk_SK.php | 1 - apps/files_external/l10n/sl.php | 1 - apps/files_external/l10n/sv.php | 1 - apps/files_external/l10n/ta_LK.php | 1 - apps/files_external/l10n/th_TH.php | 1 - apps/files_external/l10n/tr.php | 1 - apps/files_external/l10n/uk.php | 1 - apps/files_external/l10n/vi.php | 1 - apps/files_external/l10n/zh_CN.php | 1 - apps/files_external/l10n/zh_TW.php | 1 - apps/files_sharing/l10n/ar.php | 8 +- apps/files_sharing/l10n/bg_BG.php | 8 +- apps/files_sharing/l10n/bn_BD.php | 8 +- apps/files_sharing/l10n/ca.php | 6 - apps/files_sharing/l10n/cs_CZ.php | 6 - apps/files_sharing/l10n/cy_GB.php | 8 +- apps/files_sharing/l10n/da.php | 6 - apps/files_sharing/l10n/de.php | 6 - apps/files_sharing/l10n/de_AT.php | 5 + apps/files_sharing/l10n/de_CH.php | 8 +- apps/files_sharing/l10n/de_DE.php | 6 - apps/files_sharing/l10n/el.php | 6 - apps/files_sharing/l10n/en@pirate.php | 6 +- apps/files_sharing/l10n/en_GB.php | 6 - apps/files_sharing/l10n/eo.php | 6 - apps/files_sharing/l10n/es.php | 6 - apps/files_sharing/l10n/es_AR.php | 8 +- apps/files_sharing/l10n/es_CL.php | 3 +- apps/files_sharing/l10n/es_MX.php | 6 - apps/files_sharing/l10n/et_EE.php | 6 - apps/files_sharing/l10n/eu.php | 6 - apps/files_sharing/l10n/fa.php | 8 +- apps/files_sharing/l10n/fi_FI.php | 6 - apps/files_sharing/l10n/fr.php | 6 - apps/files_sharing/l10n/gl.php | 6 - apps/files_sharing/l10n/he.php | 8 +- apps/files_sharing/l10n/hi.php | 3 +- apps/files_sharing/l10n/hr.php | 5 +- apps/files_sharing/l10n/hu_HU.php | 6 - apps/files_sharing/l10n/ia.php | 4 +- apps/files_sharing/l10n/id.php | 6 - apps/files_sharing/l10n/is.php | 8 +- apps/files_sharing/l10n/it.php | 6 - apps/files_sharing/l10n/ja_JP.php | 6 - apps/files_sharing/l10n/ka_GE.php | 8 +- apps/files_sharing/l10n/km.php | 5 + apps/files_sharing/l10n/ko.php | 6 - apps/files_sharing/l10n/ku_IQ.php | 7 +- apps/files_sharing/l10n/lb.php | 8 +- apps/files_sharing/l10n/lt_LT.php | 6 - apps/files_sharing/l10n/lv.php | 8 +- apps/files_sharing/l10n/mk.php | 8 +- apps/files_sharing/l10n/ms_MY.php | 5 +- apps/files_sharing/l10n/my_MM.php | 3 +- apps/files_sharing/l10n/nb_NO.php | 14 +- apps/files_sharing/l10n/nl.php | 6 - apps/files_sharing/l10n/nn_NO.php | 8 +- apps/files_sharing/l10n/oc.php | 5 +- apps/files_sharing/l10n/pa.php | 5 +- apps/files_sharing/l10n/pl.php | 6 - apps/files_sharing/l10n/pt_BR.php | 6 - apps/files_sharing/l10n/pt_PT.php | 6 - apps/files_sharing/l10n/ro.php | 8 +- apps/files_sharing/l10n/ru.php | 12 +- apps/files_sharing/l10n/si_LK.php | 8 +- apps/files_sharing/l10n/sk_SK.php | 6 - apps/files_sharing/l10n/sl.php | 6 - apps/files_sharing/l10n/sq.php | 8 +- apps/files_sharing/l10n/sr.php | 5 +- apps/files_sharing/l10n/sr@latin.php | 4 +- apps/files_sharing/l10n/sv.php | 6 - apps/files_sharing/l10n/ta_LK.php | 8 +- apps/files_sharing/l10n/th_TH.php | 8 +- apps/files_sharing/l10n/tr.php | 6 - apps/files_sharing/l10n/ug.php | 5 +- apps/files_sharing/l10n/uk.php | 6 - apps/files_sharing/l10n/vi.php | 8 +- apps/files_sharing/l10n/zh_CN.php | 8 +- apps/files_sharing/l10n/zh_HK.php | 4 +- apps/files_sharing/l10n/zh_TW.php | 8 +- apps/files_trashbin/l10n/de_AT.php | 3 +- apps/files_trashbin/l10n/es_CL.php | 5 + apps/files_trashbin/l10n/eu_ES.php | 5 + apps/files_trashbin/l10n/he.php | 1 + apps/files_trashbin/l10n/ja_JP.php | 4 +- apps/files_trashbin/l10n/km.php | 3 + apps/files_trashbin/l10n/nb_NO.php | 3 +- apps/files_trashbin/l10n/vi.php | 3 +- apps/files_versions/l10n/km.php | 10 + apps/files_versions/l10n/nb_NO.php | 4 + apps/files_versions/l10n/sq.php | 5 + apps/files_versions/l10n/vi.php | 3 + apps/files_versions/l10n/zh_CN.php | 3 + apps/user_ldap/l10n/ca.php | 3 - apps/user_ldap/l10n/cs_CZ.php | 3 - apps/user_ldap/l10n/de.php | 3 - apps/user_ldap/l10n/de_AT.php | 5 +- apps/user_ldap/l10n/de_DE.php | 3 - apps/user_ldap/l10n/el.php | 5 +- apps/user_ldap/l10n/en_GB.php | 3 - apps/user_ldap/l10n/es.php | 5 +- apps/user_ldap/l10n/es_AR.php | 28 +- apps/user_ldap/l10n/es_CL.php | 1 + apps/user_ldap/l10n/es_MX.php | 3 - apps/user_ldap/l10n/et_EE.php | 3 - apps/user_ldap/l10n/eu.php | 3 - apps/user_ldap/l10n/eu_ES.php | 7 + apps/user_ldap/l10n/fr.php | 3 - apps/user_ldap/l10n/gl.php | 3 - apps/user_ldap/l10n/hu_HU.php | 3 - apps/user_ldap/l10n/it.php | 3 - apps/user_ldap/l10n/ja_JP.php | 67 +-- apps/user_ldap/l10n/km.php | 16 +- apps/user_ldap/l10n/ko.php | 3 - apps/user_ldap/l10n/ml.php | 6 + apps/user_ldap/l10n/mn.php | 6 + apps/user_ldap/l10n/nb_NO.php | 63 +- apps/user_ldap/l10n/nl.php | 3 - apps/user_ldap/l10n/pl.php | 35 +- apps/user_ldap/l10n/pt_BR.php | 3 - apps/user_ldap/l10n/pt_PT.php | 35 +- apps/user_ldap/l10n/ru.php | 5 +- apps/user_ldap/l10n/sk_SK.php | 25 +- apps/user_ldap/l10n/sl.php | 3 - apps/user_ldap/l10n/su.php | 6 + apps/user_ldap/l10n/sv.php | 5 +- apps/user_ldap/l10n/te.php | 3 +- apps/user_ldap/l10n/tr.php | 3 - apps/user_ldap/l10n/vi.php | 1 + apps/user_ldap/l10n/zh_CN.php | 2 + apps/user_webdavauth/l10n/id.php | 4 +- apps/user_webdavauth/l10n/km.php | 7 + apps/user_webdavauth/l10n/nb_NO.php | 4 +- apps/user_webdavauth/l10n/vi.php | 4 +- core/l10n/af_ZA.php | 1 - core/l10n/ar.php | 2 +- core/l10n/be.php | 1 - core/l10n/bg_BG.php | 30 +- core/l10n/bn_BD.php | 1 - core/l10n/ca.php | 3 - core/l10n/cs_CZ.php | 5 +- core/l10n/cy_GB.php | 1 - core/l10n/da.php | 3 - core/l10n/de.php | 3 - core/l10n/de_AT.php | 30 +- core/l10n/de_CH.php | 2 - core/l10n/de_DE.php | 5 +- core/l10n/el.php | 4 +- core/l10n/en_GB.php | 3 - core/l10n/eo.php | 39 +- core/l10n/es.php | 5 +- core/l10n/es_AR.php | 47 +- core/l10n/es_CL.php | 38 ++ core/l10n/es_MX.php | 3 - core/l10n/et_EE.php | 5 +- core/l10n/eu.php | 3 - core/l10n/eu_ES.php | 12 + core/l10n/fa.php | 3 +- core/l10n/fi_FI.php | 14 +- core/l10n/fr.php | 3 - core/l10n/gl.php | 3 - core/l10n/he.php | 2 - core/l10n/hi.php | 1 - core/l10n/hr.php | 1 - core/l10n/hu_HU.php | 3 - core/l10n/ia.php | 1 - core/l10n/id.php | 3 - core/l10n/is.php | 1 - core/l10n/it.php | 3 - core/l10n/ja_JP.php | 63 +- core/l10n/ka_GE.php | 1 - core/l10n/km.php | 88 ++- core/l10n/ko.php | 3 - core/l10n/ku_IQ.php | 4 +- core/l10n/lb.php | 2 - core/l10n/lt_LT.php | 11 +- core/l10n/lv.php | 2 - core/l10n/mk.php | 1 - core/l10n/ml.php | 9 + core/l10n/mn.php | 9 + core/l10n/ms_MY.php | 1 - core/l10n/my_MM.php | 1 - core/l10n/nb_NO.php | 78 ++- core/l10n/nl.php | 3 - core/l10n/nn_NO.php | 2 - core/l10n/oc.php | 1 - core/l10n/pl.php | 3 - core/l10n/pt_BR.php | 3 - core/l10n/pt_PT.php | 34 +- core/l10n/ro.php | 2 - core/l10n/ru.php | 3 - core/l10n/si_LK.php | 1 - core/l10n/sk.php | 3 +- core/l10n/sk_SK.php | 21 +- core/l10n/sl.php | 3 - core/l10n/sq.php | 2 - core/l10n/sr.php | 1 - core/l10n/sr@latin.php | 1 - core/l10n/su.php | 9 + core/l10n/sv.php | 3 - core/l10n/ta_LK.php | 1 - core/l10n/te.php | 11 +- core/l10n/th_TH.php | 1 - core/l10n/tr.php | 3 - core/l10n/ug.php | 1 - core/l10n/uk.php | 3 - core/l10n/ur_PK.php | 1 - core/l10n/vi.php | 67 ++- core/l10n/zh_CN.php | 47 +- core/l10n/zh_HK.php | 1 - core/l10n/zh_TW.php | 3 - l10n/ach/core.po | 219 ++++--- l10n/ach/files.po | 195 +++--- l10n/ach/files_encryption.po | 16 +- l10n/ach/files_external.po | 38 +- l10n/ach/files_sharing.po | 36 +- l10n/ach/files_trashbin.po | 32 +- l10n/ach/lib.po | 105 ++-- l10n/ach/settings.po | 384 ++++++++---- l10n/ach/user_ldap.po | 88 +-- l10n/ady/core.po | 219 ++++--- l10n/ady/files.po | 195 +++--- l10n/ady/files_encryption.po | 16 +- l10n/ady/files_external.po | 38 +- l10n/ady/files_sharing.po | 36 +- l10n/ady/files_trashbin.po | 32 +- l10n/ady/lib.po | 105 ++-- l10n/ady/settings.po | 384 ++++++++---- l10n/ady/user_ldap.po | 88 +-- l10n/af/core.po | 219 ++++--- l10n/af/files.po | 195 +++--- l10n/af/files_encryption.po | 16 +- l10n/af/files_external.po | 38 +- l10n/af/files_sharing.po | 36 +- l10n/af/files_trashbin.po | 32 +- l10n/af/lib.po | 105 ++-- l10n/af/settings.po | 384 ++++++++---- l10n/af/user_ldap.po | 88 +-- l10n/af_ZA/core.po | 221 ++++--- l10n/af_ZA/files.po | 195 +++--- l10n/af_ZA/files_encryption.po | 16 +- l10n/af_ZA/files_external.po | 38 +- l10n/af_ZA/files_sharing.po | 36 +- l10n/af_ZA/files_trashbin.po | 32 +- l10n/af_ZA/lib.po | 105 ++-- l10n/af_ZA/settings.po | 384 ++++++++---- l10n/af_ZA/user_ldap.po | 88 +-- l10n/ak/core.po | 219 ++++--- l10n/ak/files.po | 195 +++--- l10n/ak/files_encryption.po | 16 +- l10n/ak/files_external.po | 36 +- l10n/ak/files_sharing.po | 36 +- l10n/ak/files_trashbin.po | 18 +- l10n/ak/lib.po | 103 ++-- l10n/ak/settings.po | 384 ++++++++---- l10n/ak/user_ldap.po | 82 +-- l10n/ar/core.po | 223 ++++--- l10n/ar/files.po | 201 ++++--- l10n/ar/files_encryption.po | 95 +-- l10n/ar/files_external.po | 36 +- l10n/ar/files_sharing.po | 40 +- l10n/ar/files_trashbin.po | 30 +- l10n/ar/lib.po | 124 ++-- l10n/ar/settings.po | 506 ++++++++++------ l10n/ar/user_ldap.po | 82 +-- l10n/az/core.po | 219 ++++--- l10n/az/files.po | 195 +++--- l10n/az/files_encryption.po | 16 +- l10n/az/files_external.po | 36 +- l10n/az/files_sharing.po | 36 +- l10n/az/files_trashbin.po | 20 +- l10n/az/lib.po | 105 ++-- l10n/az/settings.po | 384 ++++++++---- l10n/az/user_ldap.po | 82 +-- l10n/be/core.po | 221 ++++--- l10n/be/files.po | 193 +++--- l10n/be/files_encryption.po | 16 +- l10n/be/files_external.po | 38 +- l10n/be/files_sharing.po | 36 +- l10n/be/files_trashbin.po | 16 +- l10n/be/lib.po | 101 ++-- l10n/be/settings.po | 382 ++++++++---- l10n/be/user_ldap.po | 80 +-- l10n/bg_BG/core.po | 284 +++++---- l10n/bg_BG/files.po | 195 +++--- l10n/bg_BG/files_encryption.po | 18 +- l10n/bg_BG/files_external.po | 38 +- l10n/bg_BG/files_sharing.po | 40 +- l10n/bg_BG/files_trashbin.po | 30 +- l10n/bg_BG/lib.po | 115 ++-- l10n/bg_BG/settings.po | 390 ++++++++---- l10n/bg_BG/user_ldap.po | 82 +-- l10n/bn_BD/core.po | 221 ++++--- l10n/bn_BD/files.po | 199 +++--- l10n/bn_BD/files_encryption.po | 18 +- l10n/bn_BD/files_external.po | 38 +- l10n/bn_BD/files_sharing.po | 40 +- l10n/bn_BD/files_trashbin.po | 30 +- l10n/bn_BD/lib.po | 105 ++-- l10n/bn_BD/settings.po | 390 ++++++++---- l10n/bn_BD/user_ldap.po | 82 +-- l10n/bs/core.po | 219 ++++--- l10n/bs/files.po | 195 +++--- l10n/bs/files_encryption.po | 18 +- l10n/bs/files_external.po | 38 +- l10n/bs/files_sharing.po | 36 +- l10n/bs/files_trashbin.po | 32 +- l10n/bs/lib.po | 105 ++-- l10n/bs/settings.po | 386 ++++++++---- l10n/bs/user_ldap.po | 82 +-- l10n/ca/core.po | 223 ++++--- l10n/ca/files.po | 207 ++++--- l10n/ca/files_encryption.po | 18 +- l10n/ca/files_external.po | 38 +- l10n/ca/files_sharing.po | 40 +- l10n/ca/files_trashbin.po | 30 +- l10n/ca/lib.po | 115 ++-- l10n/ca/settings.po | 398 ++++++++---- l10n/ca/user_ldap.po | 88 +-- l10n/cs_CZ/core.po | 227 +++---- l10n/cs_CZ/files.po | 201 ++++--- l10n/cs_CZ/files_encryption.po | 18 +- l10n/cs_CZ/files_external.po | 38 +- l10n/cs_CZ/files_sharing.po | 40 +- l10n/cs_CZ/files_trashbin.po | 30 +- l10n/cs_CZ/lib.po | 115 ++-- l10n/cs_CZ/settings.po | 398 ++++++++---- l10n/cs_CZ/user_ldap.po | 88 +-- l10n/cy_GB/core.po | 221 ++++--- l10n/cy_GB/files.po | 199 +++--- l10n/cy_GB/files_encryption.po | 18 +- l10n/cy_GB/files_external.po | 36 +- l10n/cy_GB/files_sharing.po | 40 +- l10n/cy_GB/files_trashbin.po | 30 +- l10n/cy_GB/lib.po | 115 ++-- l10n/cy_GB/settings.po | 386 ++++++++---- l10n/cy_GB/user_ldap.po | 82 +-- l10n/da/core.po | 223 ++++--- l10n/da/files.po | 201 ++++--- l10n/da/files_encryption.po | 18 +- l10n/da/files_external.po | 38 +- l10n/da/files_sharing.po | 40 +- l10n/da/files_trashbin.po | 30 +- l10n/da/lib.po | 115 ++-- l10n/da/settings.po | 392 ++++++++---- l10n/da/user_ldap.po | 82 +-- l10n/de/core.po | 227 +++---- l10n/de/files.po | 205 ++++--- l10n/de/files_encryption.po | 18 +- l10n/de/files_external.po | 38 +- l10n/de/files_sharing.po | 40 +- l10n/de/files_trashbin.po | 20 +- l10n/de/lib.po | 115 ++-- l10n/de/settings.po | 392 ++++++++---- l10n/de/user_ldap.po | 90 +-- l10n/de_AT/core.po | 303 +++++----- l10n/de_AT/files.po | 203 ++++--- l10n/de_AT/files_encryption.po | 16 +- l10n/de_AT/files_external.po | 40 +- l10n/de_AT/files_sharing.po | 38 +- l10n/de_AT/files_trashbin.po | 34 +- l10n/de_AT/lib.po | 109 ++-- l10n/de_AT/settings.po | 396 ++++++++---- l10n/de_AT/user_ldap.po | 94 +-- l10n/de_CH/core.po | 225 +++---- l10n/de_CH/files.po | 203 ++++--- l10n/de_CH/files_encryption.po | 20 +- l10n/de_CH/files_external.po | 38 +- l10n/de_CH/files_sharing.po | 40 +- l10n/de_CH/files_trashbin.po | 30 +- l10n/de_CH/lib.po | 115 ++-- l10n/de_CH/settings.po | 392 ++++++++---- l10n/de_CH/user_ldap.po | 84 +-- l10n/de_DE/core.po | 230 +++---- l10n/de_DE/files.po | 205 ++++--- l10n/de_DE/files_encryption.po | 18 +- l10n/de_DE/files_external.po | 38 +- l10n/de_DE/files_sharing.po | 40 +- l10n/de_DE/files_trashbin.po | 30 +- l10n/de_DE/lib.po | 118 ++-- l10n/de_DE/settings.po | 392 ++++++++---- l10n/de_DE/user_ldap.po | 90 +-- l10n/el/core.po | 227 +++---- l10n/el/files.po | 201 ++++--- l10n/el/files_encryption.po | 18 +- l10n/el/files_external.po | 38 +- l10n/el/files_sharing.po | 40 +- l10n/el/files_trashbin.po | 18 +- l10n/el/lib.po | 117 ++-- l10n/el/settings.po | 409 ++++++++----- l10n/el/user_ldap.po | 94 +-- l10n/en@pirate/core.po | 219 ++++--- l10n/en@pirate/files.po | 195 +++--- l10n/en@pirate/files_encryption.po | 16 +- l10n/en@pirate/files_external.po | 38 +- l10n/en@pirate/files_sharing.po | 38 +- l10n/en@pirate/files_trashbin.po | 32 +- l10n/en@pirate/lib.po | 105 ++-- l10n/en@pirate/settings.po | 384 ++++++++---- l10n/en@pirate/user_ldap.po | 88 +-- l10n/en_GB/core.po | 223 ++++--- l10n/en_GB/files.po | 201 ++++--- l10n/en_GB/files_encryption.po | 18 +- l10n/en_GB/files_external.po | 38 +- l10n/en_GB/files_sharing.po | 40 +- l10n/en_GB/files_trashbin.po | 30 +- l10n/en_GB/lib.po | 115 ++-- l10n/en_GB/settings.po | 392 ++++++++---- l10n/en_GB/user_ldap.po | 88 +-- l10n/eo/core.po | 297 ++++----- l10n/eo/files.po | 201 ++++--- l10n/eo/files_encryption.po | 18 +- l10n/eo/files_external.po | 38 +- l10n/eo/files_sharing.po | 40 +- l10n/eo/files_trashbin.po | 30 +- l10n/eo/lib.po | 127 ++-- l10n/eo/settings.po | 390 ++++++++---- l10n/eo/user_ldap.po | 82 +-- l10n/es/core.po | 229 +++---- l10n/es/files.po | 210 +++---- l10n/es/files_encryption.po | 18 +- l10n/es/files_external.po | 38 +- l10n/es/files_sharing.po | 40 +- l10n/es/files_trashbin.po | 30 +- l10n/es/lib.po | 118 ++-- l10n/es/settings.po | 397 ++++++++---- l10n/es/user_ldap.po | 91 +-- l10n/es_AR/core.po | 306 +++++----- l10n/es_AR/files.po | 495 +++++++-------- l10n/es_AR/files_encryption.po | 36 +- l10n/es_AR/files_external.po | 38 +- l10n/es_AR/files_sharing.po | 51 +- l10n/es_AR/files_trashbin.po | 30 +- l10n/es_AR/lib.po | 118 ++-- l10n/es_AR/settings.po | 480 +++++++++------ l10n/es_AR/user_ldap.po | 139 +++-- l10n/es_CL/core.po | 326 +++++----- l10n/es_CL/files.po | 201 ++++--- l10n/es_CL/files_encryption.po | 16 +- l10n/es_CL/files_external.po | 36 +- l10n/es_CL/files_sharing.po | 36 +- l10n/es_CL/files_trashbin.po | 20 +- l10n/es_CL/lib.po | 123 ++-- l10n/es_CL/settings.po | 386 ++++++++---- l10n/es_CL/user_ldap.po | 84 +-- l10n/es_MX/core.po | 223 ++++--- l10n/es_MX/files.po | 201 ++++--- l10n/es_MX/files_encryption.po | 18 +- l10n/es_MX/files_external.po | 38 +- l10n/es_MX/files_sharing.po | 40 +- l10n/es_MX/files_trashbin.po | 18 +- l10n/es_MX/lib.po | 113 ++-- l10n/es_MX/settings.po | 392 ++++++++---- l10n/es_MX/user_ldap.po | 88 +-- l10n/et_EE/core.po | 227 +++---- l10n/et_EE/files.po | 201 ++++--- l10n/et_EE/files_encryption.po | 18 +- l10n/et_EE/files_external.po | 38 +- l10n/et_EE/files_sharing.po | 40 +- l10n/et_EE/files_trashbin.po | 30 +- l10n/et_EE/lib.po | 115 ++-- l10n/et_EE/settings.po | 392 ++++++++---- l10n/et_EE/user_ldap.po | 88 +-- l10n/eu/core.po | 223 ++++--- l10n/eu/files.po | 207 ++++--- l10n/eu/files_encryption.po | 18 +- l10n/eu/files_external.po | 38 +- l10n/eu/files_sharing.po | 40 +- l10n/eu/files_trashbin.po | 30 +- l10n/eu/lib.po | 115 ++-- l10n/eu/settings.po | 392 ++++++++---- l10n/eu/user_ldap.po | 88 +-- l10n/eu_ES/core.po | 647 +++++++++++++++----- l10n/eu_ES/files.po | 451 +++++++++----- l10n/eu_ES/files_encryption.po | 191 +++++- l10n/eu_ES/files_external.po | 95 +-- l10n/eu_ES/files_sharing.po | 64 +- l10n/eu_ES/files_trashbin.po | 64 ++ l10n/eu_ES/files_versions.po | 35 +- l10n/eu_ES/lib.po | 323 ++++++++-- l10n/eu_ES/settings.po | 835 ++++++++++++++++++++------ l10n/eu_ES/user_ldap.po | 513 +++++++++++++--- l10n/eu_ES/user_webdavauth.po | 33 + l10n/fa/core.po | 223 ++++--- l10n/fa/files.po | 204 ++++--- l10n/fa/files_encryption.po | 18 +- l10n/fa/files_external.po | 38 +- l10n/fa/files_sharing.po | 40 +- l10n/fa/files_trashbin.po | 30 +- l10n/fa/lib.po | 115 ++-- l10n/fa/settings.po | 448 +++++++++----- l10n/fa/user_ldap.po | 82 +-- l10n/fi_FI/core.po | 244 ++++---- l10n/fi_FI/files.po | 202 ++++--- l10n/fi_FI/files_encryption.po | 21 +- l10n/fi_FI/files_external.po | 38 +- l10n/fi_FI/files_sharing.po | 40 +- l10n/fi_FI/files_trashbin.po | 30 +- l10n/fi_FI/lib.po | 115 ++-- l10n/fi_FI/settings.po | 392 ++++++++---- l10n/fi_FI/user_ldap.po | 82 +-- l10n/fr/core.po | 223 ++++--- l10n/fr/files.po | 203 ++++--- l10n/fr/files_encryption.po | 18 +- l10n/fr/files_external.po | 38 +- l10n/fr/files_sharing.po | 40 +- l10n/fr/files_trashbin.po | 30 +- l10n/fr/lib.po | 115 ++-- l10n/fr/settings.po | 404 +++++++++---- l10n/fr/user_ldap.po | 88 +-- l10n/fr_CA/core.po | 219 ++++--- l10n/fr_CA/files.po | 195 +++--- l10n/fr_CA/files_encryption.po | 16 +- l10n/fr_CA/files_external.po | 36 +- l10n/fr_CA/files_sharing.po | 36 +- l10n/fr_CA/files_trashbin.po | 18 +- l10n/fr_CA/lib.po | 105 ++-- l10n/fr_CA/settings.po | 384 ++++++++---- l10n/fr_CA/user_ldap.po | 88 +-- l10n/gl/core.po | 223 ++++--- l10n/gl/files.po | 201 ++++--- l10n/gl/files_encryption.po | 18 +- l10n/gl/files_external.po | 38 +- l10n/gl/files_sharing.po | 40 +- l10n/gl/files_trashbin.po | 30 +- l10n/gl/lib.po | 115 ++-- l10n/gl/settings.po | 392 ++++++++---- l10n/gl/user_ldap.po | 88 +-- l10n/he/core.po | 221 ++++--- l10n/he/files.po | 195 +++--- l10n/he/files_encryption.po | 18 +- l10n/he/files_external.po | 38 +- l10n/he/files_sharing.po | 40 +- l10n/he/files_trashbin.po | 33 +- l10n/he/lib.po | 105 ++-- l10n/he/settings.po | 390 ++++++++---- l10n/he/user_ldap.po | 82 +-- l10n/hi/core.po | 221 ++++--- l10n/hi/files.po | 195 +++--- l10n/hi/files_encryption.po | 16 +- l10n/hi/files_external.po | 38 +- l10n/hi/files_sharing.po | 36 +- l10n/hi/files_trashbin.po | 32 +- l10n/hi/lib.po | 105 ++-- l10n/hi/settings.po | 386 ++++++++---- l10n/hi/user_ldap.po | 82 +-- l10n/hr/core.po | 221 ++++--- l10n/hr/files.po | 195 +++--- l10n/hr/files_encryption.po | 18 +- l10n/hr/files_external.po | 36 +- l10n/hr/files_sharing.po | 36 +- l10n/hr/files_trashbin.po | 30 +- l10n/hr/lib.po | 105 ++-- l10n/hr/settings.po | 388 ++++++++---- l10n/hr/user_ldap.po | 82 +-- l10n/hu_HU/core.po | 223 ++++--- l10n/hu_HU/files.po | 201 ++++--- l10n/hu_HU/files_encryption.po | 18 +- l10n/hu_HU/files_external.po | 38 +- l10n/hu_HU/files_sharing.po | 40 +- l10n/hu_HU/files_trashbin.po | 30 +- l10n/hu_HU/lib.po | 115 ++-- l10n/hu_HU/settings.po | 392 ++++++++---- l10n/hu_HU/user_ldap.po | 88 +-- l10n/hy/core.po | 219 ++++--- l10n/hy/files.po | 195 +++--- l10n/hy/files_encryption.po | 16 +- l10n/hy/files_external.po | 36 +- l10n/hy/files_sharing.po | 36 +- l10n/hy/files_trashbin.po | 30 +- l10n/hy/lib.po | 105 ++-- l10n/hy/settings.po | 384 ++++++++---- l10n/hy/user_ldap.po | 82 +-- l10n/ia/core.po | 221 ++++--- l10n/ia/files.po | 195 +++--- l10n/ia/files_encryption.po | 16 +- l10n/ia/files_external.po | 36 +- l10n/ia/files_sharing.po | 36 +- l10n/ia/files_trashbin.po | 30 +- l10n/ia/lib.po | 105 ++-- l10n/ia/settings.po | 384 ++++++++---- l10n/ia/user_ldap.po | 82 +-- l10n/id/core.po | 223 ++++--- l10n/id/files.po | 199 +++--- l10n/id/files_encryption.po | 18 +- l10n/id/files_external.po | 38 +- l10n/id/files_sharing.po | 40 +- l10n/id/files_trashbin.po | 16 +- l10n/id/lib.po | 113 ++-- l10n/id/settings.po | 392 ++++++++---- l10n/id/user_ldap.po | 80 +-- l10n/id/user_webdavauth.po | 13 +- l10n/is/core.po | 221 ++++--- l10n/is/files.po | 199 +++--- l10n/is/files_encryption.po | 18 +- l10n/is/files_external.po | 38 +- l10n/is/files_sharing.po | 40 +- l10n/is/files_trashbin.po | 30 +- l10n/is/lib.po | 105 ++-- l10n/is/settings.po | 390 ++++++++---- l10n/is/user_ldap.po | 82 +-- l10n/it/core.po | 227 +++---- l10n/it/files.po | 203 ++++--- l10n/it/files_encryption.po | 20 +- l10n/it/files_external.po | 38 +- l10n/it/files_sharing.po | 42 +- l10n/it/files_trashbin.po | 30 +- l10n/it/lib.po | 121 ++-- l10n/it/settings.po | 394 ++++++++---- l10n/it/user_ldap.po | 90 +-- l10n/ja_JP/core.po | 288 +++++---- l10n/ja_JP/files.po | 492 +++++++-------- l10n/ja_JP/files_encryption.po | 49 +- l10n/ja_JP/files_external.po | 55 +- l10n/ja_JP/files_sharing.po | 40 +- l10n/ja_JP/files_trashbin.po | 35 +- l10n/ja_JP/lib.po | 158 ++--- l10n/ja_JP/settings.po | 481 +++++++++------ l10n/ja_JP/user_ldap.po | 163 ++--- l10n/ka_GE/core.po | 221 ++++--- l10n/ka_GE/files.po | 199 +++--- l10n/ka_GE/files_encryption.po | 18 +- l10n/ka_GE/files_external.po | 38 +- l10n/ka_GE/files_sharing.po | 40 +- l10n/ka_GE/files_trashbin.po | 30 +- l10n/ka_GE/lib.po | 115 ++-- l10n/ka_GE/settings.po | 390 ++++++++---- l10n/ka_GE/user_ldap.po | 82 +-- l10n/km/core.po | 412 +++++++------ l10n/km/files.po | 217 +++---- l10n/km/files_encryption.po | 16 +- l10n/km/files_external.po | 42 +- l10n/km/files_sharing.po | 39 +- l10n/km/files_trashbin.po | 36 +- l10n/km/files_versions.po | 31 +- l10n/km/lib.po | 206 ++++--- l10n/km/settings.po | 530 ++++++++++------ l10n/km/user_ldap.po | 117 ++-- l10n/km/user_webdavauth.po | 15 +- l10n/kn/core.po | 219 ++++--- l10n/kn/files.po | 195 +++--- l10n/kn/files_encryption.po | 16 +- l10n/kn/files_external.po | 38 +- l10n/kn/files_sharing.po | 36 +- l10n/kn/files_trashbin.po | 32 +- l10n/kn/lib.po | 105 ++-- l10n/kn/settings.po | 384 ++++++++---- l10n/kn/user_ldap.po | 88 +-- l10n/ko/core.po | 223 ++++--- l10n/ko/files.po | 201 ++++--- l10n/ko/files_encryption.po | 18 +- l10n/ko/files_external.po | 38 +- l10n/ko/files_sharing.po | 40 +- l10n/ko/files_trashbin.po | 18 +- l10n/ko/lib.po | 115 ++-- l10n/ko/settings.po | 392 ++++++++---- l10n/ko/user_ldap.po | 88 +-- l10n/ku_IQ/core.po | 227 +++---- l10n/ku_IQ/files.po | 197 +++--- l10n/ku_IQ/files_encryption.po | 18 +- l10n/ku_IQ/files_external.po | 38 +- l10n/ku_IQ/files_sharing.po | 40 +- l10n/ku_IQ/files_trashbin.po | 32 +- l10n/ku_IQ/lib.po | 107 ++-- l10n/ku_IQ/settings.po | 386 ++++++++---- l10n/ku_IQ/user_ldap.po | 82 +-- l10n/lb/core.po | 221 ++++--- l10n/lb/files.po | 195 +++--- l10n/lb/files_encryption.po | 18 +- l10n/lb/files_external.po | 36 +- l10n/lb/files_sharing.po | 40 +- l10n/lb/files_trashbin.po | 30 +- l10n/lb/lib.po | 105 ++-- l10n/lb/settings.po | 388 ++++++++---- l10n/lb/user_ldap.po | 82 +-- l10n/lt_LT/core.po | 241 ++++---- l10n/lt_LT/files.po | 213 +++---- l10n/lt_LT/files_encryption.po | 24 +- l10n/lt_LT/files_external.po | 38 +- l10n/lt_LT/files_sharing.po | 40 +- l10n/lt_LT/files_trashbin.po | 30 +- l10n/lt_LT/lib.po | 115 ++-- l10n/lt_LT/settings.po | 398 ++++++++---- l10n/lt_LT/user_ldap.po | 82 +-- l10n/lv/core.po | 221 ++++--- l10n/lv/files.po | 199 +++--- l10n/lv/files_encryption.po | 18 +- l10n/lv/files_external.po | 38 +- l10n/lv/files_sharing.po | 40 +- l10n/lv/files_trashbin.po | 30 +- l10n/lv/lib.po | 115 ++-- l10n/lv/settings.po | 390 ++++++++---- l10n/lv/user_ldap.po | 82 +-- l10n/mk/core.po | 221 ++++--- l10n/mk/files.po | 199 +++--- l10n/mk/files_encryption.po | 18 +- l10n/mk/files_external.po | 38 +- l10n/mk/files_sharing.po | 40 +- l10n/mk/files_trashbin.po | 30 +- l10n/mk/lib.po | 105 ++-- l10n/mk/settings.po | 392 ++++++++---- l10n/mk/user_ldap.po | 82 +-- l10n/ml/core.po | 798 ++++++++++++++++++++++++ l10n/ml/files.po | 420 +++++++++++++ l10n/ml/files_encryption.po | 201 +++++++ l10n/ml/files_external.po | 127 ++++ l10n/ml/files_sharing.po | 72 +++ l10n/ml/files_trashbin.po | 64 ++ l10n/ml/files_versions.po | 43 ++ l10n/ml/lib.po | 338 +++++++++++ l10n/ml/settings.po | 808 +++++++++++++++++++++++++ l10n/ml/user_ldap.po | 523 ++++++++++++++++ l10n/ml/user_webdavauth.po | 33 + l10n/ml_IN/core.po | 219 ++++--- l10n/ml_IN/files.po | 195 +++--- l10n/ml_IN/files_encryption.po | 16 +- l10n/ml_IN/files_external.po | 38 +- l10n/ml_IN/files_sharing.po | 36 +- l10n/ml_IN/files_trashbin.po | 32 +- l10n/ml_IN/lib.po | 105 ++-- l10n/ml_IN/settings.po | 384 ++++++++---- l10n/ml_IN/user_ldap.po | 88 +-- l10n/mn/core.po | 798 ++++++++++++++++++++++++ l10n/mn/files.po | 420 +++++++++++++ l10n/mn/files_encryption.po | 201 +++++++ l10n/mn/files_external.po | 127 ++++ l10n/mn/files_sharing.po | 72 +++ l10n/mn/files_trashbin.po | 64 ++ l10n/mn/files_versions.po | 43 ++ l10n/mn/lib.po | 338 +++++++++++ l10n/mn/settings.po | 808 +++++++++++++++++++++++++ l10n/mn/user_ldap.po | 523 ++++++++++++++++ l10n/mn/user_webdavauth.po | 33 + l10n/ms_MY/core.po | 221 ++++--- l10n/ms_MY/files.po | 195 +++--- l10n/ms_MY/files_encryption.po | 18 +- l10n/ms_MY/files_external.po | 36 +- l10n/ms_MY/files_sharing.po | 36 +- l10n/ms_MY/files_trashbin.po | 30 +- l10n/ms_MY/lib.po | 105 ++-- l10n/ms_MY/settings.po | 388 ++++++++---- l10n/ms_MY/user_ldap.po | 82 +-- l10n/my_MM/core.po | 221 ++++--- l10n/my_MM/files.po | 195 +++--- l10n/my_MM/files_encryption.po | 16 +- l10n/my_MM/files_external.po | 38 +- l10n/my_MM/files_sharing.po | 36 +- l10n/my_MM/files_trashbin.po | 32 +- l10n/my_MM/lib.po | 105 ++-- l10n/my_MM/settings.po | 384 ++++++++---- l10n/my_MM/user_ldap.po | 88 +-- l10n/nb_NO/core.po | 366 +++++------ l10n/nb_NO/files.po | 498 +++++++-------- l10n/nb_NO/files_encryption.po | 95 +-- l10n/nb_NO/files_external.po | 38 +- l10n/nb_NO/files_sharing.po | 59 +- l10n/nb_NO/files_trashbin.po | 35 +- l10n/nb_NO/files_versions.po | 28 +- l10n/nb_NO/lib.po | 165 ++--- l10n/nb_NO/settings.po | 504 ++++++++++------ l10n/nb_NO/user_ldap.po | 211 ++++--- l10n/nb_NO/user_webdavauth.po | 13 +- l10n/nds/core.po | 219 ++++--- l10n/nds/files.po | 195 +++--- l10n/nds/files_encryption.po | 16 +- l10n/nds/files_external.po | 38 +- l10n/nds/files_sharing.po | 36 +- l10n/nds/files_trashbin.po | 32 +- l10n/nds/lib.po | 105 ++-- l10n/nds/settings.po | 384 ++++++++---- l10n/nds/user_ldap.po | 88 +-- l10n/ne/core.po | 219 ++++--- l10n/ne/files.po | 195 +++--- l10n/ne/files_encryption.po | 16 +- l10n/ne/files_external.po | 38 +- l10n/ne/files_sharing.po | 36 +- l10n/ne/files_trashbin.po | 32 +- l10n/ne/lib.po | 105 ++-- l10n/ne/settings.po | 384 ++++++++---- l10n/ne/user_ldap.po | 88 +-- l10n/nl/core.po | 223 ++++--- l10n/nl/files.po | 201 ++++--- l10n/nl/files_encryption.po | 18 +- l10n/nl/files_external.po | 38 +- l10n/nl/files_sharing.po | 40 +- l10n/nl/files_trashbin.po | 30 +- l10n/nl/lib.po | 115 ++-- l10n/nl/settings.po | 396 ++++++++---- l10n/nl/user_ldap.po | 88 +-- l10n/nn_NO/core.po | 221 ++++--- l10n/nn_NO/files.po | 199 +++--- l10n/nn_NO/files_encryption.po | 18 +- l10n/nn_NO/files_external.po | 36 +- l10n/nn_NO/files_sharing.po | 40 +- l10n/nn_NO/files_trashbin.po | 30 +- l10n/nn_NO/lib.po | 105 ++-- l10n/nn_NO/settings.po | 392 ++++++++---- l10n/nn_NO/user_ldap.po | 82 +-- l10n/nqo/core.po | 219 ++++--- l10n/nqo/files.po | 195 +++--- l10n/nqo/files_encryption.po | 16 +- l10n/nqo/files_external.po | 38 +- l10n/nqo/files_sharing.po | 36 +- l10n/nqo/files_trashbin.po | 32 +- l10n/nqo/lib.po | 105 ++-- l10n/nqo/settings.po | 384 ++++++++---- l10n/nqo/user_ldap.po | 88 +-- l10n/oc/core.po | 221 ++++--- l10n/oc/files.po | 195 +++--- l10n/oc/files_encryption.po | 18 +- l10n/oc/files_external.po | 36 +- l10n/oc/files_sharing.po | 36 +- l10n/oc/files_trashbin.po | 30 +- l10n/oc/lib.po | 105 ++-- l10n/oc/settings.po | 390 ++++++++---- l10n/oc/user_ldap.po | 82 +-- l10n/pa/core.po | 219 ++++--- l10n/pa/files.po | 195 +++--- l10n/pa/files_encryption.po | 18 +- l10n/pa/files_external.po | 36 +- l10n/pa/files_sharing.po | 36 +- l10n/pa/files_trashbin.po | 30 +- l10n/pa/lib.po | 105 ++-- l10n/pa/settings.po | 386 ++++++++---- l10n/pa/user_ldap.po | 88 +-- l10n/pl/core.po | 223 ++++--- l10n/pl/files.po | 207 ++++--- l10n/pl/files_encryption.po | 18 +- l10n/pl/files_external.po | 38 +- l10n/pl/files_sharing.po | 40 +- l10n/pl/files_trashbin.po | 30 +- l10n/pl/lib.po | 115 ++-- l10n/pl/settings.po | 404 +++++++++---- l10n/pl/user_ldap.po | 160 ++--- l10n/pt_BR/core.po | 223 ++++--- l10n/pt_BR/files.po | 201 ++++--- l10n/pt_BR/files_encryption.po | 18 +- l10n/pt_BR/files_external.po | 38 +- l10n/pt_BR/files_sharing.po | 40 +- l10n/pt_BR/files_trashbin.po | 30 +- l10n/pt_BR/lib.po | 115 ++-- l10n/pt_BR/settings.po | 392 ++++++++---- l10n/pt_BR/user_ldap.po | 88 +-- l10n/pt_PT/core.po | 284 +++++---- l10n/pt_PT/files.po | 494 +++++++-------- l10n/pt_PT/files_encryption.po | 18 +- l10n/pt_PT/files_external.po | 38 +- l10n/pt_PT/files_sharing.po | 40 +- l10n/pt_PT/files_trashbin.po | 30 +- l10n/pt_PT/lib.po | 115 ++-- l10n/pt_PT/settings.po | 392 ++++++++---- l10n/pt_PT/user_ldap.po | 157 ++--- l10n/ro/core.po | 221 ++++--- l10n/ro/files.po | 199 +++--- l10n/ro/files_encryption.po | 49 +- l10n/ro/files_external.po | 38 +- l10n/ro/files_sharing.po | 40 +- l10n/ro/files_trashbin.po | 30 +- l10n/ro/lib.po | 107 ++-- l10n/ro/settings.po | 390 ++++++++---- l10n/ro/user_ldap.po | 82 +-- l10n/ru/core.po | 225 +++---- l10n/ru/files.po | 272 +++++---- l10n/ru/files_encryption.po | 18 +- l10n/ru/files_external.po | 38 +- l10n/ru/files_sharing.po | 47 +- l10n/ru/files_trashbin.po | 18 +- l10n/ru/lib.po | 115 ++-- l10n/ru/settings.po | 392 ++++++++---- l10n/ru/user_ldap.po | 91 +-- l10n/si_LK/core.po | 221 ++++--- l10n/si_LK/files.po | 195 +++--- l10n/si_LK/files_encryption.po | 18 +- l10n/si_LK/files_external.po | 38 +- l10n/si_LK/files_sharing.po | 40 +- l10n/si_LK/files_trashbin.po | 30 +- l10n/si_LK/lib.po | 105 ++-- l10n/si_LK/settings.po | 388 ++++++++---- l10n/si_LK/user_ldap.po | 82 +-- l10n/sk/core.po | 219 ++++--- l10n/sk/files.po | 193 +++--- l10n/sk/files_encryption.po | 16 +- l10n/sk/files_external.po | 34 +- l10n/sk/files_sharing.po | 34 +- l10n/sk/files_trashbin.po | 16 +- l10n/sk/lib.po | 101 ++-- l10n/sk/settings.po | 382 ++++++++---- l10n/sk/user_ldap.po | 80 +-- l10n/sk_SK/core.po | 243 ++++---- l10n/sk_SK/files.po | 207 ++++--- l10n/sk_SK/files_encryption.po | 18 +- l10n/sk_SK/files_external.po | 38 +- l10n/sk_SK/files_sharing.po | 40 +- l10n/sk_SK/files_trashbin.po | 30 +- l10n/sk_SK/lib.po | 115 ++-- l10n/sk_SK/settings.po | 410 ++++++++----- l10n/sk_SK/user_ldap.po | 112 ++-- l10n/sk_SK/user_webdavauth.po | 6 +- l10n/sl/core.po | 223 ++++--- l10n/sl/files.po | 201 ++++--- l10n/sl/files_encryption.po | 18 +- l10n/sl/files_external.po | 38 +- l10n/sl/files_sharing.po | 40 +- l10n/sl/files_trashbin.po | 30 +- l10n/sl/lib.po | 115 ++-- l10n/sl/settings.po | 392 ++++++++---- l10n/sl/user_ldap.po | 88 +-- l10n/sq/core.po | 221 ++++--- l10n/sq/files.po | 208 ++++--- l10n/sq/files_encryption.po | 18 +- l10n/sq/files_external.po | 36 +- l10n/sq/files_sharing.po | 51 +- l10n/sq/files_trashbin.po | 30 +- l10n/sq/files_versions.po | 29 +- l10n/sq/lib.po | 115 ++-- l10n/sq/settings.po | 392 ++++++++---- l10n/sq/user_ldap.po | 82 +-- l10n/sr/core.po | 221 ++++--- l10n/sr/files.po | 199 +++--- l10n/sr/files_encryption.po | 18 +- l10n/sr/files_external.po | 36 +- l10n/sr/files_sharing.po | 36 +- l10n/sr/files_trashbin.po | 30 +- l10n/sr/lib.po | 105 ++-- l10n/sr/settings.po | 390 ++++++++---- l10n/sr/user_ldap.po | 82 +-- l10n/sr@latin/core.po | 221 ++++--- l10n/sr@latin/files.po | 197 +++--- l10n/sr@latin/files_encryption.po | 16 +- l10n/sr@latin/files_external.po | 36 +- l10n/sr@latin/files_sharing.po | 36 +- l10n/sr@latin/files_trashbin.po | 30 +- l10n/sr@latin/lib.po | 105 ++-- l10n/sr@latin/settings.po | 384 ++++++++---- l10n/sr@latin/user_ldap.po | 82 +-- l10n/su/core.po | 793 ++++++++++++++++++++++++ l10n/su/files.po | 417 +++++++++++++ l10n/su/files_encryption.po | 201 +++++++ l10n/su/files_external.po | 127 ++++ l10n/su/files_sharing.po | 72 +++ l10n/su/files_trashbin.po | 64 ++ l10n/su/files_versions.po | 43 ++ l10n/su/lib.po | 334 +++++++++++ l10n/su/settings.po | 808 +++++++++++++++++++++++++ l10n/su/user_ldap.po | 521 ++++++++++++++++ l10n/su/user_webdavauth.po | 33 + l10n/sv/core.po | 223 ++++--- l10n/sv/files.po | 201 ++++--- l10n/sv/files_encryption.po | 18 +- l10n/sv/files_external.po | 38 +- l10n/sv/files_sharing.po | 40 +- l10n/sv/files_trashbin.po | 30 +- l10n/sv/lib.po | 115 ++-- l10n/sv/settings.po | 392 ++++++++---- l10n/sv/user_ldap.po | 93 +-- l10n/sw_KE/core.po | 219 ++++--- l10n/sw_KE/files.po | 195 +++--- l10n/sw_KE/files_encryption.po | 16 +- l10n/sw_KE/files_external.po | 38 +- l10n/sw_KE/files_sharing.po | 36 +- l10n/sw_KE/files_trashbin.po | 32 +- l10n/sw_KE/lib.po | 105 ++-- l10n/sw_KE/settings.po | 384 ++++++++---- l10n/sw_KE/user_ldap.po | 88 +-- l10n/ta_LK/core.po | 221 ++++--- l10n/ta_LK/files.po | 195 +++--- l10n/ta_LK/files_encryption.po | 18 +- l10n/ta_LK/files_external.po | 38 +- l10n/ta_LK/files_sharing.po | 40 +- l10n/ta_LK/files_trashbin.po | 30 +- l10n/ta_LK/lib.po | 105 ++-- l10n/ta_LK/settings.po | 390 ++++++++---- l10n/ta_LK/user_ldap.po | 82 +-- l10n/te/core.po | 242 ++++---- l10n/te/files.po | 195 +++--- l10n/te/files_encryption.po | 16 +- l10n/te/files_external.po | 36 +- l10n/te/files_sharing.po | 36 +- l10n/te/files_trashbin.po | 30 +- l10n/te/lib.po | 115 ++-- l10n/te/settings.po | 384 ++++++++---- l10n/te/user_ldap.po | 84 +-- l10n/templates/core.pot | 215 ++++--- l10n/templates/files.pot | 191 +++--- l10n/templates/files_encryption.pot | 12 +- l10n/templates/files_external.pot | 32 +- l10n/templates/files_sharing.pot | 32 +- l10n/templates/files_trashbin.pot | 14 +- l10n/templates/files_versions.pot | 8 +- l10n/templates/lib.pot | 111 ++-- l10n/templates/private.pot | 110 ++-- l10n/templates/settings.pot | 382 ++++++++---- l10n/templates/user_ldap.pot | 78 +-- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 221 ++++--- l10n/th_TH/files.po | 201 ++++--- l10n/th_TH/files_encryption.po | 18 +- l10n/th_TH/files_external.po | 38 +- l10n/th_TH/files_sharing.po | 40 +- l10n/th_TH/files_trashbin.po | 30 +- l10n/th_TH/lib.po | 105 ++-- l10n/th_TH/settings.po | 390 ++++++++---- l10n/th_TH/user_ldap.po | 82 +-- l10n/tr/core.po | 223 ++++--- l10n/tr/files.po | 201 ++++--- l10n/tr/files_encryption.po | 18 +- l10n/tr/files_external.po | 38 +- l10n/tr/files_sharing.po | 40 +- l10n/tr/files_trashbin.po | 30 +- l10n/tr/lib.po | 113 ++-- l10n/tr/settings.po | 398 ++++++++---- l10n/tr/user_ldap.po | 88 +-- l10n/tzm/core.po | 219 ++++--- l10n/tzm/files.po | 195 +++--- l10n/tzm/files_encryption.po | 16 +- l10n/tzm/files_external.po | 36 +- l10n/tzm/files_sharing.po | 34 +- l10n/tzm/files_trashbin.po | 30 +- l10n/tzm/lib.po | 105 ++-- l10n/tzm/settings.po | 384 ++++++++---- l10n/tzm/user_ldap.po | 88 +-- l10n/ug/core.po | 221 ++++--- l10n/ug/files.po | 197 +++--- l10n/ug/files_encryption.po | 18 +- l10n/ug/files_external.po | 36 +- l10n/ug/files_sharing.po | 36 +- l10n/ug/files_trashbin.po | 30 +- l10n/ug/lib.po | 105 ++-- l10n/ug/settings.po | 390 ++++++++---- l10n/ug/user_ldap.po | 82 +-- l10n/uk/core.po | 223 ++++--- l10n/uk/files.po | 199 +++--- l10n/uk/files_encryption.po | 18 +- l10n/uk/files_external.po | 38 +- l10n/uk/files_sharing.po | 40 +- l10n/uk/files_trashbin.po | 30 +- l10n/uk/lib.po | 115 ++-- l10n/uk/settings.po | 390 ++++++++---- l10n/uk/user_ldap.po | 82 +-- l10n/ur/core.po | 217 ++++--- l10n/ur/files.po | 193 +++--- l10n/ur/files_encryption.po | 14 +- l10n/ur/files_external.po | 34 +- l10n/ur/files_sharing.po | 34 +- l10n/ur/files_trashbin.po | 16 +- l10n/ur/lib.po | 101 ++-- l10n/ur/settings.po | 382 ++++++++---- l10n/ur/user_ldap.po | 80 +-- l10n/ur_PK/core.po | 221 ++++--- l10n/ur_PK/files.po | 195 +++--- l10n/ur_PK/files_encryption.po | 16 +- l10n/ur_PK/files_external.po | 38 +- l10n/ur_PK/files_sharing.po | 36 +- l10n/ur_PK/files_trashbin.po | 32 +- l10n/ur_PK/lib.po | 105 ++-- l10n/ur_PK/settings.po | 384 ++++++++---- l10n/ur_PK/user_ldap.po | 88 +-- l10n/uz/core.po | 219 ++++--- l10n/uz/files.po | 195 +++--- l10n/uz/files_encryption.po | 16 +- l10n/uz/files_external.po | 36 +- l10n/uz/files_sharing.po | 34 +- l10n/uz/files_trashbin.po | 30 +- l10n/uz/lib.po | 105 ++-- l10n/uz/settings.po | 384 ++++++++---- l10n/uz/user_ldap.po | 88 +-- l10n/vi/core.po | 338 ++++++----- l10n/vi/files.po | 492 +++++++-------- l10n/vi/files_encryption.po | 53 +- l10n/vi/files_external.po | 38 +- l10n/vi/files_sharing.po | 40 +- l10n/vi/files_trashbin.po | 35 +- l10n/vi/files_versions.po | 25 +- l10n/vi/lib.po | 117 ++-- l10n/vi/settings.po | 409 ++++++++----- l10n/vi/user_ldap.po | 84 +-- l10n/vi/user_webdavauth.po | 14 +- l10n/zh_CN/core.po | 308 +++++----- l10n/zh_CN/files.po | 494 +++++++-------- l10n/zh_CN/files_encryption.po | 18 +- l10n/zh_CN/files_external.po | 38 +- l10n/zh_CN/files_sharing.po | 51 +- l10n/zh_CN/files_trashbin.po | 30 +- l10n/zh_CN/files_versions.po | 26 +- l10n/zh_CN/lib.po | 123 ++-- l10n/zh_CN/settings.po | 438 +++++++++----- l10n/zh_CN/user_ldap.po | 87 +-- l10n/zh_HK/core.po | 221 ++++--- l10n/zh_HK/files.po | 195 +++--- l10n/zh_HK/files_encryption.po | 16 +- l10n/zh_HK/files_external.po | 36 +- l10n/zh_HK/files_sharing.po | 36 +- l10n/zh_HK/files_trashbin.po | 30 +- l10n/zh_HK/lib.po | 105 ++-- l10n/zh_HK/settings.po | 384 ++++++++---- l10n/zh_HK/user_ldap.po | 82 +-- l10n/zh_TW/core.po | 223 ++++--- l10n/zh_TW/files.po | 199 +++--- l10n/zh_TW/files_encryption.po | 18 +- l10n/zh_TW/files_external.po | 38 +- l10n/zh_TW/files_sharing.po | 40 +- l10n/zh_TW/files_trashbin.po | 30 +- l10n/zh_TW/lib.po | 118 ++-- l10n/zh_TW/settings.po | 392 ++++++++---- l10n/zh_TW/user_ldap.po | 82 +-- lib/l10n/ar.php | 9 +- lib/l10n/bg_BG.php | 5 - lib/l10n/ca.php | 6 - lib/l10n/cs_CZ.php | 6 - lib/l10n/cy_GB.php | 5 - lib/l10n/da.php | 6 - lib/l10n/de.php | 6 - lib/l10n/de_AT.php | 2 + lib/l10n/de_CH.php | 6 - lib/l10n/de_DE.php | 8 +- lib/l10n/el.php | 7 +- lib/l10n/en_GB.php | 6 - lib/l10n/eo.php | 15 +- lib/l10n/es.php | 8 +- lib/l10n/es_AR.php | 7 +- lib/l10n/es_CL.php | 8 +- lib/l10n/es_MX.php | 6 - lib/l10n/et_EE.php | 6 - lib/l10n/eu.php | 6 - lib/l10n/eu_ES.php | 9 + lib/l10n/fa.php | 5 - lib/l10n/fi_FI.php | 5 - lib/l10n/fr.php | 6 - lib/l10n/gl.php | 6 - lib/l10n/hu_HU.php | 6 - lib/l10n/id.php | 6 - lib/l10n/it.php | 8 +- lib/l10n/ja_JP.php | 40 +- lib/l10n/ka_GE.php | 5 - lib/l10n/km.php | 44 +- lib/l10n/ko.php | 6 - lib/l10n/ku_IQ.php | 1 + lib/l10n/lt_LT.php | 6 - lib/l10n/lv.php | 6 - lib/l10n/ml.php | 8 + lib/l10n/mn.php | 8 + lib/l10n/nb_NO.php | 29 + lib/l10n/nl.php | 6 - lib/l10n/pl.php | 6 - lib/l10n/pt_BR.php | 6 - lib/l10n/pt_PT.php | 6 - lib/l10n/ru.php | 6 - lib/l10n/sk_SK.php | 6 - lib/l10n/sl.php | 6 - lib/l10n/sq.php | 5 - lib/l10n/su.php | 8 + lib/l10n/sv.php | 6 - lib/l10n/te.php | 9 +- lib/l10n/tr.php | 6 - lib/l10n/uk.php | 5 - lib/l10n/vi.php | 10 +- lib/l10n/zh_CN.php | 8 +- lib/l10n/zh_TW.php | 7 +- settings/l10n/ar.php | 58 +- settings/l10n/bg_BG.php | 6 +- settings/l10n/bn_BD.php | 6 +- settings/l10n/ca.php | 9 +- settings/l10n/cs_CZ.php | 11 +- settings/l10n/cy_GB.php | 3 +- settings/l10n/da.php | 7 +- settings/l10n/de.php | 7 +- settings/l10n/de_AT.php | 7 +- settings/l10n/de_CH.php | 6 +- settings/l10n/de_DE.php | 7 +- settings/l10n/el.php | 23 +- settings/l10n/en_GB.php | 7 +- settings/l10n/eo.php | 6 +- settings/l10n/es.php | 11 +- settings/l10n/es_AR.php | 44 +- settings/l10n/es_CL.php | 1 + settings/l10n/es_MX.php | 7 +- settings/l10n/et_EE.php | 7 +- settings/l10n/eu.php | 7 +- settings/l10n/eu_ES.php | 7 + settings/l10n/fa.php | 37 +- settings/l10n/fi_FI.php | 7 +- settings/l10n/fr.php | 17 +- settings/l10n/gl.php | 7 +- settings/l10n/he.php | 6 +- settings/l10n/hi.php | 1 - settings/l10n/hr.php | 2 - settings/l10n/hu_HU.php | 7 +- settings/l10n/id.php | 7 +- settings/l10n/is.php | 6 +- settings/l10n/it.php | 7 +- settings/l10n/ja_JP.php | 91 ++- settings/l10n/ka_GE.php | 6 +- settings/l10n/km.php | 74 ++- settings/l10n/ko.php | 7 +- settings/l10n/ku_IQ.php | 3 +- settings/l10n/lb.php | 2 - settings/l10n/lt_LT.php | 10 +- settings/l10n/lv.php | 6 +- settings/l10n/mk.php | 7 +- settings/l10n/ms_MY.php | 2 - settings/l10n/nb_NO.php | 58 +- settings/l10n/nl.php | 9 +- settings/l10n/nn_NO.php | 7 +- settings/l10n/oc.php | 2 - settings/l10n/pa.php | 1 - settings/l10n/pl.php | 12 +- settings/l10n/pt_BR.php | 7 +- settings/l10n/pt_PT.php | 7 +- settings/l10n/ro.php | 6 +- settings/l10n/ru.php | 7 +- settings/l10n/si_LK.php | 4 +- settings/l10n/sk_SK.php | 23 +- settings/l10n/sl.php | 7 +- settings/l10n/sq.php | 5 +- settings/l10n/sr.php | 6 +- settings/l10n/sv.php | 7 +- settings/l10n/ta_LK.php | 4 +- settings/l10n/th_TH.php | 6 +- settings/l10n/tr.php | 13 +- settings/l10n/ug.php | 6 +- settings/l10n/uk.php | 6 +- settings/l10n/vi.php | 15 +- settings/l10n/zh_CN.php | 29 +- settings/l10n/zh_HK.php | 2 +- settings/l10n/zh_TW.php | 7 +- 1385 files changed, 78306 insertions(+), 48973 deletions(-) delete mode 160000 3rdparty create mode 100644 apps/files/l10n/eu_ES.php create mode 100644 apps/files/l10n/ml.php create mode 100644 apps/files/l10n/mn.php create mode 100644 apps/files/l10n/su.php create mode 100644 apps/files_external/l10n/de_AT.php create mode 100644 apps/files_external/l10n/eu_ES.php create mode 100644 apps/files_sharing/l10n/de_AT.php create mode 100644 apps/files_sharing/l10n/km.php create mode 100644 apps/files_trashbin/l10n/es_CL.php create mode 100644 apps/files_trashbin/l10n/eu_ES.php create mode 100644 apps/files_versions/l10n/km.php create mode 100644 apps/user_ldap/l10n/eu_ES.php create mode 100644 apps/user_ldap/l10n/ml.php create mode 100644 apps/user_ldap/l10n/mn.php create mode 100644 apps/user_ldap/l10n/su.php create mode 100644 apps/user_webdavauth/l10n/km.php create mode 100644 core/l10n/eu_ES.php create mode 100644 core/l10n/ml.php create mode 100644 core/l10n/mn.php create mode 100644 core/l10n/su.php create mode 100644 l10n/eu_ES/files_trashbin.po create mode 100644 l10n/eu_ES/user_webdavauth.po create mode 100644 l10n/ml/core.po create mode 100644 l10n/ml/files.po create mode 100644 l10n/ml/files_encryption.po create mode 100644 l10n/ml/files_external.po create mode 100644 l10n/ml/files_sharing.po create mode 100644 l10n/ml/files_trashbin.po create mode 100644 l10n/ml/files_versions.po create mode 100644 l10n/ml/lib.po create mode 100644 l10n/ml/settings.po create mode 100644 l10n/ml/user_ldap.po create mode 100644 l10n/ml/user_webdavauth.po create mode 100644 l10n/mn/core.po create mode 100644 l10n/mn/files.po create mode 100644 l10n/mn/files_encryption.po create mode 100644 l10n/mn/files_external.po create mode 100644 l10n/mn/files_sharing.po create mode 100644 l10n/mn/files_trashbin.po create mode 100644 l10n/mn/files_versions.po create mode 100644 l10n/mn/lib.po create mode 100644 l10n/mn/settings.po create mode 100644 l10n/mn/user_ldap.po create mode 100644 l10n/mn/user_webdavauth.po create mode 100644 l10n/su/core.po create mode 100644 l10n/su/files.po create mode 100644 l10n/su/files_encryption.po create mode 100644 l10n/su/files_external.po create mode 100644 l10n/su/files_sharing.po create mode 100644 l10n/su/files_trashbin.po create mode 100644 l10n/su/files_versions.po create mode 100644 l10n/su/lib.po create mode 100644 l10n/su/settings.po create mode 100644 l10n/su/user_ldap.po create mode 100644 l10n/su/user_webdavauth.po create mode 100644 lib/l10n/eu_ES.php create mode 100644 lib/l10n/ml.php create mode 100644 lib/l10n/mn.php create mode 100644 lib/l10n/su.php create mode 100644 settings/l10n/eu_ES.php diff --git a/3rdparty b/3rdparty deleted file mode 160000 index 184f0a59f8..0000000000 --- a/3rdparty +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 184f0a59f87c590ee7e89ced401205a87f213954 diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 0148f5ca3c..10f2b077fe 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم", "Could not move %s" => "فشل في نقل %s", "File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", "Unable to set upload directory." => "غير قادر على تحميل المجلد", "Invalid Token" => "علامة غير صالحة", "No file was uploaded. Unknown error" => "لم يتم رفع أي ملف , خطأ غير معروف", @@ -14,12 +15,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "المجلد المؤقت غير موجود", "Failed to write to disk" => "خطأ في الكتابة على القرص الصلب", "Not enough storage available" => "لا يوجد مساحة تخزينية كافية", -"Upload failed. Could not get file info." => "فشلت عملية الرفع. تعذر الحصول على معلومات الملف.", "Upload failed. Could not find uploaded file" => "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله.", +"Upload failed. Could not get file info." => "فشلت عملية الرفع. تعذر الحصول على معلومات الملف.", "Invalid directory." => "مسار غير صحيح.", "Files" => "الملفات", "Unable to upload {filename} as it is a directory or has 0 bytes" => "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت", -"Not enough space available" => "لا توجد مساحة كافية", "Upload cancelled." => "تم إلغاء عملية رفع الملفات .", "Could not get result from server." => "تعذر الحصول على نتيجة من الخادم", "File upload is in progress. Leaving the page now will cancel the upload." => "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.", @@ -34,8 +34,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("لا يوجد ملفات %n","ملف %n","2 ملف %n","قليل من ملفات %n","الكثير من ملفات %n"," ملفات %n"), "{dirs} and {files}" => "{dirs} و {files}", "_Uploading %n file_::_Uploading %n files_" => array("لا يوجد ملفات %n لتحميلها","تحميل 1 ملف %n","تحميل 2 ملف %n","يتم تحميل عدد قليل من ملفات %n","يتم تحميل عدد كبير من ملفات %n","يتم تحميل ملفات %n"), -"'.' is an invalid file name." => "\".\" اسم ملف غير صحيح.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", "Your storage is full, files can not be updated or synced anymore!" => "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !", "Your storage is almost full ({usedSpacePercent}%)" => "مساحتك التخزينية امتلأت تقريبا ", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى.", @@ -59,6 +57,7 @@ $TRANSLATIONS = array( "Save" => "حفظ", "New" => "جديد", "Text file" => "ملف", +"New folder" => "مجلد جديد", "Folder" => "مجلد", "From link" => "من رابط", "Deleted files" => "حذف الملفات", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index f7266517e9..11f3525690 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", "Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", "File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", "No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।", "There is no error, the file uploaded with success" => "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ", @@ -13,7 +14,6 @@ $TRANSLATIONS = array( "Failed to write to disk" => "ডিস্কে লিখতে ব্যর্থ", "Invalid directory." => "ভুল ডিরেক্টরি", "Files" => "ফাইল", -"Not enough space available" => "যথেষ্ঠ পরিমাণ স্থান নেই", "Upload cancelled." => "আপলোড বাতিল করা হয়েছে।", "File upload is in progress. Leaving the page now will cancel the upload." => "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।", "{new_name} already exists" => "{new_name} টি বিদ্যমান", @@ -25,8 +25,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", "Error" => "সমস্যা", "Name" => "রাম", "Size" => "আকার", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 261713bc58..f63f65162a 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -3,13 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom", "Could not move %s" => " No s'ha pogut moure %s", "File name cannot be empty." => "El nom del fitxer no pot ser buit.", -"File name must not contain \"/\". Please choose a different name." => "El nom de fitxer no pot contenir \"/\". Indiqueu un nom diferent.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", "The name %s is already used in the folder %s. Please choose a different name." => "El nom %s ja s'usa en la carpeta %s. Indiqueu un nom diferent.", "Not a valid source" => "No és un origen vàlid", +"Server is not allowed to open URLs, please check the server configuration" => "El servidor no té autorització per obrir URLs, comproveu la configuració del servidor", "Error while downloading %s to %s" => "S'ha produït un error en baixar %s a %s", "Error when creating the file" => "S'ha produït un error en crear el fitxer", "Folder name cannot be empty." => "El nom de la carpeta no pot ser buit.", -"Folder name must not contain \"/\". Please choose a different name." => "El nom de la carpeta no pot contenir \"/\". Indiqueu un nom diferent.", "Error when creating the folder" => "S'ha produït un error en crear la carpeta", "Unable to set upload directory." => "No es pot establir la carpeta de pujada.", "Invalid Token" => "Testimoni no vàlid", @@ -22,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Falta un fitxer temporal", "Failed to write to disk" => "Ha fallat en escriure al disc", "Not enough storage available" => "No hi ha prou espai disponible", -"Upload failed. Could not get file info." => "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer.", "Upload failed. Could not find uploaded file" => "La pujada ha fallat. El fitxer pujat no s'ha trobat.", +"Upload failed. Could not get file info." => "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer.", "Invalid directory." => "Directori no vàlid.", "Files" => "Fitxers", "Unable to upload {filename} as it is a directory or has 0 bytes" => "No es pot pujar {filename} perquè és una carpeta o té 0 bytes", -"Not enough space available" => "No hi ha prou espai disponible", "Upload cancelled." => "La pujada s'ha cancel·lat.", "Could not get result from server." => "No hi ha resposta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", @@ -36,6 +35,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} ja existeix", "Could not create file" => "No s'ha pogut crear el fitxer", "Could not create folder" => "No s'ha pogut crear la carpeta", +"Error fetching URL" => "Error en obtenir la URL", "Share" => "Comparteix", "Delete permanently" => "Esborra permanentment", "Rename" => "Reanomena", @@ -48,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fitxer","%n fitxers"), "{dirs} and {files}" => "{dirs} i {files}", "_Uploading %n file_::_Uploading %n files_" => array("Pujant %n fitxer","Pujant %n fitxers"), -"'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", "Your storage is full, files can not be updated or synced anymore!" => "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!", "Your storage is almost full ({usedSpacePercent}%)" => "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou.", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 44e0fdae1f..02ab6e1525 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nelze přesunout %s - již existuje soubor se stejným názvem", "Could not move %s" => "Nelze přesunout %s", "File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", -"File name must not contain \"/\". Please choose a different name." => "Název souboru nesmí obsahovat \"/\". Vyberte prosím jiné jméno.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "The name %s is already used in the folder %s. Please choose a different name." => "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno.", "Not a valid source" => "Neplatný zdroj", "Server is not allowed to open URLs, please check the server configuration" => "Server není oprávněn otevírat adresy URL. Ověřte, prosím, konfiguraci serveru.", "Error while downloading %s to %s" => "Chyba při stahování %s do %s", "Error when creating the file" => "Chyba při vytváření souboru", "Folder name cannot be empty." => "Název složky nemůže být prázdný.", -"Folder name must not contain \"/\". Please choose a different name." => "Název složky nesmí obsahovat \"/\". Zvolte prosím jiný.", "Error when creating the folder" => "Chyba při vytváření složky", "Unable to set upload directory." => "Nelze nastavit adresář pro nahrané soubory.", "Invalid Token" => "Neplatný token", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Chybí adresář pro dočasné soubory", "Failed to write to disk" => "Zápis na disk selhal", "Not enough storage available" => "Nedostatek dostupného úložného prostoru", -"Upload failed. Could not get file info." => "Nahrávání selhalo. Nepodařilo se získat informace o souboru.", "Upload failed. Could not find uploaded file" => "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor.", +"Upload failed. Could not get file info." => "Nahrávání selhalo. Nepodařilo se získat informace o souboru.", "Invalid directory." => "Neplatný adresář", "Files" => "Soubory", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Nelze nahrát soubor {filename}, protože je to buď adresář nebo má velikost 0 bytů", -"Not enough space available" => "Nedostatek volného místa", "Upload cancelled." => "Odesílání zrušeno.", "Could not get result from server." => "Nepodařilo se získat výsledek ze serveru.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n soubor","%n soubory","%n souborů"), "{dirs} and {files}" => "{dirs} a {files}", "_Uploading %n file_::_Uploading %n files_" => array("Nahrávám %n soubor","Nahrávám %n soubory","Nahrávám %n souborů"), -"'.' is an invalid file name." => "'.' je neplatným názvem souboru.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 2a007761c5..cf3187e4d1 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli", "Could not move %s" => "Methwyd symud %s", "File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.", "No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.", "There is no error, the file uploaded with success" => "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:", @@ -14,7 +15,6 @@ $TRANSLATIONS = array( "Not enough storage available" => "Dim digon o le storio ar gael", "Invalid directory." => "Cyfeiriadur annilys.", "Files" => "Ffeiliau", -"Not enough space available" => "Dim digon o le ar gael", "Upload cancelled." => "Diddymwyd llwytho i fyny.", "File upload is in progress. Leaving the page now will cancel the upload." => "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses.", "{new_name} already exists" => "{new_name} yn bodoli'n barod", @@ -27,8 +27,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("","","",""), "_%n file_::_%n files_" => array("","","",""), "_Uploading %n file_::_Uploading %n files_" => array("","","",""), -"'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.", "Your storage is full, files can not be updated or synced anymore!" => "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!", "Your storage is almost full ({usedSpacePercent}%)" => "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr.", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 9b7722444a..ae2a15ed6b 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kunne ikke flytte %s - der findes allerede en fil med dette navn", "Could not move %s" => "Kunne ikke flytte %s", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.", -"File name must not contain \"/\". Please choose a different name." => "Filnavnet må ikke indeholde \"/\". Vælg venligst et andet navn.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", "The name %s is already used in the folder %s. Please choose a different name." => "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn.", "Not a valid source" => "Ikke en gyldig kilde", "Server is not allowed to open URLs, please check the server configuration" => "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger", "Error while downloading %s to %s" => "Fejl ved hentning af %s til %s", "Error when creating the file" => "Fejl ved oprettelse af fil", "Folder name cannot be empty." => "Mappenavnet kan ikke være tomt.", -"Folder name must not contain \"/\". Please choose a different name." => "Mappenavnet må ikke indeholde \"/\". Vælg venligst et andet navn.", "Error when creating the folder" => "Fejl ved oprettelse af mappen", "Unable to set upload directory." => "Ude af stand til at vælge upload mappe.", "Invalid Token" => "Ugyldig Token ", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Manglende midlertidig mappe.", "Failed to write to disk" => "Fejl ved skrivning til disk.", "Not enough storage available" => "Der er ikke nok plads til rådlighed", -"Upload failed. Could not get file info." => "Upload fejlede. Kunne ikke hente filinformation.", "Upload failed. Could not find uploaded file" => "Upload fejlede. Kunne ikke finde den uploadede fil.", +"Upload failed. Could not get file info." => "Upload fejlede. Kunne ikke hente filinformation.", "Invalid directory." => "Ugyldig mappe.", "Files" => "Filer", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes.", -"Not enough space available" => "ikke nok tilgængelig ledig plads ", "Upload cancelled." => "Upload afbrudt.", "Could not get result from server." => "Kunne ikke hente resultat fra server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} og {files}", "_Uploading %n file_::_Uploading %n files_" => array("Uploader %n fil","Uploader %n filer"), -"'.' is an invalid file name." => "'.' er et ugyldigt filnavn.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", "Your storage is full, files can not be updated or synced anymore!" => "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!", "Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen.", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index b209fee88a..80cb6fd25b 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", "Could not move %s" => "Konnte %s nicht verschieben", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", -"File name must not contain \"/\". Please choose a different name." => "Der Dateiname darf kein \"/\" enthalten. Bitte wähle einen anderen Namen.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "The name %s is already used in the folder %s. Please choose a different name." => "Der Name %s wird bereits im Ordner %s benutzt. Bitte wähle einen anderen Namen.", "Not a valid source" => "Keine gültige Quelle", "Server is not allowed to open URLs, please check the server configuration" => "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen", "Error while downloading %s to %s" => "Fehler beim Herunterladen von %s nach %s", "Error when creating the file" => "Fehler beim Erstellen der Datei", "Folder name cannot be empty." => "Der Ordner-Name darf nicht leer sein.", -"Folder name must not contain \"/\". Please choose a different name." => "Der Ordner-Name darf kein \"/\" enthalten. Bitte wähle einen anderen Namen.", "Error when creating the folder" => "Fehler beim Erstellen des Ordners", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", "Invalid Token" => "Ungültiges Merkmal", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Kein temporärer Ordner vorhanden", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Not enough storage available" => "Nicht genug Speicher vorhanden.", -"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden.", "Upload failed. Could not find uploaded file" => "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden.", +"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden.", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist", -"Not enough space available" => "Nicht genug Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "Could not get result from server." => "Ergebnis konnte nicht vom Server abgerufen werden.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "{dirs} and {files}" => "{dirs} und {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hochgeladen","%n Dateien werden hochgeladen"), -"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "Your storage is full, files can not be updated or synced anymore!" => "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", "Your storage is almost full ({usedSpacePercent}%)" => "Dein Speicher ist fast voll ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melden Dich nochmals ab und wieder an.", diff --git a/apps/files/l10n/de_AT.php b/apps/files/l10n/de_AT.php index 0157af093e..e1b55f6dd1 100644 --- a/apps/files/l10n/de_AT.php +++ b/apps/files/l10n/de_AT.php @@ -1,7 +1,11 @@ "Freigeben", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), -"_Uploading %n file_::_Uploading %n files_" => array("","") +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"Save" => "Speichern", +"Download" => "Herunterladen", +"Delete" => "Löschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/de_CH.php b/apps/files/l10n/de_CH.php index b950429346..9b69a3f728 100644 --- a/apps/files/l10n/de_CH.php +++ b/apps/files/l10n/de_CH.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.", "Could not move %s" => "Konnte %s nicht verschieben", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig.", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", "Invalid Token" => "Ungültiges Merkmal", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", @@ -16,7 +17,6 @@ $TRANSLATIONS = array( "Not enough storage available" => "Nicht genug Speicher vorhanden.", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", -"Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "{new_name} already exists" => "{new_name} existiert bereits", @@ -29,8 +29,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("","%n Ordner"), "_%n file_::_%n files_" => array("","%n Dateien"), "_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hochgeladen","%n Dateien werden hochgeladen"), -"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig.", "Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln.", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 76cdce00e4..dc06fa0d15 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.", "Could not move %s" => "Konnte %s nicht verschieben", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", -"File name must not contain \"/\". Please choose a different name." => "Der Dateiname darf kein \"/\" enthalten. Bitte wählen Sie einen anderen Namen.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "The name %s is already used in the folder %s. Please choose a different name." => "Der Name %s wird bereits im Ordner %s benutzt. Bitte wählen Sie einen anderen Namen.", "Not a valid source" => "Keine gültige Quelle", "Server is not allowed to open URLs, please check the server configuration" => "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen", "Error while downloading %s to %s" => "Fehler beim Herunterladen von %s nach %s", "Error when creating the file" => "Fehler beim Erstellen der Datei", "Folder name cannot be empty." => "Der Ordner-Name darf nicht leer sein.", -"Folder name must not contain \"/\". Please choose a different name." => "Der Ordner-Name darf kein \"/\" enthalten. Bitte wählen Sie einen anderen Namen.", "Error when creating the folder" => "Fehler beim Erstellen des Ordners", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", "Invalid Token" => "Ungültiges Merkmal", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Kein temporärer Ordner vorhanden", "Failed to write to disk" => "Fehler beim Schreiben auf die Festplatte", "Not enough storage available" => "Nicht genug Speicher vorhanden.", -"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden.", "Upload failed. Could not find uploaded file" => "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden.", +"Upload failed. Could not get file info." => "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden.", "Invalid directory." => "Ungültiges Verzeichnis.", "Files" => "Dateien", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist", -"Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "Could not get result from server." => "Ergebnis konnte nicht vom Server abgerufen werden.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "{dirs} and {files}" => "{dirs} und {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hoch geladen","%n Dateien werden hoch geladen"), -"'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", "Your storage is full, files can not be updated or synced anymore!" => "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!", "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an.", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 9efe1af7dd..8916f06c65 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", "Could not move %s" => "Αδυναμία μετακίνησης του %s", "File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", -"File name must not contain \"/\". Please choose a different name." => "Το όνομα αρχείου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. ", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.", "The name %s is already used in the folder %s. Please choose a different name." => "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα.", "Not a valid source" => "Μη έγκυρη πηγή", "Server is not allowed to open URLs, please check the server configuration" => "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή", "Error while downloading %s to %s" => "Σφάλμα κατά τη λήψη του %s στο %s", "Error when creating the file" => "Σφάλμα κατά τη δημιουργία του αρχείου", "Folder name cannot be empty." => "Το όνομα φακέλου δεν μπορεί να είναι κενό.", -"Folder name must not contain \"/\". Please choose a different name." => "Το όνομα φακέλου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. ", "Error when creating the folder" => "Σφάλμα δημιουργίας φακέλου", "Unable to set upload directory." => "Αδυναμία ορισμού καταλόγου αποστολής.", "Invalid Token" => "Μη έγκυρο Token", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Λείπει ο προσωρινός φάκελος", "Failed to write to disk" => "Αποτυχία εγγραφής στο δίσκο", "Not enough storage available" => "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος", -"Upload failed. Could not get file info." => "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων.", "Upload failed. Could not find uploaded file" => "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση.", +"Upload failed. Could not get file info." => "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων.", "Invalid directory." => "Μη έγκυρος φάκελος.", "Files" => "Αρχεία", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes", -"Not enough space available" => "Δεν υπάρχει αρκετός διαθέσιμος χώρος", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", "Could not get result from server." => "Αδυναμία λήψης αποτελέσματος από το διακομιστή.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n αρχείο","%n αρχεία"), "{dirs} and {files}" => "{Κατάλογοι αρχείων} και {αρχεία}", "_Uploading %n file_::_Uploading %n files_" => array("Ανέβασμα %n αρχείου","Ανέβασμα %n αρχείων"), -"'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.", "Your storage is full, files can not be updated or synced anymore!" => "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!", "Your storage is almost full ({usedSpacePercent}%)" => "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index ac93aa68ab..eb718af090 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Could not move %s - File with this name already exists", "Could not move %s" => "Could not move %s", "File name cannot be empty." => "File name cannot be empty.", -"File name must not contain \"/\". Please choose a different name." => "File name must not contain \"/\". Please choose a different name.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.", "The name %s is already used in the folder %s. Please choose a different name." => "The name %s is already used in the folder %s. Please choose a different name.", "Not a valid source" => "Not a valid source", "Server is not allowed to open URLs, please check the server configuration" => "Server is not allowed to open URLs, please check the server configuration", "Error while downloading %s to %s" => "Error whilst downloading %s to %s", "Error when creating the file" => "Error when creating the file", "Folder name cannot be empty." => "Folder name cannot be empty.", -"Folder name must not contain \"/\". Please choose a different name." => "Folder name must not contain \"/\". Please choose a different name.", "Error when creating the folder" => "Error when creating the folder", "Unable to set upload directory." => "Unable to set upload directory.", "Invalid Token" => "Invalid Token", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Missing a temporary folder", "Failed to write to disk" => "Failed to write to disk", "Not enough storage available" => "Not enough storage available", -"Upload failed. Could not get file info." => "Upload failed. Could not get file info.", "Upload failed. Could not find uploaded file" => "Upload failed. Could not find uploaded file", +"Upload failed. Could not get file info." => "Upload failed. Could not get file info.", "Invalid directory." => "Invalid directory.", "Files" => "Files", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Unable to upload {filename} as it is a directory or has 0 bytes", -"Not enough space available" => "Not enough space available", "Upload cancelled." => "Upload cancelled.", "Could not get result from server." => "Could not get result from server.", "File upload is in progress. Leaving the page now will cancel the upload." => "File upload is in progress. Leaving the page now will cancel the upload.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n file","%n files"), "{dirs} and {files}" => "{dirs} and {files}", "_Uploading %n file_::_Uploading %n files_" => array("Uploading %n file","Uploading %n files"), -"'.' is an invalid file name." => "'.' is an invalid file name.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed.", "Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!", "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Encryption App is enabled but your keys are not initialised, please log-out and log-in again", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 81cfa03fd6..b447b95b4e 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -3,13 +3,12 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas", "Could not move %s" => "Ne eblis movi %s", "File name cannot be empty." => "Dosiernomo devas ne malpleni.", -"File name must not contain \"/\". Please choose a different name." => "La dosieronomo ne devas enhavi “/”. Bonvolu elekti malsaman nomon.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas.", "The name %s is already used in the folder %s. Please choose a different name." => "La nomo %s jam uziĝas en la dosierujo %s. Bonvolu elekti malsaman nomon.", "Not a valid source" => "Nevalida fonto", "Error while downloading %s to %s" => "Eraris elŝuto de %s al %s", "Error when creating the file" => "Eraris la kreo de la dosiero", "Folder name cannot be empty." => "La dosierujnomo ne povas malpleni.", -"Folder name must not contain \"/\". Please choose a different name." => "La dosiernomo ne devas enhavi “/”. Bonvolu elekti malsaman nomon.", "Error when creating the folder" => "Eraris la kreo de la dosierujo", "Unable to set upload directory." => "Ne povis agordiĝi la alŝuta dosierujo.", "No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.", @@ -21,12 +20,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Mankas provizora dosierujo.", "Failed to write to disk" => "Malsukcesis skribo al disko", "Not enough storage available" => "Ne haveblas sufiĉa memoro", -"Upload failed. Could not get file info." => "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero.", "Upload failed. Could not find uploaded file" => "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero.", +"Upload failed. Could not get file info." => "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero.", "Invalid directory." => "Nevalida dosierujo.", "Files" => "Dosieroj", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Ne povis alŝutiĝi {filename} ĉar ĝi estas dosierujo aŭ ĝi havas 0 duumokojn", -"Not enough space available" => "Ne haveblas sufiĉa spaco", "Upload cancelled." => "La alŝuto nuliĝis.", "Could not get result from server." => "Ne povis ekhaviĝi rezulto el la servilo.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", @@ -45,8 +43,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n dosiero","%n dosieroj"), "{dirs} and {files}" => "{dirs} kaj {files}", "_Uploading %n file_::_Uploading %n files_" => array("Alŝutatas %n dosiero","Alŝutatas %n dosieroj"), -"'.' is an invalid file name." => "'.' ne estas valida dosiernomo.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas.", "Your storage is full, files can not be updated or synced anymore!" => "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!", "Your storage is almost full ({usedSpacePercent}%)" => "Via memoro preskaŭ plenas ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas.", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index bfbb80e896..3b04b51376 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "No se pudo mover %s - Ya existe un archivo con ese nombre.", "Could not move %s" => "No se pudo mover %s", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.", -"File name must not contain \"/\". Please choose a different name." => "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "The name %s is already used in the folder %s. Please choose a different name." => "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente.", -"Not a valid source" => "No es un origen válido", -"Server is not allowed to open URLs, please check the server configuration" => "El servidor no puede acceder URLs; revise la configuración del servidor.", +"Not a valid source" => "No es una fuente válida", +"Server is not allowed to open URLs, please check the server configuration" => "La configuración del servidor no le permite abrir URLs, revísela.", "Error while downloading %s to %s" => "Error mientras se descargaba %s a %s", "Error when creating the file" => "Error al crear el archivo", "Folder name cannot be empty." => "El nombre de la carpeta no puede estar vacío.", -"Folder name must not contain \"/\". Please choose a different name." => "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", "Error when creating the folder" => "Error al crear la carpeta.", "Unable to set upload directory." => "Incapaz de crear directorio de subida.", "Invalid Token" => "Token Inválido", @@ -23,17 +22,16 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Falta la carpeta temporal", "Failed to write to disk" => "Falló al escribir al disco", "Not enough storage available" => "No hay suficiente espacio disponible", -"Upload failed. Could not get file info." => "Actualización fallida. No se pudo obtener información del archivo.", "Upload failed. Could not find uploaded file" => "Actualización fallida. No se pudo encontrar el archivo subido", +"Upload failed. Could not get file info." => "Actualización fallida. No se pudo obtener información del archivo.", "Invalid directory." => "Directorio inválido.", "Files" => "Archivos", "Unable to upload {filename} as it is a directory or has 0 bytes" => "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes", -"Not enough space available" => "No hay suficiente espacio disponible", "Upload cancelled." => "Subida cancelada.", "Could not get result from server." => "No se pudo obtener respuesta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", "URL cannot be empty" => "La dirección URL no puede estar vacía", -"In the home folder 'Shared' is a reserved filename" => "En la carpeta de inicio, 'Shared' es un nombre reservado", +"In the home folder 'Shared' is a reserved filename" => "En la carpeta home, no se puede usar 'Shared'", "{new_name} already exists" => "{new_name} ya existe", "Could not create file" => "No se pudo crear el archivo", "Could not create folder" => "No se pudo crear la carpeta", @@ -45,13 +43,11 @@ $TRANSLATIONS = array( "Could not rename file" => "No se pudo renombrar el archivo", "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "undo" => "deshacer", -"Error deleting file." => "Error borrando el archivo.", +"Error deleting file." => "Error al borrar el archivo", "_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), "_%n file_::_%n files_" => array("%n archivo","%n archivos"), "{dirs} and {files}" => "{dirs} y {files}", "_Uploading %n file_::_Uploading %n files_" => array("Subiendo %n archivo","Subiendo %n archivos"), -"'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!", "Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "La app de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 78d6388cd9..1bb2d6ef51 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -3,6 +3,14 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "No se pudo mover %s - Un archivo con este nombre ya existe", "Could not move %s" => "No se pudo mover %s ", "File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", +"The name %s is already used in the folder %s. Please choose a different name." => "El nombre %s está en uso en el directorio %s. Por favor elija un otro nombre.", +"Not a valid source" => "No es una fuente válida", +"Server is not allowed to open URLs, please check the server configuration" => "El servidor no está permitido abrir las URLs, por favor chequee la configuración del servidor", +"Error while downloading %s to %s" => "Error mientras se descargaba %s a %s", +"Error when creating the file" => "Error al crear el archivo", +"Folder name cannot be empty." => "El nombre del directorio no puede estar vacío.", +"Error when creating the folder" => "Error al crear el directorio", "Unable to set upload directory." => "No fue posible crear el directorio de subida.", "Invalid Token" => "Token Inválido", "No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido", @@ -14,32 +22,44 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "Error al escribir en el disco", "Not enough storage available" => "No hay suficiente almacenamiento", +"Upload failed. Could not find uploaded file" => "Falló la carga. No se pudo encontrar el archivo subido.", +"Upload failed. Could not get file info." => "Falló la carga. No se pudo obtener la información del archivo.", "Invalid directory." => "Directorio inválido.", "Files" => "Archivos", -"Not enough space available" => "No hay suficiente espacio disponible", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Imposible cargar {filename} puesto que es un directoro o tiene 0 bytes.", "Upload cancelled." => "La subida fue cancelada", +"Could not get result from server." => "No se pudo obtener resultados del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", +"URL cannot be empty" => "La URL no puede estar vacía", +"In the home folder 'Shared' is a reserved filename" => "En el directorio inicial 'Shared' es un nombre de archivo reservado", "{new_name} already exists" => "{new_name} ya existe", +"Could not create file" => "No se pudo crear el archivo", +"Could not create folder" => "No se pudo crear el directorio", +"Error fetching URL" => "Error al obtener la URL", "Share" => "Compartir", "Delete permanently" => "Borrar permanentemente", "Rename" => "Cambiar nombre", "Pending" => "Pendientes", +"Could not rename file" => "No se pudo renombrar el archivo", "replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}", "undo" => "deshacer", +"Error deleting file." => "Error al borrar el archivo.", "_%n folder_::_%n folders_" => array("%n carpeta","%n carpetas"), "_%n file_::_%n files_" => array("%n archivo","%n archivos"), "{dirs} and {files}" => "{carpetas} y {archivos}", "_Uploading %n file_::_Uploading %n files_" => array("Subiendo %n archivo","Subiendo %n archivos"), -"'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", "Your storage is full, files can not be updated or synced anymore!" => "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando", "Your storage is almost full ({usedSpacePercent}%)" => "El almacenamiento está casi lleno ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "La aplicación de encriptación está habilitada pero las llaves no fueron inicializadas, por favor termine y vuelva a iniciar la sesión", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Llave privada inválida para la aplicación de encriptación. Por favor actualice la clave de la llave privada en las configuraciones personales para recobrar el acceso a sus archivos encriptados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos.", "Your download is being prepared. This might take some time if the files are big." => "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes.", +"Error moving file" => "Error moviendo el archivo", "Error" => "Error", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de directorio inválido. 'Shared' está reservado.", "%s could not be renamed" => "No se pudo renombrar %s", "Upload" => "Subir", "File handling" => "Tratamiento de archivos", @@ -51,12 +71,14 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", "Save" => "Guardar", "New" => "Nuevo", +"New text file" => "Nuevo archivo de texto", "Text file" => "Archivo de texto", "New folder" => "Nueva Carpeta", "Folder" => "Carpeta", "From link" => "Desde enlace", "Deleted files" => "Archivos borrados", "Cancel upload" => "Cancelar subida", +"You don’t have permission to upload or create files here" => "No tienes permisos para subir o crear archivos aquí", "Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!", "Download" => "Descargar", "Delete" => "Borrar", diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php index 6f97758878..4f5e35bd88 100644 --- a/apps/files/l10n/es_CL.php +++ b/apps/files/l10n/es_CL.php @@ -1,9 +1,12 @@ "Archivos", +"Share" => "Compartir", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "Subir" +"Error" => "Error", +"Upload" => "Subir", +"Download" => "Descargar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index 0b7571defc..27c75e1157 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "No se pudo mover %s - Ya existe un archivo con ese nombre.", "Could not move %s" => "No se pudo mover %s", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.", -"File name must not contain \"/\". Please choose a different name." => "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "The name %s is already used in the folder %s. Please choose a different name." => "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente.", "Not a valid source" => "No es un origen válido", "Server is not allowed to open URLs, please check the server configuration" => "El servidor no puede acceder URLs; revise la configuración del servidor.", "Error while downloading %s to %s" => "Error mientras se descargaba %s a %s", "Error when creating the file" => "Error al crear el archivo", "Folder name cannot be empty." => "El nombre de la carpeta no puede estar vacío.", -"Folder name must not contain \"/\". Please choose a different name." => "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente.", "Error when creating the folder" => "Error al crear la carpeta.", "Unable to set upload directory." => "Incapaz de crear directorio de subida.", "Invalid Token" => "Token Inválido", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Falta la carpeta temporal", "Failed to write to disk" => "Falló al escribir al disco", "Not enough storage available" => "No hay suficiente espacio disponible", -"Upload failed. Could not get file info." => "Actualización fallida. No se pudo obtener información del archivo.", "Upload failed. Could not find uploaded file" => "Actualización fallida. No se pudo encontrar el archivo subido", +"Upload failed. Could not get file info." => "Actualización fallida. No se pudo obtener información del archivo.", "Invalid directory." => "Directorio inválido.", "Files" => "Archivos", "Unable to upload {filename} as it is a directory or has 0 bytes" => "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes", -"Not enough space available" => "No hay suficiente espacio disponible", "Upload cancelled." => "Subida cancelada.", "Could not get result from server." => "No se pudo obtener respuesta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n archivo","%n archivos"), "{dirs} and {files}" => "{dirs} y {files}", "_Uploading %n file_::_Uploading %n files_" => array("Subiendo %n archivo","Subiendo %n archivos"), -"'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", "Your storage is full, files can not be updated or synced anymore!" => "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!", "Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento está casi lleno ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index fd03152773..2fcfe10f03 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Ei saa liigutada faili %s - samanimeline fail on juba olemas", "Could not move %s" => "%s liigutamine ebaõnnestus", "File name cannot be empty." => "Faili nimi ei saa olla tühi.", -"File name must not contain \"/\". Please choose a different name." => "Faili nimi ei tohi sisaldada \"/\". Palun vali mõni teine nimi.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud.", "The name %s is already used in the folder %s. Please choose a different name." => "Nimi %s on juba kasutusel kataloogis %s. Palun vali mõni teine nimi.", "Not a valid source" => "Pole korrektne lähteallikas", "Server is not allowed to open URLs, please check the server configuration" => "Server ei võimalda URL-ide avamist, palun kontrolli serveri seadistust", "Error while downloading %s to %s" => "Viga %s allalaadimisel %s", "Error when creating the file" => "Viga faili loomisel", "Folder name cannot be empty." => "Kataloogi nimi ei saa olla tühi.", -"Folder name must not contain \"/\". Please choose a different name." => "Kataloogi nimi ei tohi sisaldada \"/\". Palun vali mõni teine nimi.", "Error when creating the folder" => "Viga kataloogi loomisel", "Unable to set upload directory." => "Üleslaadimiste kausta määramine ebaõnnestus.", "Invalid Token" => "Vigane kontrollkood", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Ajutiste failide kaust puudub", "Failed to write to disk" => "Kettale kirjutamine ebaõnnestus", "Not enough storage available" => "Saadaval pole piisavalt ruumi", -"Upload failed. Could not get file info." => "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus.", "Upload failed. Could not find uploaded file" => "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud", +"Upload failed. Could not get file info." => "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus.", "Invalid directory." => "Vigane kaust.", "Files" => "Failid", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti", -"Not enough space available" => "Pole piisavalt ruumi", "Upload cancelled." => "Üleslaadimine tühistati.", "Could not get result from server." => "Serverist ei saadud tulemusi", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fail","%n faili"), "{dirs} and {files}" => "{dirs} ja {files}", "_Uploading %n file_::_Uploading %n files_" => array("Laadin üles %n faili","Laadin üles %n faili"), -"'.' is an invalid file name." => "'.' on vigane failinimi.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud.", "Your storage is full, files can not be updated or synced anymore!" => "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!", "Your storage is almost full ({usedSpacePercent}%)" => "Su andmemaht on peaaegu täis ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 5df480c2bc..bf4b9d56cf 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -3,13 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da", "Could not move %s" => "Ezin dira fitxategiak mugitu %s", "File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", -"File name must not contain \"/\". Please choose a different name." => "Fitxategi izenak ezin du \"/\" izan. Mesedez hautatu beste izen bat.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta.", "The name %s is already used in the folder %s. Please choose a different name." => "%s izena dagoeneko erabilita dago %s karpetan. Mesdez hautatu izen ezberdina.", "Not a valid source" => "Ez da jatorri baliogarria", +"Server is not allowed to open URLs, please check the server configuration" => "Zerbitzaria ez dago URLak irekitzeko baimendua, mesedez egiaztatu zerbitzariaren konfigurazioa", "Error while downloading %s to %s" => "Errorea %s %sra deskargatzerakoan", "Error when creating the file" => "Errorea fitxategia sortzerakoan", "Folder name cannot be empty." => "Karpeta izena ezin da hutsa izan.", -"Folder name must not contain \"/\". Please choose a different name." => "Karpeta izenak ezin du \"/\" izan. Mesedez hautatu beste izen bat.", "Error when creating the folder" => "Errorea karpeta sortzerakoan", "Unable to set upload directory." => "Ezin da igoera direktorioa ezarri.", "Invalid Token" => "Lekuko baliogabea", @@ -22,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Aldi bateko karpeta falta da", "Failed to write to disk" => "Errore bat izan da diskoan idazterakoan", "Not enough storage available" => "Ez dago behar aina leku erabilgarri,", -"Upload failed. Could not get file info." => "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu.", "Upload failed. Could not find uploaded file" => "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu", +"Upload failed. Could not get file info." => "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu.", "Invalid directory." => "Baliogabeko karpeta.", "Files" => "Fitxategiak", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Ezin da {filename} igo karpeta bat delako edo 0 byte dituelako", -"Not enough space available" => "Ez dago leku nahikorik.", "Upload cancelled." => "Igoera ezeztatuta", "Could not get result from server." => "Ezin da zerbitzaritik emaitzik lortu", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", @@ -36,6 +35,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} dagoeneko existitzen da", "Could not create file" => "Ezin izan da fitxategia sortu", "Could not create folder" => "Ezin izan da karpeta sortu", +"Error fetching URL" => "Errorea URLa eskuratzerakoan", "Share" => "Elkarbanatu", "Delete permanently" => "Ezabatu betirako", "Rename" => "Berrizendatu", @@ -48,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("fitxategi %n","%n fitxategi"), "{dirs} and {files}" => "{dirs} eta {files}", "_Uploading %n file_::_Uploading %n files_" => array("Fitxategi %n igotzen","%n fitxategi igotzen"), -"'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta.", "Your storage is full, files can not be updated or synced anymore!" => "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!", "Your storage is almost full ({usedSpacePercent}%)" => "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi", diff --git a/apps/files/l10n/eu_ES.php b/apps/files/l10n/eu_ES.php new file mode 100644 index 0000000000..293e6de837 --- /dev/null +++ b/apps/files/l10n/eu_ES.php @@ -0,0 +1,10 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"Save" => "Gorde", +"Download" => "Deskargatu", +"Delete" => "Ezabatu" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 4f3257bc07..71316dc8fc 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,8 +1,9 @@ "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. ", +"Could not move %s - File with this name already exists" => "%s نمی توان جابجا کرد - در حال حاضر پرونده با این نام وجود دارد. ", "Could not move %s" => "%s نمی تواند حرکت کند ", "File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند.", "Unable to set upload directory." => "قادر به تنظیم پوشه آپلود نمی باشد.", "Invalid Token" => "رمز نامعتبر", "No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس", @@ -16,7 +17,6 @@ $TRANSLATIONS = array( "Not enough storage available" => "فضای کافی در دسترس نیست", "Invalid directory." => "فهرست راهنما نامعتبر می باشد.", "Files" => "پرونده‌ها", -"Not enough space available" => "فضای کافی در دسترس نیست", "Upload cancelled." => "بار گذاری لغو شد", "File upload is in progress. Leaving the page now will cancel the upload." => "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. ", "{new_name} already exists" => "{نام _جدید} در حال حاضر وجود دارد.", @@ -28,9 +28,7 @@ $TRANSLATIONS = array( "undo" => "بازگشت", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), -"_Uploading %n file_::_Uploading %n files_" => array(""), -"'.' is an invalid file name." => "'.' یک نام پرونده نامعتبر است.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند.", +"_Uploading %n file_::_Uploading %n files_" => array("در حال بارگذاری %n فایل"), "Your storage is full, files can not be updated or synced anymore!" => "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!", "Your storage is almost full ({usedSpacePercent}%)" => "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد.", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index d1241b77da..c3563976e8 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa", "Could not move %s" => "Kohteen %s siirto ei onnistunut", "File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", -"File name must not contain \"/\". Please choose a different name." => "Tiedoston nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", "The name %s is already used in the folder %s. Please choose a different name." => "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi.", "Not a valid source" => "Virheellinen lähde", "Server is not allowed to open URLs, please check the server configuration" => "Palvelimen ei ole lupa avata verkko-osoitteita. Tarkista palvelimen asetukset", "Error while downloading %s to %s" => "Virhe ladatessa kohdetta %s sijaintiin %s", "Error when creating the file" => "Virhe tiedostoa luotaessa", "Folder name cannot be empty." => "Kansion nimi ei voi olla tyhjä.", -"Folder name must not contain \"/\". Please choose a different name." => "Kansion nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi.", "Error when creating the folder" => "Virhe kansiota luotaessa", "No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", "There is no error, the file uploaded with success" => "Ei virheitä, tiedosto lähetettiin onnistuneesti", @@ -22,10 +21,10 @@ $TRANSLATIONS = array( "Failed to write to disk" => "Levylle kirjoitus epäonnistui", "Not enough storage available" => "Tallennustilaa ei ole riittävästi käytettävissä", "Upload failed. Could not find uploaded file" => "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty.", +"Upload failed. Could not get file info." => "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty.", "Invalid directory." => "Virheellinen kansio.", "Files" => "Tiedostot", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Kohdetta {filename} ei voi lähettää, koska se on joko kansio tai sen koko on 0 tavua", -"Not enough space available" => "Tilaa ei ole riittävästi", "Upload cancelled." => "Lähetys peruttu.", "Could not get result from server." => "Tuloksien saaminen palvelimelta ei onnistunut.", "File upload is in progress. Leaving the page now will cancel the upload." => "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", @@ -45,8 +44,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), "{dirs} and {files}" => "{dirs} ja {files}", "_Uploading %n file_::_Uploading %n files_" => array("Lähetetään %n tiedosto","Lähetetään %n tiedostoa"), -"'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", "Your storage is full, files can not be updated or synced anymore!" => "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!", "Your storage is almost full ({usedSpacePercent}%)" => "Tallennustila on melkein loppu ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen.", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 73b8943477..759de43f1c 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", "Could not move %s" => "Impossible de déplacer %s", "File name cannot be empty." => "Le nom de fichier ne peut être vide.", -"File name must not contain \"/\". Please choose a different name." => "Le nom de fichier ne doit pas contenir \"/\". Merci de choisir un nom différent.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "The name %s is already used in the folder %s. Please choose a different name." => "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un nom différent.", "Not a valid source" => "La source n'est pas valide", "Server is not allowed to open URLs, please check the server configuration" => "Le serveur n'est pas autorisé à ouvrir des URL, veuillez vérifier la configuration du serveur", "Error while downloading %s to %s" => "Erreur pendant le téléchargement de %s à %s", "Error when creating the file" => "Erreur pendant la création du fichier", "Folder name cannot be empty." => "Le nom de dossier ne peux pas être vide.", -"Folder name must not contain \"/\". Please choose a different name." => "Le nom de dossier ne doit pas contenir \"/\". Merci de choisir un nom différent.", "Error when creating the folder" => "Erreur pendant la création du dossier", "Unable to set upload directory." => "Impossible de définir le dossier pour l'upload, charger.", "Invalid Token" => "Jeton non valide", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Absence de dossier temporaire.", "Failed to write to disk" => "Erreur d'écriture sur le disque", "Not enough storage available" => "Plus assez d'espace de stockage disponible", -"Upload failed. Could not get file info." => "L'envoi a échoué. Impossible d'obtenir les informations du fichier.", "Upload failed. Could not find uploaded file" => "L'envoi a échoué. Impossible de trouver le fichier envoyé.", +"Upload failed. Could not get file info." => "L'envoi a échoué. Impossible d'obtenir les informations du fichier.", "Invalid directory." => "Dossier invalide.", "Files" => "Fichiers", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Impossible d'envoyer {filename} car il s'agit d'un répertoire ou d'un fichier de taille nulle", -"Not enough space available" => "Espace disponible insuffisant", "Upload cancelled." => "Envoi annulé.", "Could not get result from server." => "Ne peut recevoir les résultats du serveur.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fichier","%n fichiers"), "{dirs} and {files}" => "{dirs} et {files}", "_Uploading %n file_::_Uploading %n files_" => array("Téléversement de %n fichier","Téléversement de %n fichiers"), -"'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", "Your storage is full, files can not be updated or synced anymore!" => "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !", "Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter.", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 1d22691d93..1eec326440 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome.", "Could not move %s" => "Non foi posíbel mover %s", "File name cannot be empty." => "O nome de ficheiro non pode estar baleiro", -"File name must not contain \"/\". Please choose a different name." => "O nome do ficheiro non pode conter «/». Escolla outro nome.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*».", "The name %s is already used in the folder %s. Please choose a different name." => "Xa existe o nome %s no cartafol %s. Escolla outro nome.", "Not a valid source" => "Esta orixe non é correcta", "Server is not allowed to open URLs, please check the server configuration" => "O servidor non ten permisos para abrir os enderezos URL, comprobe a configuración do servidor", "Error while downloading %s to %s" => "Produciuse un erro ao descargar %s en %s", "Error when creating the file" => "Produciuse un erro ao crear o ficheiro", "Folder name cannot be empty." => "O nome de cartafol non pode estar baleiro.", -"Folder name must not contain \"/\". Please choose a different name." => "O nome do cartafol non pode conter «/». Escolla outro nome.", "Error when creating the folder" => "Produciuse un erro ao crear o cartafol", "Unable to set upload directory." => "Non é posíbel configurar o directorio de envíos.", "Invalid Token" => "Marca incorrecta", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Falta o cartafol temporal", "Failed to write to disk" => "Produciuse un erro ao escribir no disco", "Not enough storage available" => "Non hai espazo de almacenamento abondo", -"Upload failed. Could not get file info." => "O envío fracasou. Non foi posíbel obter información do ficheiro.", "Upload failed. Could not find uploaded file" => "O envío fracasou. Non foi posíbel atopar o ficheiro enviado", +"Upload failed. Could not get file info." => "O envío fracasou. Non foi posíbel obter información do ficheiro.", "Invalid directory." => "O directorio é incorrecto.", "Files" => "Ficheiros", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Non é posíbel enviar {filename}, xa que ou é un directorio ou ten 0 bytes", -"Not enough space available" => "O espazo dispoñíbel é insuficiente", "Upload cancelled." => "Envío cancelado.", "Could not get result from server." => "Non foi posíbel obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "{dirs} and {files}" => "{dirs} e {files}", "_Uploading %n file_::_Uploading %n files_" => array("Cargando %n ficheiro","Cargando %n ficheiros"), -"'.' is an invalid file name." => "«.» é un nome de ficheiro incorrecto", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*».", "Your storage is full, files can not be updated or synced anymore!" => "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou sincronizar máis os ficheiros!", "Your storage is almost full ({usedSpacePercent}%)" => "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "O aplicativo de cifrado está activado, mais as chaves non foron inicializadas, saia da sesión e volva a acceder de novo", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 0cdb178254..2035c8488b 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "לא ניתן להעביר את %s - קובץ בשם הזה כבר קיים", "Could not move %s" => "לא ניתן להעביר את %s", "File name cannot be empty." => "שם קובץ אינו יכול להיות ריק", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.", "No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.", "There is no error, the file uploaded with success" => "לא התרחשה שגיאה, הקובץ הועלה בהצלחה", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:", @@ -28,7 +29,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.", "Your storage is almost full ({usedSpacePercent}%)" => "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)", "Error" => "שגיאה", "Name" => "שם", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 22c3926ed1..115635daa4 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel", "Could not move %s" => "Nem sikerült %s áthelyezése", "File name cannot be empty." => "A fájlnév nem lehet semmi.", -"File name must not contain \"/\". Please choose a different name." => "Az állomány neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", "The name %s is already used in the folder %s. Please choose a different name." => "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!", "Not a valid source" => "A kiinduló állomány érvénytelen", "Server is not allowed to open URLs, please check the server configuration" => "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat", "Error while downloading %s to %s" => "Hiba történt miközben %s-t letöltöttük %s-be", "Error when creating the file" => "Hiba történt az állomány létrehozásakor", "Folder name cannot be empty." => "A mappa neve nem maradhat kitöltetlenül", -"Folder name must not contain \"/\". Please choose a different name." => "A mappa neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!", "Error when creating the folder" => "Hiba történt a mappa létrehozásakor", "Unable to set upload directory." => "Nem található a mappa, ahova feltölteni szeretne.", "Invalid Token" => "Hibás mappacím", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Hiányzik egy ideiglenes mappa", "Failed to write to disk" => "Nem sikerült a lemezre történő írás", "Not enough storage available" => "Nincs elég szabad hely.", -"Upload failed. Could not get file info." => "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el.", "Upload failed. Could not find uploaded file" => "A feltöltés nem sikerült. Nem található a feltöltendő állomány.", +"Upload failed. Could not get file info." => "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el.", "Invalid directory." => "Érvénytelen mappa.", "Files" => "Fájlok", "Unable to upload {filename} as it is a directory or has 0 bytes" => "A(z) {filename} állomány nem tölthető fel, mert ez vagy egy mappa, vagy pedig 0 bájtból áll.", -"Not enough space available" => "Nincs elég szabad hely", "Upload cancelled." => "A feltöltést megszakítottuk.", "Could not get result from server." => "A kiszolgálótól nem kapható meg az eredmény.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n állomány","%n állomány"), "{dirs} and {files}" => "{dirs} és {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n állomány feltöltése","%n állomány feltöltése"), -"'.' is an invalid file name." => "'.' fájlnév érvénytelen.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", "Your storage is full, files can not be updated or synced anymore!" => "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhatóak a jövőben.", "Your storage is almost full ({usedSpacePercent}%)" => "A tároló majdnem tele van ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 4e254ff6f6..d782218d18 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -3,13 +3,12 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada", "Could not move %s" => "Tidak dapat memindahkan %s", "File name cannot be empty." => "Nama berkas tidak boleh kosong.", -"File name must not contain \"/\". Please choose a different name." => "Nama berkas tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan.", "The name %s is already used in the folder %s. Please choose a different name." => "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda.", "Not a valid source" => "Sumber tidak sah", "Error while downloading %s to %s" => "Galat saat mengunduh %s ke %s", "Error when creating the file" => "Galat saat membuat berkas", "Folder name cannot be empty." => "Nama folder tidak bolh kosong.", -"Folder name must not contain \"/\". Please choose a different name." => "Nama folder tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda.", "Error when creating the folder" => "Galat saat membuat folder", "Unable to set upload directory." => "Tidak dapat mengatur folder unggah", "Invalid Token" => "Token tidak sah", @@ -22,12 +21,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Folder sementara tidak ada", "Failed to write to disk" => "Gagal menulis ke disk", "Not enough storage available" => "Ruang penyimpanan tidak mencukupi", -"Upload failed. Could not get file info." => "Unggah gagal. Tidak mendapatkan informasi berkas.", "Upload failed. Could not find uploaded file" => "Unggah gagal. Tidak menemukan berkas yang akan diunggah", +"Upload failed. Could not get file info." => "Unggah gagal. Tidak mendapatkan informasi berkas.", "Invalid directory." => "Direktori tidak valid.", "Files" => "Berkas", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Tidak dapat mengunggah {filename} karena ini sebuah direktori atau memiliki ukuran 0 byte", -"Not enough space available" => "Ruang penyimpanan tidak mencukupi", "Upload cancelled." => "Pengunggahan dibatalkan.", "Could not get result from server." => "Tidak mendapatkan hasil dari server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses.", @@ -48,8 +46,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n berkas"), "{dirs} and {files}" => "{dirs} dan {files}", "_Uploading %n file_::_Uploading %n files_" => array("Mengunggah %n berkas"), -"'.' is an invalid file name." => "'.' bukan nama berkas yang valid.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan.", "Your storage is full, files can not be updated or synced anymore!" => "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!", "Your storage is almost full ({usedSpacePercent}%)" => "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 5c5cc7d5d7..088cdefa30 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Gat ekki fært %s - Skrá með þessu nafni er þegar til", "Could not move %s" => "Gat ekki fært %s", "File name cannot be empty." => "Nafn skráar má ekki vera tómt", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", "No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", "There is no error, the file uploaded with success" => "Engin villa, innsending heppnaðist", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Innsend skrá er stærri en upload_max stillingin í php.ini:", @@ -13,7 +14,6 @@ $TRANSLATIONS = array( "Failed to write to disk" => "Tókst ekki að skrifa á disk", "Invalid directory." => "Ógild mappa.", "Files" => "Skrár", -"Not enough space available" => "Ekki nægt pláss tiltækt", "Upload cancelled." => "Hætt við innsendingu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", "{new_name} already exists" => "{new_name} er þegar til", @@ -25,8 +25,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", "Error" => "Villa", "Name" => "Nafn", "Size" => "Stærð", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 2a10e9977f..1e31a2cd59 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Impossibile spostare %s - un file con questo nome esiste già", "Could not move %s" => "Impossibile spostare %s", "File name cannot be empty." => "Il nome del file non può essere vuoto.", -"File name must not contain \"/\". Please choose a different name." => "Il nome del file non può contenere il carattere \"/\". Scegli un nome diverso.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "The name %s is already used in the folder %s. Please choose a different name." => "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diverso.", "Not a valid source" => "Non è una sorgente valida", "Server is not allowed to open URLs, please check the server configuration" => "Al server non è permesso aprire URL, controlla la configurazione del server", "Error while downloading %s to %s" => "Errore durante lo scaricamento di %s su %s", "Error when creating the file" => "Errore durante la creazione del file", "Folder name cannot be empty." => "Il nome della cartella non può essere vuoto.", -"Folder name must not contain \"/\". Please choose a different name." => "Il nome della cartella non può contenere il carattere \"/\". Scegli un nome diverso.", "Error when creating the folder" => "Errore durante la creazione della cartella", "Unable to set upload directory." => "Impossibile impostare una cartella di caricamento.", "Invalid Token" => "Token non valido", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Manca una cartella temporanea", "Failed to write to disk" => "Scrittura su disco non riuscita", "Not enough storage available" => "Spazio di archiviazione insufficiente", -"Upload failed. Could not get file info." => "Caricamento non riuscito. Impossibile ottenere informazioni sul file.", "Upload failed. Could not find uploaded file" => "Caricamento non riuscito. Impossibile trovare il file caricato.", +"Upload failed. Could not get file info." => "Caricamento non riuscito. Impossibile ottenere informazioni sul file.", "Invalid directory." => "Cartella non valida.", "Files" => "File", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Impossibile caricare {filename} poiché è una cartella oppure ha una dimensione di 0 byte.", -"Not enough space available" => "Spazio disponibile insufficiente", "Upload cancelled." => "Invio annullato", "Could not get result from server." => "Impossibile ottenere il risultato dal server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n file","%n file"), "{dirs} and {files}" => "{dirs} e {files}", "_Uploading %n file_::_Uploading %n files_" => array("Caricamento di %n file in corso","Caricamento di %n file in corso"), -"'.' is an invalid file name." => "'.' non è un nome file valido.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", "Your storage is full, files can not be updated or synced anymore!" => "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!", "Your storage is almost full ({usedSpacePercent}%)" => "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 8019b825d3..1f24a9f2d6 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -3,16 +3,15 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s を移動できませんでした ― この名前のファイルはすでに存在します", "Could not move %s" => "%s を移動できませんでした", "File name cannot be empty." => "ファイル名を空にすることはできません。", -"File name must not contain \"/\". Please choose a different name." => "ファイル名には \"/\" を含めることはできません。別の名前を選択してください。", -"The name %s is already used in the folder %s. Please choose a different name." => "%s はフォルダ %s ないですでに使われています。別の名前を選択してください。", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", +"The name %s is already used in the folder %s. Please choose a different name." => "%s はフォルダー %s ですでに使われています。別の名前を選択してください。", "Not a valid source" => "有効なソースではありません", "Server is not allowed to open URLs, please check the server configuration" => "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。", "Error while downloading %s to %s" => "%s から %s へのダウンロードエラー", "Error when creating the file" => "ファイルの生成エラー", -"Folder name cannot be empty." => "フォルダ名は空にできません", -"Folder name must not contain \"/\". Please choose a different name." => "フォルダ名には \"/\" を含めることはできません。別の名前を選択してください。", -"Error when creating the folder" => "フォルダの生成エラー", -"Unable to set upload directory." => "アップロードディレクトリを設定出来ません。", +"Folder name cannot be empty." => "フォルダー名は空にできません", +"Error when creating the folder" => "フォルダーの生成エラー", +"Unable to set upload directory." => "アップロードディレクトリを設定できません。", "Invalid Token" => "無効なトークン", "No file was uploaded. Unknown error" => "ファイルは何もアップロードされていません。不明なエラー", "There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました", @@ -20,23 +19,22 @@ $TRANSLATIONS = array( "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています", "The uploaded file was only partially uploaded" => "アップロードファイルは一部分だけアップロードされました", "No file was uploaded" => "ファイルはアップロードされませんでした", -"Missing a temporary folder" => "一時保存フォルダが見つかりません", +"Missing a temporary folder" => "一時保存フォルダーが見つかりません", "Failed to write to disk" => "ディスクへの書き込みに失敗しました", "Not enough storage available" => "ストレージに十分な空き容量がありません", -"Upload failed. Could not get file info." => "アップロードに失敗。ファイル情報を取得できませんでした。", "Upload failed. Could not find uploaded file" => "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。", +"Upload failed. Could not get file info." => "アップロードに失敗。ファイル情報を取得できませんでした。", "Invalid directory." => "無効なディレクトリです。", "Files" => "ファイル", "Unable to upload {filename} as it is a directory or has 0 bytes" => "ディレクトリもしくは0バイトのため {filename} をアップロードできません", -"Not enough space available" => "利用可能なスペースが十分にありません", "Upload cancelled." => "アップロードはキャンセルされました。", -"Could not get result from server." => "サーバから結果を取得できませんでした。", +"Could not get result from server." => "サーバーから結果を取得できませんでした。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "URL cannot be empty" => "URL は空にできません", -"In the home folder 'Shared' is a reserved filename" => "ホームフォルダでは、'Shared' はシステムが使用する予約済みのファイル名です", -"{new_name} already exists" => "{new_name} はすでに存在しています", +"In the home folder 'Shared' is a reserved filename" => "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です", +"{new_name} already exists" => "{new_name} はすでに存在します", "Could not create file" => "ファイルを作成できませんでした", -"Could not create folder" => "フォルダを作成できませんでした", +"Could not create folder" => "フォルダーを作成できませんでした", "Error fetching URL" => "URL取得エラー", "Share" => "共有", "Delete permanently" => "完全に削除する", @@ -46,14 +44,12 @@ $TRANSLATIONS = array( "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "undo" => "元に戻す", "Error deleting file." => "ファイルの削除エラー。", -"_%n folder_::_%n folders_" => array("%n 個のフォルダ"), +"_%n folder_::_%n folders_" => array("%n 個のフォルダー"), "_%n file_::_%n files_" => array("%n 個のファイル"), "{dirs} and {files}" => "{dirs} と {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n 個のファイルをアップロード中"), -"'.' is an invalid file name." => "'.' は無効なファイル名です。", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", "Your storage is full, files can not be updated or synced anymore!" => "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!", -"Your storage is almost full ({usedSpacePercent}%)" => "あなたのストレージはほぼ一杯です({usedSpacePercent}%)", +"Your storage is almost full ({usedSpacePercent}%)" => "ストレージがほぼ一杯です({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください", "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。", @@ -63,22 +59,22 @@ $TRANSLATIONS = array( "Name" => "名前", "Size" => "サイズ", "Modified" => "更新日時", -"Invalid folder name. Usage of 'Shared' is reserved." => "無効なフォルダ名。「Shared」の利用は予約されています。", +"Invalid folder name. Usage of 'Shared' is reserved." => "無効なフォルダー名。「Shared」の利用は予約されています。", "%s could not be renamed" => "%sの名前を変更できませんでした", "Upload" => "アップロード", "File handling" => "ファイル操作", "Maximum upload size" => "最大アップロードサイズ", "max. possible: " => "最大容量: ", -"Needed for multi-file and folder downloads." => "複数ファイルおよびフォルダのダウンロードに必要", +"Needed for multi-file and folder downloads." => "複数ファイルおよびフォルダーのダウンロードに必要", "Enable ZIP-download" => "ZIP形式のダウンロードを有効にする", "0 is unlimited" => "0を指定した場合は無制限", -"Maximum input size for ZIP files" => "ZIPファイルへの最大入力サイズ", +"Maximum input size for ZIP files" => "ZIPファイルでの最大入力サイズ", "Save" => "保存", "New" => "新規作成", "New text file" => "新規のテキストファイル作成", "Text file" => "テキストファイル", -"New folder" => "新しいフォルダ", -"Folder" => "フォルダ", +"New folder" => "新しいフォルダー", +"Folder" => "フォルダー", "From link" => "リンク", "Deleted files" => "ゴミ箱", "Cancel upload" => "アップロードをキャンセル", @@ -87,7 +83,7 @@ $TRANSLATIONS = array( "Download" => "ダウンロード", "Delete" => "削除", "Upload too large" => "アップロードには大きすぎます。", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバーで規定された最大サイズを超えています。", "Files are being scanned, please wait." => "ファイルをスキャンしています、しばらくお待ちください。", "Current scanning" => "スキャン中", "Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index eafa0c083f..9e89c0b71b 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს", "Could not move %s" => "%s –ის გადატანა ვერ მოხერხდა", "File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული.", "No file was uploaded. Unknown error" => "ფაილი არ აიტვირთა. უცნობი შეცდომა", "There is no error, the file uploaded with success" => "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში", @@ -14,7 +15,6 @@ $TRANSLATIONS = array( "Not enough storage available" => "საცავში საკმარისი ადგილი არ არის", "Invalid directory." => "დაუშვებელი დირექტორია.", "Files" => "ფაილები", -"Not enough space available" => "საკმარისი ადგილი არ არის", "Upload cancelled." => "ატვირთვა შეჩერებულ იქნა.", "File upload is in progress. Leaving the page now will cancel the upload." => "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას", "{new_name} already exists" => "{new_name} უკვე არსებობს", @@ -27,8 +27,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), -"'.' is an invalid file name." => "'.' არის დაუშვებელი ფაილის სახელი.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული.", "Your storage is full, files can not be updated or synced anymore!" => "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!", "Your storage is almost full ({usedSpacePercent}%)" => "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის.", diff --git a/apps/files/l10n/km.php b/apps/files/l10n/km.php index 9733358d62..d338e5e7bb 100644 --- a/apps/files/l10n/km.php +++ b/apps/files/l10n/km.php @@ -1,8 +1,18 @@ "ឯកសារ", +"Share" => "ចែក​រំលែក", +"undo" => "មិន​ធ្វើ​វិញ", "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), +"Error" => "កំហុស", +"Name" => "ឈ្មោះ", +"Upload" => "ផ្ទុក​ឡើង", +"Save" => "រក្សាទុក", +"New folder" => "ថត​ថ្មី", +"Folder" => "ថត", +"Download" => "ទាញយក", "Delete" => "លុប" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 35a9f2fb85..d00d09a148 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "항목 %s을(를) 이동시킬 수 없음 - 같은 이름의 파일이 이미 존재함", "Could not move %s" => "항목 %s을(를) 이동시킬 수 없음", "File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", -"File name must not contain \"/\". Please choose a different name." => "파일 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.", "The name %s is already used in the folder %s. Please choose a different name." => "이름 %s이(가) 폴더 %s에서 이미 사용 중입니다. 다른 이름을 사용하십시오.", "Not a valid source" => "올바르지 않은 원본", "Server is not allowed to open URLs, please check the server configuration" => "서버에서 URL을 열 수 없습니다. 서버 설정을 확인하십시오", "Error while downloading %s to %s" => "%s을(를) %s(으)로 다운로드하는 중 오류 발생", "Error when creating the file" => "파일 생성 중 오류 발생", "Folder name cannot be empty." => "폴더 이름이 비어있을 수 없습니다.", -"Folder name must not contain \"/\". Please choose a different name." => "폴더 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오.", "Error when creating the folder" => "폴더 생성 중 오류 발생", "Unable to set upload directory." => "업로드 디렉터리를 설정할 수 없습니다.", "Invalid Token" => "잘못된 토큰", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "임시 폴더가 없음", "Failed to write to disk" => "디스크에 쓰지 못했습니다", "Not enough storage available" => "저장소가 용량이 충분하지 않습니다.", -"Upload failed. Could not get file info." => "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다.", "Upload failed. Could not find uploaded file" => "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다", +"Upload failed. Could not get file info." => "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다.", "Invalid directory." => "올바르지 않은 디렉터리입니다.", "Files" => "파일", "Unable to upload {filename} as it is a directory or has 0 bytes" => "{filename}을(를) 업로드할 수 없습니다. 폴더이거나 0 바이트 파일입니다.", -"Not enough space available" => "여유 공간이 부족합니다", "Upload cancelled." => "업로드가 취소되었습니다.", "Could not get result from server." => "서버에서 결과를 가져올 수 없습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("파일 %n개"), "{dirs} and {files}" => "{dirs} 그리고 {files}", "_Uploading %n file_::_Uploading %n files_" => array("파일 %n개 업로드 중"), -"'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름입니다.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.", "Your storage is full, files can not be updated or synced anymore!" => "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 동기화할 수 없습니다!", "Your storage is almost full ({usedSpacePercent}%)" => "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index f04e9ec44d..c0141656f5 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,5 +1,6 @@ "په‌ڕگەکان", "Share" => "هاوبەشی کردن", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index d902365863..2a76b7cb57 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -3,13 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja", "Could not move %s" => "Nepavyko perkelti %s", "File name cannot be empty." => "Failo pavadinimas negali būti tuščias.", -"File name must not contain \"/\". Please choose a different name." => "Failo pavadinime negali būti simbolio \"/\". Prašome pasirinkti kitokį pavadinimą.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami.", "The name %s is already used in the folder %s. Please choose a different name." => "Pavadinimas %s jau naudojamas aplanke %s. Prašome pasirinkti kitokį pavadinimą.", "Not a valid source" => "Netinkamas šaltinis", +"Server is not allowed to open URLs, please check the server configuration" => "Serveriui neleidžiama atverti URL, prašome patikrinti serverio konfigūraciją", "Error while downloading %s to %s" => "Klaida siunčiant %s į %s", "Error when creating the file" => "Klaida kuriant failą", "Folder name cannot be empty." => "Aplanko pavadinimas negali būti tuščias.", -"Folder name must not contain \"/\". Please choose a different name." => "Aplanko pavadinime negali būti simbolio \"/\". Prašome pasirinkti kitokį pavadinimą.", "Error when creating the folder" => "Klaida kuriant aplanką", "Unable to set upload directory." => "Nepavyksta nustatyti įkėlimų katalogo.", "Invalid Token" => "Netinkamas ženklas", @@ -22,19 +22,20 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Nėra laikinojo katalogo", "Failed to write to disk" => "Nepavyko įrašyti į diską", "Not enough storage available" => "Nepakanka vietos serveryje", -"Upload failed. Could not get file info." => "Įkėlimas nepavyko. Nepavyko gauti failo informacijos.", "Upload failed. Could not find uploaded file" => "Įkėlimas nepavyko. Nepavyko rasti įkelto failo", +"Upload failed. Could not get file info." => "Įkėlimas nepavyko. Nepavyko gauti failo informacijos.", "Invalid directory." => "Neteisingas aplankas", "Files" => "Failai", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Nepavyksta įkelti {filename}, nes tai katalogas arba yra 0 baitų dydžio", -"Not enough space available" => "Nepakanka vietos", "Upload cancelled." => "Įkėlimas atšauktas.", "Could not get result from server." => "Nepavyko gauti rezultato iš serverio.", "File upload is in progress. Leaving the page now will cancel the upload." => "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks.", "URL cannot be empty" => "URL negali būti tuščias.", +"In the home folder 'Shared' is a reserved filename" => "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas", "{new_name} already exists" => "{new_name} jau egzistuoja", "Could not create file" => "Neįmanoma sukurti failo", "Could not create folder" => "Neįmanoma sukurti aplanko", +"Error fetching URL" => "Klauda gaunant URL", "Share" => "Dalintis", "Delete permanently" => "Ištrinti negrįžtamai", "Rename" => "Pervadinti", @@ -47,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n failas","%n failai","%n failų"), "{dirs} and {files}" => "{dirs} ir {files}", "_Uploading %n file_::_Uploading %n files_" => array("Įkeliamas %n failas","Įkeliami %n failai","Įkeliama %n failų"), -"'.' is an invalid file name." => "'.' yra neleidžiamas failo pavadinime.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami.", "Your storage is full, files can not be updated or synced anymore!" => "Jūsų visa vieta serveryje užimta", "Your storage is almost full ({usedSpacePercent}%)" => "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti", @@ -60,6 +59,7 @@ $TRANSLATIONS = array( "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", +"Invalid folder name. Usage of 'Shared' is reserved." => "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas.", "%s could not be renamed" => "%s negali būti pervadintas", "Upload" => "Įkelti", "File handling" => "Failų tvarkymas", @@ -71,6 +71,7 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maksimalus ZIP archyvo failo dydis", "Save" => "Išsaugoti", "New" => "Naujas", +"New text file" => "Naujas tekstinis failas", "Text file" => "Teksto failas", "New folder" => "Naujas aplankas", "Folder" => "Katalogas", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 7f8975b294..179ccb994b 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu", "Could not move %s" => "Nevarēja pārvietot %s", "File name cannot be empty." => "Datnes nosaukums nevar būt tukšs.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'.", "Unable to set upload directory." => "Nevar uzstādīt augšupielādes mapi.", "Invalid Token" => "Nepareiza pilnvara", "No file was uploaded. Unknown error" => "Netika augšupielādēta neviena datne. Nezināma kļūda", @@ -16,7 +17,6 @@ $TRANSLATIONS = array( "Not enough storage available" => "Nav pietiekami daudz vietas", "Invalid directory." => "Nederīga direktorija.", "Files" => "Datnes", -"Not enough space available" => "Nepietiek brīvas vietas", "Upload cancelled." => "Augšupielāde ir atcelta.", "File upload is in progress. Leaving the page now will cancel the upload." => "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde.", "{new_name} already exists" => "{new_name} jau eksistē", @@ -29,8 +29,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("%n mapes","%n mape","%n mapes"), "_%n file_::_%n files_" => array("%n faili","%n fails","%n faili"), "_Uploading %n file_::_Uploading %n files_" => array("%n","Augšupielāde %n failu","Augšupielāde %n failus"), -"'.' is an invalid file name." => "'.' ir nederīgs datnes nosaukums.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'.", "Your storage is full, files can not be updated or synced anymore!" => "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhronizēt!", "Your storage is almost full ({usedSpacePercent}%)" => "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos.", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index fadf5efc07..c618b396f5 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -3,11 +3,11 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Не можам да го преместам %s - Датотека со такво име веќе постои", "Could not move %s" => "Не можам да ги префрлам %s", "File name cannot be empty." => "Името на датотеката не може да биде празно.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.", "Not a valid source" => "Не е валиден извор", "Error while downloading %s to %s" => "Грешка додека преземам %s to %s", "Error when creating the file" => "Грешка при креирање на датотека", "Folder name cannot be empty." => "Името на папката не може да биде празно.", -"Folder name must not contain \"/\". Please choose a different name." => "Името на папката не смее да содржи \"/\". Одберете друго име.", "Error when creating the folder" => "Грешка при креирање на папка", "Unable to set upload directory." => "Не може да се постави папката за префрлање на податоци.", "Invalid Token" => "Грешен токен", @@ -23,7 +23,6 @@ $TRANSLATIONS = array( "Upload failed. Could not find uploaded file" => "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека.", "Invalid directory." => "Погрешна папка.", "Files" => "Датотеки", -"Not enough space available" => "Немате доволно дисков простор", "Upload cancelled." => "Преземањето е прекинато.", "Could not get result from server." => "Не можам да добијам резултат од серверот.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", @@ -43,8 +42,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("",""), "{dirs} and {files}" => "{dirs} и {files}", "_Uploading %n file_::_Uploading %n files_" => array("",""), -"'.' is an invalid file name." => "'.' е грешно име за датотека.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.", "Your storage is full, files can not be updated or synced anymore!" => "Вашиот сториџ е полн, датотеките веќе не можат да се освежуваат или синхронизираат!", "Your storage is almost full ({usedSpacePercent}%)" => "Вашиот сториџ е скоро полн ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Вашето преземање се подготвува. Ова може да потрае до колку датотеките се големи.", diff --git a/apps/files/l10n/ml.php b/apps/files/l10n/ml.php new file mode 100644 index 0000000000..0157af093e --- /dev/null +++ b/apps/files/l10n/ml.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/mn.php b/apps/files/l10n/mn.php new file mode 100644 index 0000000000..0157af093e --- /dev/null +++ b/apps/files/l10n/mn.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index ebd7ef3899..325ee0eb26 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -3,6 +3,14 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kan ikke flytte %s - En fil med samme navn finnes allerede", "Could not move %s" => "Kunne ikke flytte %s", "File name cannot be empty." => "Filnavn kan ikke være tomt.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt.", +"The name %s is already used in the folder %s. Please choose a different name." => "Navnet %s brukes allerede i mappen %s. Velg et annet navn.", +"Not a valid source" => "Ikke en gyldig kilde", +"Server is not allowed to open URLs, please check the server configuration" => "Serveren har ikke lov til å åpne URL-er. Sjekk konfigurasjon av server", +"Error while downloading %s to %s" => "Feil ved nedlasting av %s til %s", +"Error when creating the file" => "Feil ved oppretting av filen", +"Folder name cannot be empty." => "Mappenavn kan ikke være tomt.", +"Error when creating the folder" => "Feil ved oppretting av mappen", "Unable to set upload directory." => "Kunne ikke sette opplastingskatalog.", "Invalid Token" => "Ugyldig nøkkel", "No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.", @@ -14,30 +22,44 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Mangler midlertidig mappe", "Failed to write to disk" => "Klarte ikke å skrive til disk", "Not enough storage available" => "Ikke nok lagringsplass", +"Upload failed. Could not find uploaded file" => "Opplasting feilet. Fant ikke opplastet fil.", +"Upload failed. Could not get file info." => "Opplasting feilet. Klarte ikke å finne informasjon om fil.", "Invalid directory." => "Ugyldig katalog.", "Files" => "Filer", -"Not enough space available" => "Ikke nok lagringsplass", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan ikke laste opp {filename} fordi det er en mappe eller har 0 bytes", "Upload cancelled." => "Opplasting avbrutt.", +"Could not get result from server." => "Fikk ikke resultat fra serveren.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", +"URL cannot be empty" => "URL kan ikke være tom", +"In the home folder 'Shared' is a reserved filename" => "I hjemmemappen er 'Shared' et reservert filnavn", "{new_name} already exists" => "{new_name} finnes allerede", +"Could not create file" => "Klarte ikke å opprette fil", +"Could not create folder" => "Klarte ikke å opprette mappe", +"Error fetching URL" => "Feil ved henting av URL", "Share" => "Del", "Delete permanently" => "Slett permanent", "Rename" => "Gi nytt navn", "Pending" => "Ventende", +"Could not rename file" => "Klarte ikke å gi nytt navn til fil", "replaced {new_name} with {old_name}" => "erstattet {new_name} med {old_name}", "undo" => "angre", +"Error deleting file." => "Feil ved sletting av fil.", "_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), "_%n file_::_%n files_" => array("%n fil","%n filer"), +"{dirs} and {files}" => "{dirs} og {files}", "_Uploading %n file_::_Uploading %n files_" => array("Laster opp %n fil","Laster opp %n filer"), -"'.' is an invalid file name." => "'.' er et ugyldig filnavn.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt.", "Your storage is full, files can not be updated or synced anymore!" => "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkroniseres!", "Your storage is almost full ({usedSpacePercent}%)" => "Lagringsplass er nesten brukt opp ([usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "App for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og logg inn igjen.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Ugyldig privat nøkkel for Krypterings-app. Oppdater passordet for din private nøkkel i dine personlige innstillinger for å gjenopprette tilgang til de krypterte filene dine.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering ble slått av men filene dine er fremdeles kryptert. Gå til dine personlige innstillinger for å dekryptere filene dine.", "Your download is being prepared. This might take some time if the files are big." => "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid.", +"Error moving file" => "Feil ved flytting av fil", "Error" => "Feil", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", +"Invalid folder name. Usage of 'Shared' is reserved." => "Ulovlig mappenavn. Bruken av 'Shared' er reservert.", "%s could not be renamed" => "Kunne ikke gi nytt navn til %s", "Upload" => "Last opp", "File handling" => "Filhåndtering", @@ -49,12 +71,14 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Maksimal størrelse på ZIP-filer", "Save" => "Lagre", "New" => "Ny", +"New text file" => "Ny tekstfil", "Text file" => "Tekstfil", "New folder" => "Ny mappe", "Folder" => "Mappe", "From link" => "Fra link", -"Deleted files" => "Slettet filer", +"Deleted files" => "Slettede filer", "Cancel upload" => "Avbryt opplasting", +"You don’t have permission to upload or create files here" => "Du har ikke tillatelse til å laste opp eller opprette filer her", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Download" => "Last ned", "Delete" => "Slett", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index a391e25b95..2656e82719 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam", "Could not move %s" => "Kon %s niet verplaatsen", "File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", -"File name must not contain \"/\". Please choose a different name." => "De bestandsnaam mag geen \"/\" bevatten. Kies een andere naam.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", "The name %s is already used in the folder %s. Please choose a different name." => "De naam %s bestaat al in map %s. Kies een andere naam.", "Not a valid source" => "Geen geldige bron", "Server is not allowed to open URLs, please check the server configuration" => "Server mag geen URS's openen, controleer de server configuratie", "Error while downloading %s to %s" => "Fout bij downloaden %s naar %s", "Error when creating the file" => "Fout bij creëren bestand", "Folder name cannot be empty." => "Mapnaam mag niet leeg zijn.", -"Folder name must not contain \"/\". Please choose a different name." => "De mapnaam mag geen \"/\" bevatten. Kies een andere naam.", "Error when creating the folder" => "Fout bij aanmaken map", "Unable to set upload directory." => "Kan upload map niet instellen.", "Invalid Token" => "Ongeldig Token", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Er ontbreekt een tijdelijke map", "Failed to write to disk" => "Schrijven naar schijf mislukt", "Not enough storage available" => "Niet genoeg opslagruimte beschikbaar", -"Upload failed. Could not get file info." => "Upload mislukt, Kon geen bestandsinfo krijgen.", "Upload failed. Could not find uploaded file" => "Upload mislukt. Kon ge-uploade bestand niet vinden", +"Upload failed. Could not get file info." => "Upload mislukt, Kon geen bestandsinfo krijgen.", "Invalid directory." => "Ongeldige directory.", "Files" => "Bestanden", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan {filename} niet uploaden omdat het een map is of 0 bytes groot is", -"Not enough space available" => "Niet genoeg ruimte beschikbaar", "Upload cancelled." => "Uploaden geannuleerd.", "Could not get result from server." => "Kon het resultaat van de server niet terugkrijgen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("","%n bestanden"), "{dirs} and {files}" => "{dirs} en {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n bestand aan het uploaden","%n bestanden aan het uploaden"), -"'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", "Your storage is full, files can not be updated or synced anymore!" => "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!", "Your storage is almost full ({usedSpacePercent}%)" => "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Crypto app is geactiveerd, maar uw sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in.", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index a5e6e737ea..4072ea56be 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet", "Could not move %s" => "Klarte ikkje flytta %s", "File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate.", "Unable to set upload directory." => "Klarte ikkje å endra opplastingsmappa.", "Invalid Token" => "Ugyldig token", "No file was uploaded. Unknown error" => "Ingen filer lasta opp. Ukjend feil", @@ -14,12 +15,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Manglar ei mellombels mappe", "Failed to write to disk" => "Klarte ikkje skriva til disk", "Not enough storage available" => "Ikkje nok lagringsplass tilgjengeleg", -"Upload failed. Could not get file info." => "Feil ved opplasting. Klarte ikkje å henta filinfo.", "Upload failed. Could not find uploaded file" => "Feil ved opplasting. Klarte ikkje å finna opplasta fil.", +"Upload failed. Could not get file info." => "Feil ved opplasting. Klarte ikkje å henta filinfo.", "Invalid directory." => "Ugyldig mappe.", "Files" => "Filer", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Klarte ikkje å lasta opp {filename} sidan det er ei mappe eller er 0 byte.", -"Not enough space available" => "Ikkje nok lagringsplass tilgjengeleg", "Upload cancelled." => "Opplasting avbroten.", "Could not get result from server." => "Klarte ikkje å henta resultat frå tenaren.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbroten.", @@ -34,8 +34,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} og {files}", "_Uploading %n file_::_Uploading %n files_" => array("Lastar opp %n fil","Lastar opp %n filer"), -"'.' is an invalid file name." => "«.» er eit ugyldig filnamn.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate.", "Your storage is full, files can not be updated or synced anymore!" => "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!", "Your storage is almost full ({usedSpacePercent}%)" => "Lagringa di er nesten full ({usedSpacePercent} %)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar.", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 031bd50870..9a3c0b9b63 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nie można było przenieść %s - Plik o takiej nazwie już istnieje", "Could not move %s" => "Nie można było przenieść %s", "File name cannot be empty." => "Nazwa pliku nie może być pusta.", -"File name must not contain \"/\". Please choose a different name." => "Nazwa pliku nie może zawierać \"/\". Proszę wybrać inną nazwę.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone.", "The name %s is already used in the folder %s. Please choose a different name." => "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę.", "Not a valid source" => "Niepoprawne źródło", "Server is not allowed to open URLs, please check the server configuration" => "Serwer nie mógł otworzyć adresów URL, należy sprawdzić konfigurację serwera", "Error while downloading %s to %s" => "Błąd podczas pobierania %s do %S", "Error when creating the file" => "Błąd przy tworzeniu pliku", "Folder name cannot be empty." => "Nazwa folderu nie może być pusta.", -"Folder name must not contain \"/\". Please choose a different name." => "Nazwa folderu nie może zawierać \"/\". Proszę wybrać inną nazwę.", "Error when creating the folder" => "Błąd przy tworzeniu folderu", "Unable to set upload directory." => "Nie można ustawić katalog wczytywania.", "Invalid Token" => "Nieprawidłowy Token", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Brak folderu tymczasowego", "Failed to write to disk" => "Błąd zapisu na dysk", "Not enough storage available" => "Za mało dostępnego miejsca", -"Upload failed. Could not get file info." => "Nieudane przesłanie. Nie można pobrać informacji o pliku.", "Upload failed. Could not find uploaded file" => "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku", +"Upload failed. Could not get file info." => "Nieudane przesłanie. Nie można pobrać informacji o pliku.", "Invalid directory." => "Zła ścieżka.", "Files" => "Pliki", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Nie można przesłać {filename} być może jest katalogiem lub posiada 0 bajtów", -"Not enough space available" => "Za mało miejsca", "Upload cancelled." => "Wczytywanie anulowane.", "Could not get result from server." => "Nie można uzyskać wyniku z serwera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane.", @@ -48,10 +46,8 @@ $TRANSLATIONS = array( "Error deleting file." => "Błąd podczas usuwania pliku", "_%n folder_::_%n folders_" => array("%n katalog","%n katalogi","%n katalogów"), "_%n file_::_%n files_" => array("%n plik","%n pliki","%n plików"), -"{dirs} and {files}" => "{dirs} and {files}", +"{dirs} and {files}" => "{dirs} i {files}", "_Uploading %n file_::_Uploading %n files_" => array("Wysyłanie %n pliku","Wysyłanie %n plików","Wysyłanie %n plików"), -"'.' is an invalid file name." => "„.” jest nieprawidłową nazwą pliku.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone.", "Your storage is full, files can not be updated or synced anymore!" => "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!", "Your storage is almost full ({usedSpacePercent}%)" => "Twój magazyn jest prawie pełny ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikacja szyfrująca jest aktywna, ale twoje klucze nie zostały zainicjowane, prosze wyloguj się i zaloguj ponownie.", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index f84dcfcd48..044fcdcccc 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Impossível mover %s - Um arquivo com este nome já existe", "Could not move %s" => "Impossível mover %s", "File name cannot be empty." => "O nome do arquivo não pode estar vazio.", -"File name must not contain \"/\". Please choose a different name." => "O nome do arquivo não deve conter \"/\". Por favor, escolha um nome diferente.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "The name %s is already used in the folder %s. Please choose a different name." => "O nome %s já é usado na pasta %s. Por favor, escolha um nome diferente.", "Not a valid source" => "Não é uma fonte válida", "Server is not allowed to open URLs, please check the server configuration" => "Não é permitido ao servidor abrir URLs, por favor verificar a configuração do servidor.", "Error while downloading %s to %s" => "Erro ao baixar %s para %s", "Error when creating the file" => "Erro ao criar o arquivo", "Folder name cannot be empty." => "O nome da pasta não pode estar vazio.", -"Folder name must not contain \"/\". Please choose a different name." => "O nome da pasta não pode conter \"/\". Por favor, escolha um nome diferente.", "Error when creating the folder" => "Erro ao criar a pasta", "Unable to set upload directory." => "Impossível configurar o diretório de upload", "Invalid Token" => "Token inválido", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Pasta temporária não encontrada", "Failed to write to disk" => "Falha ao escrever no disco", "Not enough storage available" => "Espaço de armazenamento insuficiente", -"Upload failed. Could not get file info." => "Falha no envio. Não foi possível obter informações do arquivo.", "Upload failed. Could not find uploaded file" => "Falha no envio. Não foi possível encontrar o arquivo enviado", +"Upload failed. Could not get file info." => "Falha no envio. Não foi possível obter informações do arquivo.", "Invalid directory." => "Diretório inválido.", "Files" => "Arquivos", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Incapaz de fazer o envio de {filename}, pois é um diretório ou tem 0 bytes", -"Not enough space available" => "Espaço de armazenamento insuficiente", "Upload cancelled." => "Envio cancelado.", "Could not get result from server." => "Não foi possível obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n arquivo","%n arquivos"), "{dirs} and {files}" => "{dirs} e {files}", "_Uploading %n file_::_Uploading %n files_" => array("Enviando %n arquivo","Enviando %n arquivos"), -"'.' is an invalid file name." => "'.' é um nome de arquivo inválido.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "Your storage is full, files can not be updated or synced anymore!" => "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!", "Your storage is almost full ({usedSpacePercent}%)" => "Seu armazenamento está quase cheio ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "App de encriptação está ativado, mas as chaves não estão inicializadas, por favor log-out e faça login novamente", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 4b9fade2e2..5b4bc6993c 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,8 +1,16 @@ "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", +"Could not move %s - File with this name already exists" => "Não pôde mover o ficheiro %s - Já existe um ficheiro com esse nome", "Could not move %s" => "Não foi possível move o ficheiro %s", "File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", +"The name %s is already used in the folder %s. Please choose a different name." => "O nome %s já está em uso na pasta %s. Por favor escolha um nome diferente.", +"Not a valid source" => "Não é uma fonte válida", +"Server is not allowed to open URLs, please check the server configuration" => "O servidor não consegue abrir URLs, por favor verifique a configuração do servidor", +"Error while downloading %s to %s" => "Erro ao transferir %s para %s", +"Error when creating the file" => "Erro ao criar o ficheiro", +"Folder name cannot be empty." => "O nome da pasta não pode estar vazio.", +"Error when creating the folder" => "Erro ao criar a pasta", "Unable to set upload directory." => "Não foi possível criar o diretório de upload", "Invalid Token" => "Token inválido", "No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido", @@ -14,28 +22,36 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Está a faltar a pasta temporária", "Failed to write to disk" => "Falhou a escrita no disco", "Not enough storage available" => "Não há espaço suficiente em disco", +"Upload failed. Could not find uploaded file" => "Falhou o envio. Não conseguiu encontrar o ficheiro enviado", "Upload failed. Could not get file info." => "O carregamento falhou. Não foi possível obter a informação do ficheiro.", "Invalid directory." => "Directório Inválido", "Files" => "Ficheiros", -"Not enough space available" => "Espaço em disco insuficiente!", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Incapaz de enviar {filename}, dado que é uma pasta, ou tem 0 bytes", "Upload cancelled." => "Envio cancelado.", "Could not get result from server." => "Não foi possível obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", +"URL cannot be empty" => "URL não pode estar vazio", +"In the home folder 'Shared' is a reserved filename" => "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado", "{new_name} already exists" => "O nome {new_name} já existe", +"Could not create file" => "Não pôde criar ficheiro", +"Could not create folder" => "Não pôde criar pasta", +"Error fetching URL" => "Erro ao obter URL", "Share" => "Partilhar", "Delete permanently" => "Eliminar permanentemente", "Rename" => "Renomear", "Pending" => "Pendente", +"Could not rename file" => "Não pôde renomear o ficheiro", "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "undo" => "desfazer", +"Error deleting file." => "Erro ao apagar o ficheiro.", "_%n folder_::_%n folders_" => array("%n pasta","%n pastas"), "_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "{dirs} and {files}" => "{dirs} e {files}", "_Uploading %n file_::_Uploading %n files_" => array("A carregar %n ficheiro","A carregar %n ficheiros"), -"'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", "Your storage is full, files can not be updated or synced anymore!" => "O seu armazenamento está cheio, os ficheiros não podem ser sincronizados.", "Your storage is almost full ({usedSpacePercent}%)" => "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "A Aplicação de Encriptação está ativada, mas as suas chaves não inicializaram. Por favor termine e inicie a sessão novamente", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Chave privada inválida da Aplicação de Encriptação. Por favor atualize a sua senha de chave privada nas definições pessoais, para recuperar o acesso aos seus ficheiros encriptados.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros.", "Your download is being prepared. This might take some time if the files are big." => "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes.", "Error moving file" => "Erro ao mover o ficheiro", @@ -43,6 +59,7 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", +"Invalid folder name. Usage of 'Shared' is reserved." => "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada.", "%s could not be renamed" => "%s não pode ser renomeada", "Upload" => "Carregar", "File handling" => "Manuseamento de ficheiros", @@ -54,12 +71,14 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Tamanho máximo para ficheiros ZIP", "Save" => "Guardar", "New" => "Novo", +"New text file" => "Novo ficheiro de texto", "Text file" => "Ficheiro de texto", "New folder" => "Nova Pasta", "Folder" => "Pasta", "From link" => "Da ligação", "Deleted files" => "Ficheiros eliminados", "Cancel upload" => "Cancelar envio", +"You don’t have permission to upload or create files here" => "Você não tem permissão para enviar ou criar ficheiros aqui", "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Download" => "Transferir", "Delete" => "Eliminar", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 933625d8d1..0b83b85215 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s nu se poate muta - Fișierul cu acest nume există deja ", "Could not move %s" => "Nu s-a putut muta %s", "File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalide, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.", "Unable to set upload directory." => "Imposibil de a seta directorul pentru incărcare.", "Invalid Token" => "Jeton Invalid", "No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută", @@ -14,12 +15,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Lipsește un dosar temporar", "Failed to write to disk" => "Eroare la scrierea discului", "Not enough storage available" => "Nu este suficient spațiu disponibil", -"Upload failed. Could not get file info." => "Încărcare eșuată. Nu se pot obține informații despre fișier.", "Upload failed. Could not find uploaded file" => "Încărcare eșuată. Nu se poate găsi fișierul încărcat", +"Upload failed. Could not get file info." => "Încărcare eșuată. Nu se pot obține informații despre fișier.", "Invalid directory." => "registru invalid.", "Files" => "Fișiere", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Nu se poate încărca {filename} deoarece este un director sau are mărimea de 0 octeți", -"Not enough space available" => "Nu este suficient spațiu disponibil", "Upload cancelled." => "Încărcare anulată.", "Could not get result from server." => "Nu se poate obține rezultatul de la server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", @@ -34,8 +34,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fișier","%n fișiere","%n fișiere"), "{dirs} and {files}" => "{dirs} și {files}", "_Uploading %n file_::_Uploading %n files_" => array("Se încarcă %n fișier.","Se încarcă %n fișiere.","Se încarcă %n fișiere."), -"'.' is an invalid file name." => "'.' este un nume invalid de fișier.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalide, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.", "Your storage is full, files can not be updated or synced anymore!" => "Spatiul de stocare este plin, fisierele nu mai pot fi actualizate sau sincronizate", "Your storage is almost full ({usedSpacePercent}%)" => "Spatiul de stocare este aproape plin {spatiu folosit}%", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 968da63aac..a07cfe20f4 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -3,66 +3,62 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s" => "Невозможно переместить %s", "File name cannot be empty." => "Имя файла не может быть пустым.", -"File name must not contain \"/\". Please choose a different name." => "Имя файла не должно содержать символ \"/\". Пожалуйста, выберите другое имя.", -"The name %s is already used in the folder %s. Please choose a different name." => "Имя %s уже используется в папке %s. Пожалуйста выберите другое имя.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", +"The name %s is already used in the folder %s. Please choose a different name." => "Имя %s уже используется для каталога %s. Пожалуйста, выберите другое имя.", "Not a valid source" => "Неправильный источник", "Server is not allowed to open URLs, please check the server configuration" => "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера", -"Error while downloading %s to %s" => "Ошибка при загрузке %s в %s", +"Error while downloading %s to %s" => "Ошибка при скачивании %s в %s", "Error when creating the file" => "Ошибка при создании файла", "Folder name cannot be empty." => "Имя папки не может быть пустым.", -"Folder name must not contain \"/\". Please choose a different name." => "Имя папки не должно содержать символ \"/\". Пожалуйста, выберите другое имя.", -"Error when creating the folder" => "Ошибка при создании папки", +"Error when creating the folder" => "Ошибка создания каталога", "Unable to set upload directory." => "Не удалось установить каталог загрузки.", "Invalid Token" => "Недопустимый маркер", "No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка", "There is no error, the file uploaded with success" => "Файл загружен успешно.", -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Файл превышает размер установленный upload_max_filesize в php.ini:", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Загружаемый файл превосходит значение переменной MAX_FILE_SIZE, указанной в форме HTML", -"The uploaded file was only partially uploaded" => "Файл загружен частично", -"No file was uploaded" => "Файл не был загружен", -"Missing a temporary folder" => "Отсутствует временная папка", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Файл превышает размер, установленный параметром upload_max_filesize в php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Загруженный файл превышает размер, установленный параметром MAX_FILE_SIZE в HTML-форме", +"The uploaded file was only partially uploaded" => "Файл загружен лишь частично", +"No file was uploaded" => "Ни одного файла загружено не было", +"Missing a temporary folder" => "Отсутствует временный каталог", "Failed to write to disk" => "Ошибка записи на диск", "Not enough storage available" => "Недостаточно доступного места в хранилище", +"Upload failed. Could not find uploaded file" => "Загрузка не удалась. Невозможно найти загружаемый файл", "Upload failed. Could not get file info." => "Загрузка не удалась. Невозможно получить информацию о файле", -"Upload failed. Could not find uploaded file" => "Загрузка не удалась. Невозможно найти загруженный файл", -"Invalid directory." => "Неправильный каталог.", +"Invalid directory." => "Неверный каталог.", "Files" => "Файлы", -"Unable to upload {filename} as it is a directory or has 0 bytes" => "Невозможно загрузить файл {filename} так как он является директорией либо имеет размер 0 байт", -"Not enough space available" => "Недостаточно свободного места", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "Невозможно загрузить {filename}, так как это либо каталог, либо файл нулевого размера", "Upload cancelled." => "Загрузка отменена.", -"Could not get result from server." => "Не получен ответ от сервера", -"File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", +"Could not get result from server." => "Не удалось получить ответ от сервера.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку.", "URL cannot be empty" => "Ссылка не может быть пустой.", -"In the home folder 'Shared' is a reserved filename" => "В домашней папке 'Shared' зарезервированное имя файла", +"In the home folder 'Shared' is a reserved filename" => "'Shared' - это зарезервированное имя файла в домашнем каталоге", "{new_name} already exists" => "{new_name} уже существует", "Could not create file" => "Не удалось создать файл", -"Could not create folder" => "Не удалось создать папку", +"Could not create folder" => "Не удалось создать каталог", "Error fetching URL" => "Ошибка получения URL", "Share" => "Открыть доступ", -"Delete permanently" => "Удалено навсегда", +"Delete permanently" => "Удалить окончательно", "Rename" => "Переименовать", "Pending" => "Ожидание", "Could not rename file" => "Не удалось переименовать файл", "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", "undo" => "отмена", "Error deleting file." => "Ошибка при удалении файла.", -"_%n folder_::_%n folders_" => array("%n папка","%n папки","%n папок"), +"_%n folder_::_%n folders_" => array("%n каталог","%n каталога","%n каталогов"), "_%n file_::_%n files_" => array("%n файл","%n файла","%n файлов"), "{dirs} and {files}" => "{dirs} и {files}", "_Uploading %n file_::_Uploading %n files_" => array("Закачка %n файла","Закачка %n файлов","Закачка %n файлов"), -"'.' is an invalid file name." => "'.' - неправильное имя файла.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", -"Your storage is full, files can not be updated or synced anymore!" => "Ваше дисковое пространство полностью заполнено, произведите очистку перед загрузкой новых файлов.", +"Your storage is full, files can not be updated or synced anymore!" => "Ваше хранилище заполнено, произведите очистку перед загрузкой новых файлов.", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти заполнено ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Приложение для шифрования активно, но ваши ключи не инициализированы, пожалуйста, перелогиньтесь", -"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Неверный приватный ключ для приложения шифрования. Пожалуйста, обноваите ваш приватный ключ в персональных настройках чтобы восстановить доступ к вашим зашифрованным файлам.", -"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Шифрование было отключено, но ваши файлы все еще зашифрованы. Пожалуйста, зайдите на страницу персональных настроек для того, чтобы расшифровать ваши файлы.", -"Your download is being prepared. This might take some time if the files are big." => "Загрузка началась. Это может потребовать много времени, если файл большого размера.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Закрытый ключ приложения шифрования недействителен. Обновите закрытый ключ в личных настройках, чтобы восстановить доступ к зашифрованным файлам.", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Шифрование было отключено, но ваши файлы остались зашифрованными. Зайдите на страницу личных настроек для того, чтобы расшифровать их.", +"Your download is being prepared. This might take some time if the files are big." => "Идёт подготовка к скачиванию. Это может занять некоторое время, если файлы большого размера.", "Error moving file" => "Ошибка при перемещении файла", "Error" => "Ошибка", "Name" => "Имя", "Size" => "Размер", -"Modified" => "Изменён", +"Modified" => "Дата изменения", "Invalid folder name. Usage of 'Shared' is reserved." => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "%s could not be renamed" => "%s не может быть переименован", "Upload" => "Загрузка", @@ -70,24 +66,24 @@ $TRANSLATIONS = array( "Maximum upload size" => "Максимальный размер загружаемого файла", "max. possible: " => "макс. возможно: ", "Needed for multi-file and folder downloads." => "Требуется для скачивания нескольких файлов и папок", -"Enable ZIP-download" => "Включить ZIP-скачивание", +"Enable ZIP-download" => "Включить скачивание в виде архивов ZIP", "0 is unlimited" => "0 - без ограничений", "Maximum input size for ZIP files" => "Максимальный исходный размер для ZIP файлов", "Save" => "Сохранить", "New" => "Новый", "New text file" => "Новый текстовый файл", "Text file" => "Текстовый файл", -"New folder" => "Новая папка", -"Folder" => "Папка", -"From link" => "Из ссылки", +"New folder" => "Новый каталог", +"Folder" => "Каталог", +"From link" => "Объект по ссылке", "Deleted files" => "Удалённые файлы", -"Cancel upload" => "Отмена загрузки", -"You don’t have permission to upload or create files here" => "У вас недостаточно прав для загрузки или создания файлов отсюда.", +"Cancel upload" => "Отменить загрузку", +"You don’t have permission to upload or create files here" => "У вас нет прав для загрузки или создания файлов здесь.", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Download" => "Скачать", "Delete" => "Удалить", "Upload too large" => "Файл слишком велик", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере.", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые вы пытаетесь загрузить, превышают лимит максимального размера на этом сервере.", "Files are being scanned, please wait." => "Подождите, файлы сканируются.", "Current scanning" => "Текущее сканирование", "Upgrading filesystem cache..." => "Обновление кэша файловой системы..." diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 2d0eb25f62..8717e11337 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -3,13 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nie je možné presunúť %s - súbor s týmto menom už existuje", "Could not move %s" => "Nie je možné presunúť %s", "File name cannot be empty." => "Meno súboru nemôže byť prázdne", -"File name must not contain \"/\". Please choose a different name." => "Názov súboru nesmie obsahovať \"/\". Prosím zvoľte iný názov.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty.", "The name %s is already used in the folder %s. Please choose a different name." => "Názov %s už používa priečinok s%. Prosím zvoľte iný názov.", "Not a valid source" => "Neplatný zdroj", +"Server is not allowed to open URLs, please check the server configuration" => "Server nie je oprávnený otvárať adresy URL. Overte nastavenia servera.", "Error while downloading %s to %s" => "Chyba pri sťahovaní súboru %s do %s", "Error when creating the file" => "Chyba pri vytváraní súboru", "Folder name cannot be empty." => "Názov priečinka nemôže byť prázdny.", -"Folder name must not contain \"/\". Please choose a different name." => "Názov priečinka nesmie obsahovať \"/\". Prosím zvoľte iný názov.", "Error when creating the folder" => "Chyba pri vytváraní priečinka", "Unable to set upload directory." => "Nemožno nastaviť priečinok pre nahrané súbory.", "Invalid Token" => "Neplatný token", @@ -22,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Chýba dočasný priečinok", "Failed to write to disk" => "Zápis na disk sa nepodaril", "Not enough storage available" => "Nedostatok dostupného úložného priestoru", -"Upload failed. Could not get file info." => "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore.", "Upload failed. Could not find uploaded file" => "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor", +"Upload failed. Could not get file info." => "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore.", "Invalid directory." => "Neplatný priečinok.", "Files" => "Súbory", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Nemožno nahrať súbor {filename}, pretože je to priečinok, alebo má 0 bitov", -"Not enough space available" => "Nie je k dispozícii dostatok miesta", "Upload cancelled." => "Odosielanie zrušené.", "Could not get result from server." => "Nepodarilo sa dostať výsledky zo servera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", @@ -36,6 +35,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} už existuje", "Could not create file" => "Nemožno vytvoriť súbor", "Could not create folder" => "Nemožno vytvoriť priečinok", +"Error fetching URL" => "Chyba pri načítavaní URL", "Share" => "Zdieľať", "Delete permanently" => "Zmazať trvalo", "Rename" => "Premenovať", @@ -48,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n súbor","%n súbory","%n súborov"), "{dirs} and {files}" => "{dirs} a {files}", "_Uploading %n file_::_Uploading %n files_" => array("Nahrávam %n súbor","Nahrávam %n súbory","Nahrávam %n súborov"), -"'.' is an invalid file name." => "'.' je neplatné meno súboru.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložisko je takmer plné ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste.", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 037e5f6b6b..220df4a981 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Datoteke %s ni mogoče premakniti - datoteka s tem imenom že obstaja.", "Could not move %s" => "Datoteke %s ni mogoče premakniti", "File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.", -"File name must not contain \"/\". Please choose a different name." => "Ime datoteke ne sme vsebovati znaka \"/\". Določiti je treba drugo ime.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni.", "The name %s is already used in the folder %s. Please choose a different name." => "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime.", "Not a valid source" => "Vir ni veljaven", "Server is not allowed to open URLs, please check the server configuration" => "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika.", "Error while downloading %s to %s" => "Napaka med prejemanjem %s v mapo %s", "Error when creating the file" => "Napaka med ustvarjanjem datoteke", "Folder name cannot be empty." => "Ime mape ne more biti prazna vrednost.", -"Folder name must not contain \"/\". Please choose a different name." => "Ime mape ne sme vsebovati znaka \"/\". Določiti je treba drugo ime.", "Error when creating the folder" => "Napaka med ustvarjanjem mape", "Unable to set upload directory." => "Mapo, v katero boste prenašali dokumente, ni mogoče določiti", "Invalid Token" => "Neveljaven žeton", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Manjka začasna mapa", "Failed to write to disk" => "Pisanje na disk je spodletelo", "Not enough storage available" => "Na voljo ni dovolj prostora", -"Upload failed. Could not get file info." => "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke.", "Upload failed. Could not find uploaded file" => "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke.", +"Upload failed. Could not get file info." => "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke.", "Invalid directory." => "Neveljavna mapa.", "Files" => "Datoteke", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Ni mogoče poslati datoteke {filename}, saj je to ali mapa ali pa je velikost datoteke 0 bajtov.", -"Not enough space available" => "Na voljo ni dovolj prostora.", "Upload cancelled." => "Pošiljanje je preklicano.", "Could not get result from server." => "Ni mogoče pridobiti podatkov s strežnika.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n datoteka","%n datoteki","%n datoteke","%n datotek"), "{dirs} and {files}" => "{dirs} in {files}", "_Uploading %n file_::_Uploading %n files_" => array("Posodabljanje %n datoteke","Posodabljanje %n datotek","Posodabljanje %n datotek","Posodabljanje %n datotek"), -"'.' is an invalid file name." => "'.' je neveljavno ime datoteke.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni.", "Your storage is full, files can not be updated or synced anymore!" => "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!", "Your storage is almost full ({usedSpacePercent}%)" => "Prostor za shranjevanje je skoraj do konca zaseden ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite.", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index a06b6821af..b4696c12b8 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "E pa mundur zhvendosja e %s - ekziston nje skedar me te njetin emer", "Could not move %s" => "Nuk mund të zhvendoset %s", "File name cannot be empty." => "Emri i skedarit nuk mund të jetë bosh.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen.", "Unable to set upload directory." => "E pa mundur të vendoset dosja e ngarkimit", "Invalid Token" => "Shenjë e gabuar", "No file was uploaded. Unknown error" => "Asnjë skedar nuk u dërgua. Gabim i pa njohur", @@ -16,10 +17,11 @@ $TRANSLATIONS = array( "Not enough storage available" => "Hapsira e arkivimit e pamjaftueshme", "Invalid directory." => "Dosje e pavlefshme", "Files" => "Skedarë", -"Not enough space available" => "Nuk ka hapsirë të nevojshme", "Upload cancelled." => "Ngarkimi u anullua", "File upload is in progress. Leaving the page now will cancel the upload." => "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin", +"URL cannot be empty" => "URL-i nuk mund të jetë bosh", "{new_name} already exists" => "{new_name} është ekzistues ", +"Could not create folder" => "I pamundur krijimi i kartelës", "Share" => "Ndaj", "Delete permanently" => "Fshi përfundimisht", "Rename" => "Riemëro", @@ -30,12 +32,11 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n skedar","%n skedarë"), "{dirs} and {files}" => "{dirs} dhe {files}", "_Uploading %n file_::_Uploading %n files_" => array("Po ngarkoj %n skedar","Po ngarkoj %n skedarë"), -"'.' is an invalid file name." => "'.' nuk është skedar i vlefshem.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen.", "Your storage is full, files can not be updated or synced anymore!" => "Hapsira juaj e arkivimit është plot, skedarët nuk mund të përditësohen ose sinkronizohen!", "Your storage is almost full ({usedSpacePercent}%)" => "Hapsira juaj e arkivimit është pothuajse në fund ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj.", "Your download is being prepared. This might take some time if the files are big." => "Shkarkimi juaj është duke u përgatitur. Kjo mund të kërkojë kohë nëse skedarët janë të mëdhenj.", +"Error moving file" => "Gabim lëvizjen dokumentave", "Error" => "Gabim", "Name" => "Emri", "Size" => "Madhësia", @@ -52,6 +53,7 @@ $TRANSLATIONS = array( "Save" => "Ruaj", "New" => "E re", "Text file" => "Skedar tekst", +"New folder" => "Dosje e're", "Folder" => "Dosje", "From link" => "Nga lidhja", "Deleted files" => "Skedarë të fshirë ", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index e383b66e07..9220be0884 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Не могу да преместим %s – датотека с овим именом већ постоји", "Could not move %s" => "Не могу да преместим %s", "File name cannot be empty." => "Име датотеке не може бити празно.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *.", "No file was uploaded. Unknown error" => "Ниједна датотека није отпремљена услед непознате грешке", "There is no error, the file uploaded with success" => "Није дошло до грешке. Датотека је успешно отпремљена.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:", @@ -14,7 +15,6 @@ $TRANSLATIONS = array( "Not enough storage available" => "Нема довољно простора", "Invalid directory." => "неисправна фасцикла.", "Files" => "Датотеке", -"Not enough space available" => "Нема довољно простора", "Upload cancelled." => "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", "{new_name} already exists" => "{new_name} већ постоји", @@ -27,8 +27,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), -"'.' is an invalid file name." => "Датотека „.“ је неисправног имена.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *.", "Your storage is full, files can not be updated or synced anymore!" => "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване.", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше складиште је скоро па пуно ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Припремам преузимање. Ово може да потраје ако су датотеке велике.", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 13ce5ec8b3..67bf30d860 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -7,6 +7,7 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", "Share" => "Podeli", +"Rename" => "Preimenij", "_%n folder_::_%n folders_" => array("","",""), "_%n file_::_%n files_" => array("","",""), "_Uploading %n file_::_Uploading %n files_" => array("","",""), diff --git a/apps/files/l10n/su.php b/apps/files/l10n/su.php new file mode 100644 index 0000000000..70ab6572ba --- /dev/null +++ b/apps/files/l10n/su.php @@ -0,0 +1,7 @@ + array(""), +"_%n file_::_%n files_" => array(""), +"_Uploading %n file_::_Uploading %n files_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 9e1b8110d4..0f8b9c1fe7 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -3,13 +3,12 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kunde inte flytta %s - Det finns redan en fil med detta namn", "Could not move %s" => "Kan inte flytta %s", "File name cannot be empty." => "Filnamn kan inte vara tomt.", -"File name must not contain \"/\". Please choose a different name." => "Filnamnet får ej innehålla \"/\". Välj ett annat namn.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", "The name %s is already used in the folder %s. Please choose a different name." => "Namnet %s används redan i katalogen %s. Välj ett annat namn.", "Not a valid source" => "Inte en giltig källa", "Error while downloading %s to %s" => "Fel under nerladdning från %s till %s", "Error when creating the file" => "Fel under skapande utav filen", "Folder name cannot be empty." => "Katalognamn kan ej vara tomt.", -"Folder name must not contain \"/\". Please choose a different name." => "Katalog namnet får ej innehålla \"/\". Välj ett annat namn.", "Error when creating the folder" => "Fel under skapande utav en katalog", "Unable to set upload directory." => "Kan inte sätta mapp för uppladdning.", "Invalid Token" => "Ogiltig token", @@ -22,12 +21,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "En temporär mapp saknas", "Failed to write to disk" => "Misslyckades spara till disk", "Not enough storage available" => "Inte tillräckligt med lagringsutrymme tillgängligt", -"Upload failed. Could not get file info." => "Uppladdning misslyckades. Gick inte att hämta filinformation.", "Upload failed. Could not find uploaded file" => "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen", +"Upload failed. Could not get file info." => "Uppladdning misslyckades. Gick inte att hämta filinformation.", "Invalid directory." => "Felaktig mapp.", "Files" => "Filer", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller har 0 bytes.", -"Not enough space available" => "Inte tillräckligt med utrymme tillgängligt", "Upload cancelled." => "Uppladdning avbruten.", "Could not get result from server." => "Gick inte att hämta resultat från server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", @@ -48,8 +46,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} och {files}", "_Uploading %n file_::_Uploading %n files_" => array("Laddar upp %n fil","Laddar upp %n filer"), -"'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", "Your storage is full, files can not be updated or synced anymore!" => "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!", "Your storage is almost full ({usedSpacePercent}%)" => "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index f91a74ee9b..c0589feece 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -1,5 +1,6 @@ ', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.", "No file was uploaded. Unknown error" => "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு", "There is no error, the file uploaded with success" => "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது", @@ -19,7 +20,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.", "Error" => "வழு", "Name" => "பெயர்", "Size" => "அளவு", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 38a67c5067..5e45bf4cd7 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว", "Could not move %s" => "ไม่สามารถย้าย %s ได้", "File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้", "No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ", "There is no error, the file uploaded with success" => "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini", @@ -14,7 +15,6 @@ $TRANSLATIONS = array( "Not enough storage available" => "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน", "Invalid directory." => "ไดเร็กทอรี่ไม่ถูกต้อง", "Files" => "ไฟล์", -"Not enough space available" => "มีพื้นที่เหลือไม่เพียงพอ", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", "{new_name} already exists" => "{new_name} มีอยู่แล้วในระบบ", @@ -26,8 +26,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array(""), "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), -"'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้", "Your storage is full, files can not be updated or synced anymore!" => "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือผสานไฟล์ต่างๆได้อีกต่อไป", "Your storage is almost full ({usedSpacePercent}%)" => "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่", @@ -46,6 +44,7 @@ $TRANSLATIONS = array( "Save" => "บันทึก", "New" => "อัพโหลดไฟล์ใหม่", "Text file" => "ไฟล์ข้อความ", +"New folder" => "โฟลเดอร์ใหม่", "Folder" => "แฟ้มเอกสาร", "From link" => "จากลิงก์", "Cancel upload" => "ยกเลิกการอัพโหลด", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 90b16922a7..8105095d61 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -3,14 +3,13 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s taşınamadı - Bu isimde dosya zaten var", "Could not move %s" => "%s taşınamadı", "File name cannot be empty." => "Dosya adı boş olamaz.", -"File name must not contain \"/\". Please choose a different name." => "Dosya adı \"/\" içermemelidir. Lütfen farklı bir isim seçin.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", "The name %s is already used in the folder %s. Please choose a different name." => "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim seçin.", "Not a valid source" => "Geçerli bir kaynak değil", "Server is not allowed to open URLs, please check the server configuration" => "Sunucunun adresleri açma izi yok, lütfen sunucu yapılandırmasını denetleyin", "Error while downloading %s to %s" => "%s, %s içine indirilirken hata", "Error when creating the file" => "Dosya oluşturulurken hata", "Folder name cannot be empty." => "Klasör adı boş olamaz.", -"Folder name must not contain \"/\". Please choose a different name." => "Klasör adı \"/\" içermemelidir. Lütfen farklı bir isim seçin.", "Error when creating the folder" => "Klasör oluşturulurken hata", "Unable to set upload directory." => "Yükleme dizini tanımlanamadı.", "Invalid Token" => "Geçersiz Simge", @@ -23,12 +22,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Geçici dizin eksik", "Failed to write to disk" => "Diske yazılamadı", "Not enough storage available" => "Yeterli disk alanı yok", -"Upload failed. Could not get file info." => "Yükleme başarısız. Dosya bilgisi alınamadı.", "Upload failed. Could not find uploaded file" => "Yükleme başarısız. Yüklenen dosya bulunamadı", +"Upload failed. Could not get file info." => "Yükleme başarısız. Dosya bilgisi alınamadı.", "Invalid directory." => "Geçersiz dizin.", "Files" => "Dosyalar", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi", -"Not enough space available" => "Yeterli disk alanı yok", "Upload cancelled." => "Yükleme iptal edildi.", "Could not get result from server." => "Sunucudan sonuç alınamadı.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", @@ -50,8 +48,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n dosya","%n dosya"), "{dirs} and {files}" => "{dirs} ve {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n dosya yükleniyor","%n dosya yükleniyor"), -"'.' is an invalid file name." => "'.' geçersiz bir dosya adı.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", "Your storage is full, files can not be updated or synced anymore!" => "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek.", "Your storage is almost full ({usedSpacePercent}%)" => "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index 45458c51af..9a79152243 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "Failed to write to disk" => "دىسكىغا يازالمىدى", "Not enough storage available" => "يېتەرلىك ساقلاش بوشلۇقى يوق", "Files" => "ھۆججەتلەر", -"Not enough space available" => "يېتەرلىك بوشلۇق يوق", "Upload cancelled." => "يۈكلەشتىن ۋاز كەچتى.", "File upload is in progress. Leaving the page now will cancel the upload." => "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload.", "{new_name} already exists" => "{new_name} مەۋجۇت", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 1e37d3d77d..c4a47dff40 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Не вдалося перемістити %s - Файл з таким ім'ям вже існує", "Could not move %s" => "Не вдалося перемістити %s", "File name cannot be empty." => " Ім'я файлу не може бути порожнім.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені.", "Folder name cannot be empty." => "Ім'я теки не може бути порожнім.", "Unable to set upload directory." => "Не вдалося встановити каталог завантаження.", "No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка", @@ -16,7 +17,6 @@ $TRANSLATIONS = array( "Not enough storage available" => "Місця більше немає", "Invalid directory." => "Невірний каталог.", "Files" => "Файли", -"Not enough space available" => "Місця більше немає", "Upload cancelled." => "Завантаження перервано.", "File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.", "URL cannot be empty" => "URL не може бути порожнім", @@ -33,8 +33,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("%n тека","%n тека","%n теки"), "_%n file_::_%n files_" => array("%n файл","%n файлів","%n файли"), "_Uploading %n file_::_Uploading %n files_" => array("","",""), -"'.' is an invalid file name." => "'.' це невірне ім'я файлу.", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені.", "Your storage is full, files can not be updated or synced anymore!" => "Ваше сховище переповнене, файли більше не можуть бути оновлені або синхронізовані !", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше сховище майже повне ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі.", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 8236d5e7ef..c20314a7da 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -3,6 +3,16 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống", "Could not move %s" => "Không thể di chuyển %s", "File name cannot be empty." => "Tên file không được rỗng", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng.", +"The name %s is already used in the folder %s. Please choose a different name." => "Tên %s đã được sử dụng trong thư mục %s. Hãy chọn tên khác.", +"Not a valid source" => "Nguồn không hợp lệ", +"Server is not allowed to open URLs, please check the server configuration" => "Server cấm mở URLs, vui lòng kiểm tra lại cấu hình server", +"Error while downloading %s to %s" => "Lỗi trong trong quá trình tải %s từ %s", +"Error when creating the file" => "Lỗi khi tạo file", +"Folder name cannot be empty." => "Tên thư mục không thể để trống", +"Error when creating the folder" => "Lỗi khi tạo thư mục", +"Unable to set upload directory." => "Không thể thiết lập thư mục tải lên.", +"Invalid Token" => "Xác thực không hợp lệ", "No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định", "There is no error, the file uploaded with success" => "Không có lỗi, các tập tin đã được tải lên thành công", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "The uploaded file exceeds the upload_max_filesize directive in php.ini: ", @@ -12,30 +22,41 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "Không tìm thấy thư mục tạm", "Failed to write to disk" => "Không thể ghi ", "Not enough storage available" => "Không đủ không gian lưu trữ", +"Upload failed. Could not find uploaded file" => "Tải lên thất bại. Không thể tìm thấy tập tin được tải lên", +"Upload failed. Could not get file info." => "Tải lên thất bại. Không thể có được thông tin tập tin.", "Invalid directory." => "Thư mục không hợp lệ", "Files" => "Tập tin", -"Not enough space available" => "Không đủ chỗ trống cần thiết", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "không thể tải {filename} lên do nó là một thư mục hoặc có kích thước bằng 0 byte", "Upload cancelled." => "Hủy tải lên", +"Could not get result from server." => "Không thể nhận được kết quả từ máy chủ.", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", +"URL cannot be empty" => "URL không thể để trống", "{new_name} already exists" => "{new_name} đã tồn tại", +"Could not create file" => "Không thể tạo file", +"Could not create folder" => "Không thể tạo thư mục", "Share" => "Chia sẻ", "Delete permanently" => "Xóa vĩnh vễn", "Rename" => "Sửa tên", "Pending" => "Đang chờ", +"Could not rename file" => "Không thể đổi tên file", "replaced {new_name} with {old_name}" => "đã thay thế {new_name} bằng {old_name}", "undo" => "lùi lại", -"_%n folder_::_%n folders_" => array(""), -"_%n file_::_%n files_" => array(""), -"_Uploading %n file_::_Uploading %n files_" => array(""), -"'.' is an invalid file name." => "'.' là một tên file không hợp lệ", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng.", +"Error deleting file." => "Lỗi xóa file,", +"_%n folder_::_%n folders_" => array("%n thư mục"), +"_%n file_::_%n files_" => array("%n tập tin"), +"{dirs} and {files}" => "{dirs} và {files}", +"_Uploading %n file_::_Uploading %n files_" => array("Đang tải lên %n tập tin"), "Your storage is full, files can not be updated or synced anymore!" => "Your storage is full, files can not be updated or synced anymore!", "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Ứng dụng mã hóa đã được kích hoạt nhưng bạn chưa khởi tạo khóa. Vui lòng đăng xuất ra và đăng nhập lại", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Mã hóa đã bị vô hiệu nhưng những tập tin của bạn vẫn được mã hóa. Vui lòng vào phần thiết lập cá nhân để giải mã chúng.", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", +"Error moving file" => "Lỗi di chuyển tập tin", "Error" => "Lỗi", "Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", +"%s could not be renamed" => "%s không thể đổi tên", "Upload" => "Tải lên", "File handling" => "Xử lý tập tin", "Maximum upload size" => "Kích thước tối đa ", @@ -45,13 +66,15 @@ $TRANSLATIONS = array( "0 is unlimited" => "0 là không giới hạn", "Maximum input size for ZIP files" => "Kích thước tối đa cho các tập tin ZIP", "Save" => "Lưu", -"New" => "Mới", +"New" => "Tạo mới", +"New text file" => "File text mới", "Text file" => "Tập tin văn bản", "New folder" => "Tạo thư mục", "Folder" => "Thư mục", "From link" => "Từ liên kết", "Deleted files" => "File đã bị xóa", "Cancel upload" => "Hủy upload", +"You don’t have permission to upload or create files here" => "Bạn không có quyền upload hoặc tạo files ở đây", "Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !", "Download" => "Tải về", "Delete" => "Xóa", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index effcb0225c..eec0d718aa 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -3,6 +3,14 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "无法移动 %s - 同名文件已存在", "Could not move %s" => "无法移动 %s", "File name cannot be empty." => "文件名不能为空。", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。", +"The name %s is already used in the folder %s. Please choose a different name." => "文件名 %s 是已经在 %s 中存在的名称。请使用其他名称。", +"Not a valid source" => "不是一个可用的源", +"Server is not allowed to open URLs, please check the server configuration" => "服务器没有允许打开URL网址,请检查服务器配置", +"Error while downloading %s to %s" => "当下载 %s 到 %s 时出错", +"Error when creating the file" => "当创建文件是出错", +"Folder name cannot be empty." => "文件夹名称不能为空", +"Error when creating the folder" => "创建文件夹出错", "Unable to set upload directory." => "无法设置上传文件夹。", "Invalid Token" => "无效密匙", "No file was uploaded. Unknown error" => "没有文件被上传。未知错误", @@ -14,30 +22,44 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "缺少临时目录", "Failed to write to disk" => "写入磁盘失败", "Not enough storage available" => "没有足够的存储空间", +"Upload failed. Could not find uploaded file" => "上传失败。不能发现上传的文件", +"Upload failed. Could not get file info." => "上传失败。不能获取文件信息。", "Invalid directory." => "无效文件夹。", "Files" => "文件", -"Not enough space available" => "没有足够可用空间", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "不能上传文件 {filename} ,由于它是一个目录或者为0字节", "Upload cancelled." => "上传已取消", +"Could not get result from server." => "不能从服务器得到结果", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", +"URL cannot be empty" => "URL不能为空", +"In the home folder 'Shared' is a reserved filename" => "主目录里 'Shared' 是系统预留目录名", "{new_name} already exists" => "{new_name} 已存在", +"Could not create file" => "不能创建文件", +"Could not create folder" => "不能创建文件夹", +"Error fetching URL" => "获取URL出错", "Share" => "分享", "Delete permanently" => "永久删除", "Rename" => "重命名", "Pending" => "等待", +"Could not rename file" => "不能重命名文件", "replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", "undo" => "撤销", +"Error deleting file." => "删除文件出错。", "_%n folder_::_%n folders_" => array("%n 文件夹"), "_%n file_::_%n files_" => array("%n个文件"), -"_Uploading %n file_::_Uploading %n files_" => array(""), -"'.' is an invalid file name." => "'.' 是一个无效的文件名。", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。", +"{dirs} and {files}" => "{dirs} 和 {files}", +"_Uploading %n file_::_Uploading %n files_" => array("上传 %n 个文件"), "Your storage is full, files can not be updated or synced anymore!" => "您的存储空间已满,文件将无法更新或同步!", "Your storage is almost full ({usedSpacePercent}%)" => "您的存储空间即将用完 ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "加密应用被启用了,但是你的加密密钥没有初始化,请重新登出登录系统一次。", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "无效的私有密钥。请到您的个人配置里去更新私有密钥,来恢复对加密文件的访问。", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "加密是被禁用的,但是您的文件还是被加密了。请到您的个人配置里设置文件加密选项。", "Your download is being prepared. This might take some time if the files are big." => "下载正在准备中。如果文件较大可能会花费一些时间。", +"Error moving file" => "移动文件错误", "Error" => "错误", "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", +"Invalid folder name. Usage of 'Shared' is reserved." => "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹", "%s could not be renamed" => "%s 不能被重命名", "Upload" => "上传", "File handling" => "文件处理", @@ -49,12 +71,14 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "ZIP 文件的最大输入大小", "Save" => "保存", "New" => "新建", +"New text file" => "创建文本文件", "Text file" => "文本文件", "New folder" => "添加文件夹", "Folder" => "文件夹", "From link" => "来自链接", "Deleted files" => "已删除文件", "Cancel upload" => "取消上传", +"You don’t have permission to upload or create files here" => "您没有权限来上传湖州哦和创建文件", "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", "Download" => "下载", "Delete" => "删除", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index dd9cbfdf1a..6a4ef90bcd 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -3,13 +3,12 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "無法移動 %s ,同名的檔案已經存在", "Could not move %s" => "無法移動 %s", "File name cannot be empty." => "檔名不能為空", -"File name must not contain \"/\". Please choose a different name." => "檔名不能包含 \"/\" ,請選其他名字", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 \\ / < > : \" | ? * 字元", "The name %s is already used in the folder %s. Please choose a different name." => "%s 已經被使用於資料夾 %s ,請換一個名字", "Not a valid source" => "不是有效的來源", "Error while downloading %s to %s" => "下載 %s 到 %s 失敗", "Error when creating the file" => "建立檔案失敗", "Folder name cannot be empty." => "資料夾名稱不能留空", -"Folder name must not contain \"/\". Please choose a different name." => "資料夾名稱不能包含 \"/\" ,請選其他名字", "Error when creating the folder" => "建立資料夾失敗", "Unable to set upload directory." => "無法設定上傳目錄", "Invalid Token" => "無效的 token", @@ -22,12 +21,11 @@ $TRANSLATIONS = array( "Missing a temporary folder" => "找不到暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", "Not enough storage available" => "儲存空間不足", -"Upload failed. Could not get file info." => "上傳失敗,無法取得檔案資訊", "Upload failed. Could not find uploaded file" => "上傳失敗,找不到上傳的檔案", +"Upload failed. Could not get file info." => "上傳失敗,無法取得檔案資訊", "Invalid directory." => "無效的資料夾", "Files" => "檔案", "Unable to upload {filename} as it is a directory or has 0 bytes" => "因為 {filename} 是個目錄或是大小為零,所以無法上傳", -"Not enough space available" => "沒有足夠的可用空間", "Upload cancelled." => "上傳已取消", "Could not get result from server." => "無法從伺服器取回結果", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中,離開此頁面將會取消上傳。", @@ -47,8 +45,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n 個檔案"), "{dirs} and {files}" => "{dirs} 和 {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n 個檔案正在上傳"), -"'.' is an invalid file name." => "'.' 是不合法的檔名", -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 \\ / < > : \" | ? * 字元", "Your storage is full, files can not be updated or synced anymore!" => "您的儲存空間已滿,沒有辦法再更新或是同步檔案!", "Your storage is almost full ({usedSpacePercent}%)" => "您的儲存空間快要滿了 ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "檔案加密已啓用,但是您的金鑰尚未初始化,請重新登入一次", diff --git a/apps/files_encryption/l10n/ar.php b/apps/files_encryption/l10n/ar.php index 45a0c4616f..cf6c265027 100644 --- a/apps/files_encryption/l10n/ar.php +++ b/apps/files_encryption/l10n/ar.php @@ -1,6 +1,43 @@ "جاري الحفظ...", -"Encryption" => "التشفير" +"Recovery key successfully enabled" => "تم بنجاح تفعيل مفتاح الاستعادة", +"Could not enable recovery key. Please check your recovery key password!" => "لا يمكن تفعيل مفتاح الاستعادة, يرجى التحقق من كلمة مرور مفتاح الاستعادة!", +"Recovery key successfully disabled" => "تم تعطيل مفتاح الاستعادة بنجاح", +"Could not disable recovery key. Please check your recovery key password!" => "لا يمكن تعطيل مفتاح الاستعادة, يرجى التحقق من كلمة مرور مفتاح الاستعادة!", +"Password successfully changed." => "تم تغيير كلمة المرور بنجاح.", +"Could not change the password. Maybe the old password was not correct." => "تعذر تغيير كلمة المرور. من الممكن ان كلمة المرور القديمة غير صحيحة.", +"Private key password successfully updated." => "تم تحديث كلمة المرور للمفتاح الخاص بنجاح.", +"Could not update the private key password. Maybe the old password was not correct." => "لا يمكن تحديث كلمة مرور المفتاح الخاص. من الممكن ان كلمة المرور القديمة غير صحيحة.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "برنامج التشفير لم يتم تهيئتة ! من الممكن ان برنامج التشفير تم اعادة تفعيلة خلال الجلسة. يرجى تسجيل الخروج ومن ثم تسجيل الدخول مجددا لتهيئة برنامج التشفير.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "مفتاحك الخاص غير صالح! ربما تم تغيير كلمة المرور خارج %s (مثل:مجلد شركتك). يمكنك تحديث كلمة المرور في الاعدادات الشخصية لإستعادة الوصول الى ملفاتك المشفرة.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "لا يمكن فك التشفير من هذا الملف, من الممكن ان يكون هذا الملف مُشارك. يرجى سؤال صاحب الملف لإعادة مشاركتة معك.", +"Unknown error please check your system settings or contact your administrator" => "خطا غير معروف يرجى التاكد من اعدادات نظامك او تواصل مع المدير.", +"Missing requirements." => "متطلبات ناقصة.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "يرجى التاكد من ان اصدار PHP 5.3.3 او احدث , مثبت و التاكد من ان OpenSSL مفعل و مهيئ بشكل صحيح. حتى الان برنامج التتشفير تم تعطيلة.", +"Following users are not set up for encryption:" => "المستخدمين التاليين لم يتم تعيين لهم التشفيير:", +"Initial encryption started... This can take some time. Please wait." => "بدأ التشفير... من الممكن ان ياخذ بعض الوقت. يرجى الانتظار.", +"Go directly to your " => "انتقل مباشرة الى ", +"personal settings" => "اعدادات شخصية", +"Encryption" => "التشفير", +"Enable recovery key (allow to recover users files in case of password loss):" => "تفعيل استعادة المفتاح (سوف يمكنك من استعادة ملفات المستخدمين في حال فقدان كلمة المرور):", +"Recovery key password" => "استعادة كلمة مرور المفتاح", +"Repeat Recovery key password" => "كرر كلمة المرور لـ استعادة المفتاح", +"Enabled" => "مفعلة", +"Disabled" => "معطلة", +"Change recovery key password:" => "تعديل كلمة المرور استعادة المفتاح:", +"Old Recovery key password" => "كلمة المرور القديمة لـ استعامة المفتاح", +"New Recovery key password" => "تعيين كلمة مرور جديدة لـ استعادة المفتاح", +"Repeat New Recovery key password" => "كرر كلمة المرور لـ استعادة المفتاح من جديد", +"Change Password" => "عدل كلمة السر", +"Your private key password no longer match your log-in password:" => "كلمة مرور مفتاحك الخاص لا تتطابق مع كلمة المرور الخاصة الدخول:", +"Set your old private key password to your current log-in password." => "تعيين كلمة المرور القديمة لـ المفتاح الخاص الى كلمة المرور الخاصة بالدخول الحالية.", +" If you don't remember your old password you can ask your administrator to recover your files." => "اذا كنت لاتتذكر كلمة السر تستطيع ان تطلب من المدير ان يستعيد ملفاتك.", +"Old log-in password" => "كلمة المرور القديمة الخاصة بالدخول", +"Current log-in password" => "كلمة المرور الحالية الخاصة بالدخول", +"Update Private Key Password" => "تحديث كلمة المرور لـ المفتاح الخاص", +"Enable password recovery:" => "تفعيل استعادة كلمة المرور:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "تفعيل هذا الخيار يمكنك من اعادة الوصول الى ملفاتك المشفرة عند فقدان كلمة المرور", +"File recovery settings updated" => "اعدادات ملف الاستعادة تم تحديثه", +"Could not update file recovery" => "تعذر تحديث ملف الاستعادة" ); $PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php index 9060c92ed4..a40781125d 100644 --- a/apps/files_encryption/l10n/bg_BG.php +++ b/apps/files_encryption/l10n/bg_BG.php @@ -1,6 +1,5 @@ "Записване...", "Encryption" => "Криптиране" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/bn_BD.php b/apps/files_encryption/l10n/bn_BD.php index 5fc4f6a13f..63e335bd2b 100644 --- a/apps/files_encryption/l10n/bn_BD.php +++ b/apps/files_encryption/l10n/bn_BD.php @@ -1,6 +1,5 @@ "সংরক্ষণ করা হচ্ছে..", "Encryption" => "সংকেতায়ন" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 33d2754483..23897c1818 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat.", "Following users are not set up for encryption:" => "Els usuaris següents no estan configurats per a l'encriptació:", "Initial encryption started... This can take some time. Please wait." => "La encriptació inicial ha començat... Pot trigar una estona, espereu.", -"Saving..." => "Desant...", "Go directly to your " => "Vés directament a", "personal settings" => "arranjament personal", "Encryption" => "Xifrat", diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index cf2776371d..18848978a8 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta.", "Following users are not set up for encryption:" => "Následující uživatelé nemají nastavené šifrování:", "Initial encryption started... This can take some time. Please wait." => "Počáteční šifrování zahájeno... Toto může chvíli trvat. Počkejte prosím.", -"Saving..." => "Ukládám...", "Go directly to your " => "Běžte přímo do vašeho", "personal settings" => "osobní nastavení", "Encryption" => "Šifrování", diff --git a/apps/files_encryption/l10n/cy_GB.php b/apps/files_encryption/l10n/cy_GB.php index ea8b19963b..6d3b898d00 100644 --- a/apps/files_encryption/l10n/cy_GB.php +++ b/apps/files_encryption/l10n/cy_GB.php @@ -1,6 +1,5 @@ "Yn cadw...", "Encryption" => "Amgryptiad" ); $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 9e4290534c..464c95cda4 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.", "Following users are not set up for encryption:" => "Følgende brugere er ikke sat op til kryptering:", "Initial encryption started... This can take some time. Please wait." => "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent venligst.", -"Saving..." => "Gemmer...", "Go directly to your " => "Gå direkte til din ", "personal settings" => "Personlige indstillinger", "Encryption" => "Kryptering", diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index 3ba50f074b..a7d1f9b04f 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Initial encryption started... This can take some time. Please wait." => "Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten.", -"Saving..." => "Speichern...", "Go directly to your " => "Direkt wechseln zu Deinem", "personal settings" => "Private Einstellungen", "Encryption" => "Verschlüsselung", diff --git a/apps/files_encryption/l10n/de_CH.php b/apps/files_encryption/l10n/de_CH.php index a31e82a666..875efa84f2 100644 --- a/apps/files_encryption/l10n/de_CH.php +++ b/apps/files_encryption/l10n/de_CH.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Missing requirements." => "Fehlende Voraussetzungen", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", -"Saving..." => "Speichern...", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 6184fd8a89..d63d9e6410 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Initial encryption started... This can take some time. Please wait." => "Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten.", -"Saving..." => "Speichern...", "Go directly to your " => "Direkt wechseln zu Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 22c1095e28..ad8617bc6d 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Παρακαλώ επιβεβαιώστε ότι η PHP 5.3.3 ή νεότερη είναι εγκατεστημένη και ότι το OpenSSL μαζί με το PHP extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη.", "Following users are not set up for encryption:" => "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:", "Initial encryption started... This can take some time. Please wait." => "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε.", -"Saving..." => "Γίνεται αποθήκευση...", "Go directly to your " => "Πηγαίνε απευθείας στο ", "personal settings" => "προσωπικές ρυθμίσεις", "Encryption" => "Κρυπτογράφηση", diff --git a/apps/files_encryption/l10n/en_GB.php b/apps/files_encryption/l10n/en_GB.php index 55d56b9533..448ed72664 100644 --- a/apps/files_encryption/l10n/en_GB.php +++ b/apps/files_encryption/l10n/en_GB.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled.", "Following users are not set up for encryption:" => "Following users are not set up for encryption:", "Initial encryption started... This can take some time. Please wait." => "Initial encryption started... This can take some time. Please wait.", -"Saving..." => "Saving...", "Go directly to your " => "Go directly to your ", "personal settings" => "personal settings", "Encryption" => "Encryption", diff --git a/apps/files_encryption/l10n/eo.php b/apps/files_encryption/l10n/eo.php index e14c7cd7ac..05d30f2f6c 100644 --- a/apps/files_encryption/l10n/eo.php +++ b/apps/files_encryption/l10n/eo.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.", "Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.", "Missing requirements." => "Mankas neproj.", -"Saving..." => "Konservante...", "Go directly to your " => "Iri direkte al via", "personal settings" => "persona agordo", "Encryption" => "Ĉifrado", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 5345398688..3a9c6cbe40 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no han sido configurados para el cifrado:", "Initial encryption started... This can take some time. Please wait." => "Encriptación iniciada..... Esto puede tomar un tiempo. Por favor espere.", -"Saving..." => "Guardando...", "Go directly to your " => "Ir directamente a su", "personal settings" => "opciones personales", "Encryption" => "Cifrado", diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index df5bd649d6..bc1eedbf5e 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -8,19 +8,26 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "¡La aplicación de encriptación no está inicializada! Es probable que la aplicación fue re-habilitada durante tu sesión. Intenta salir y iniciar sesión para volverla a iniciar.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Tu llave privada no es válida! Aparenta que tu clave fue cambiada fuera de %s (de tus directorios). Puedes actualizar la contraseña de tu clave privadaen las configuraciones personales para recobrar el acceso a tus archivos encriptados.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "No se puede descibrar este archivo, probablemente sea un archivo compartido. Por favor pídele al dueño que recomparta el archivo contigo.", +"Unknown error please check your system settings or contact your administrator" => "Error desconocido, por favor chequea la configuración de tu sistema o contacte a su administrador", "Missing requirements." => "Requisitos incompletos.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o una versión más reciente esté instalado y que OpenSSL junto con la extensión PHP esté habilitado y configurado apropiadamente. Por ahora, la aplicación de encriptación ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no fueron configurados para encriptar:", -"Saving..." => "Guardando...", +"Initial encryption started... This can take some time. Please wait." => "Encriptación inicial comenzada... Esto puede durar un tiempo. Por favor espere.", +"Go directly to your " => "Ve directamente a tu", "personal settings" => "Configuración personal", "Encryption" => "Encriptación", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):", "Recovery key password" => "Contraseña de recuperación de clave", +"Repeat Recovery key password" => "Repetir la contraseña de la clave de recuperación", "Enabled" => "Habilitado", "Disabled" => "Deshabilitado", "Change recovery key password:" => "Cambiar contraseña para recuperar la clave:", "Old Recovery key password" => "Contraseña antigua de recuperación de clave", "New Recovery key password" => "Nueva contraseña de recuperación de clave", +"Repeat New Recovery key password" => "Repetir Nueva contraseña para la clave de recuperación", "Change Password" => "Cambiar contraseña", "Your private key password no longer match your log-in password:" => "Tu contraseña de clave privada ya no coincide con la contraseña de ingreso:", "Set your old private key password to your current log-in password." => "Usá tu contraseña de clave privada antigua para tu contraseña de ingreso actual.", diff --git a/apps/files_encryption/l10n/es_MX.php b/apps/files_encryption/l10n/es_MX.php index 3906e3cacb..e2915f8e71 100644 --- a/apps/files_encryption/l10n/es_MX.php +++ b/apps/files_encryption/l10n/es_MX.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no han sido configurados para el cifrado:", "Initial encryption started... This can take some time. Please wait." => "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere.", -"Saving..." => "Guardando...", "Go directly to your " => "Ir directamente a su", "personal settings" => "opciones personales", "Encryption" => "Cifrado", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index 9182c5ef19..dcf035289f 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.", "Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:", "Initial encryption started... This can take some time. Please wait." => "Algne krüpteerimine käivitati... See võib võtta natuke aega. Palun oota.", -"Saving..." => "Salvestamine...", "Go directly to your " => "Liigu otse oma", "personal settings" => "isiklikes seadetes", "Encryption" => "Krüpteerimine", diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index 6b1bafdda1..9d51ebba2b 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Mesedez ziurtatu PHP 5.3.3 edo berriago bat instalatuta dagoela eta OpenSSL PHP hedapenarekin gaitua eta ongi konfiguratuta dagoela. Oraingoz, enkriptazio aplikazioa desgaituta dago.", "Following users are not set up for encryption:" => "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:", "Initial encryption started... This can take some time. Please wait." => "Hasierako enkriptazioa hasi da... Honek denbora har dezake. Mesedez itxaron.", -"Saving..." => "Gordetzen...", "Go directly to your " => "Joan zuzenean zure", "personal settings" => "ezarpen pertsonalak", "Encryption" => "Enkriptazioa", diff --git a/apps/files_encryption/l10n/fa.php b/apps/files_encryption/l10n/fa.php index ed044a4158..3f8d631e10 100644 --- a/apps/files_encryption/l10n/fa.php +++ b/apps/files_encryption/l10n/fa.php @@ -9,7 +9,6 @@ $TRANSLATIONS = array( "Private key password successfully updated." => "رمزعبور کلید خصوصی با موفقیت به روز شد.", "Could not update the private key password. Maybe the old password was not correct." => "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد.", "Missing requirements." => "نیازمندی های گمشده", -"Saving..." => "در حال ذخیره سازی...", "personal settings" => "تنظیمات شخصی", "Encryption" => "رمزگذاری", "Enable recovery key (allow to recover users files in case of password loss):" => "فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):", diff --git a/apps/files_encryption/l10n/fi_FI.php b/apps/files_encryption/l10n/fi_FI.php index b3df41b1f4..6a0025cd98 100644 --- a/apps/files_encryption/l10n/fi_FI.php +++ b/apps/files_encryption/l10n/fi_FI.php @@ -3,8 +3,8 @@ $TRANSLATIONS = array( "Recovery key successfully enabled" => "Palautusavain kytketty päälle onnistuneesti", "Password successfully changed." => "Salasana vaihdettiin onnistuneesti.", "Could not change the password. Maybe the old password was not correct." => "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.", +"Private key password successfully updated." => "Yksityisen avaimen salasana päivitetty onnistuneesti.", "Following users are not set up for encryption:" => "Seuraavat käyttäjät eivät ole määrittäneet salausta:", -"Saving..." => "Tallennetaan...", "personal settings" => "henkilökohtaiset asetukset", "Encryption" => "Salaus", "Recovery key password" => "Palautusavaimen salasana", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index dbccbf74dc..805881904c 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée.", "Following users are not set up for encryption:" => "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :", "Initial encryption started... This can take some time. Please wait." => "Chiffrement initial démarré... Cela peut prendre un certain temps. Veuillez patienter.", -"Saving..." => "Enregistrement...", "Go directly to your " => "Allez directement à votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index 7b3c899d1f..3f309acf75 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", "Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:", "Initial encryption started... This can take some time. Please wait." => "Comezou o cifrado inicial... Isto pode levar bastante tempo. Agarde.", -"Saving..." => "Gardando...", "Go directly to your " => "Vaia directamente ao seu", "personal settings" => "axustes persoais", "Encryption" => "Cifrado", diff --git a/apps/files_encryption/l10n/he.php b/apps/files_encryption/l10n/he.php index cdf29c9b0a..ca8783d196 100644 --- a/apps/files_encryption/l10n/he.php +++ b/apps/files_encryption/l10n/he.php @@ -1,6 +1,5 @@ "שמירה…", "Encryption" => "הצפנה" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index 163011ff80..a80c8d6f36 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kérem gondoskodjon arról, hogy PHP 5.3.3 vagy annál frissebb legyen telepítve, továbbá az OpenSSL a megfelelő PHP-bővítménnyel együtt rendelkezésre álljon és helyesen legyen konfigurálva! A titkosító modul egyelőre kikapcsolásra került.", "Following users are not set up for encryption:" => "A következő felhasználók nem állították be a titkosítást:", "Initial encryption started... This can take some time. Please wait." => "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon.", -"Saving..." => "Mentés...", "Go directly to your " => "Ugrás ide:", "personal settings" => "személyes beállítások", "Encryption" => "Titkosítás", diff --git a/apps/files_encryption/l10n/id.php b/apps/files_encryption/l10n/id.php index a719d44582..a4c3ae547c 100644 --- a/apps/files_encryption/l10n/id.php +++ b/apps/files_encryption/l10n/id.php @@ -13,7 +13,6 @@ $TRANSLATIONS = array( "Missing requirements." => "Persyaratan yang hilang.", "Following users are not set up for encryption:" => "Pengguna berikut belum diatur untuk enkripsi:", "Initial encryption started... This can take some time. Please wait." => "Inisial enskripsi dijalankan... Ini dapat memakan waktu. Silakan tunggu.", -"Saving..." => "Menyimpan...", "Go directly to your " => "Langsung ke anda", "personal settings" => "pengaturan pribadi", "Encryption" => "Enkripsi", diff --git a/apps/files_encryption/l10n/is.php b/apps/files_encryption/l10n/is.php index 27c0904a53..7b7a403b46 100644 --- a/apps/files_encryption/l10n/is.php +++ b/apps/files_encryption/l10n/is.php @@ -1,6 +1,5 @@ "Er að vista ...", "Encryption" => "Dulkóðun" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index fc1aaffc02..39ffc63d98 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", "Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", "Initial encryption started... This can take some time. Please wait." => "Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi.", -"Saving..." => "Salvataggio in corso...", "Go directly to your " => "Passa direttamente a", "personal settings" => "impostazioni personali", "Encryption" => "Cifratura", diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index 1206969746..13a44e4109 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -1,34 +1,33 @@ "リカバリ用のキーは正常に有効化されました", -"Could not enable recovery key. Please check your recovery key password!" => "リカバリ用のキーを有効にできませんでした。リカバリ用のキーのパスワードを確認して下さい!", +"Recovery key successfully enabled" => "リカバリ用のキーを正常に有効にしました", +"Could not enable recovery key. Please check your recovery key password!" => "リカバリ用のキーを有効にできませんでした。リカバリ用のキーのパスワードを確認してください!", "Recovery key successfully disabled" => "リカバリ用のキーを正常に無効化しました", -"Could not disable recovery key. Please check your recovery key password!" => "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認して下さい!", +"Could not disable recovery key. Please check your recovery key password!" => "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認してください!", "Password successfully changed." => "パスワードを変更できました。", "Could not change the password. Maybe the old password was not correct." => "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。", "Private key password successfully updated." => "秘密鍵のパスワードが正常に更新されました。", "Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", -"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "暗号化アプリが初期化されていません。暗号化アプリが接続中に再度有効かされた可能性があります。暗号化アプリを初期化する為に、1回ログアウトしてログインしなおしてください。", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "セッション中に暗号化アプリを再度有効にされたため、暗号化アプリが初期化されていません。暗号化アプリを初期化するため、ログアウトしてログインしなおしてください。", "Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "プライベートキーが有効ではありません!パスワードが%sの外部で変更された(例: 共同ディレクトリ)と思われます。個人設定でプライベートキーのパスワードを更新して、暗号化ファイルへのアクセスを回復することができます。", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", "Unknown error please check your system settings or contact your administrator" => "不明なエラーです。システム設定を確認するか、管理者に問い合わせてください。", "Missing requirements." => "必要要件が満たされていません。", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。", "Following users are not set up for encryption:" => "以下のユーザーは、暗号化設定がされていません:", -"Initial encryption started... This can take some time. Please wait." => "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。今しばらくお待ちください。", -"Saving..." => "保存中...", +"Initial encryption started... This can take some time. Please wait." => "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。お待ちください。", "Go directly to your " => "あなたのディレクトリへ", "personal settings" => "秘密鍵をアンロックできます", "Encryption" => "暗号化", -"Enable recovery key (allow to recover users files in case of password loss):" => "復旧キーを有効化 (万一パスワードを亡くした場合もユーザーのファイルを回復できる):", -"Recovery key password" => "復旧キーのパスワード", -"Repeat Recovery key password" => "復旧キーのパスワードをもう一度入力", +"Enable recovery key (allow to recover users files in case of password loss):" => "リカバリキーを有効にする (パスワードを忘れた場合にユーザーのファイルを回復できます):", +"Recovery key password" => "リカバリキーのパスワード", +"Repeat Recovery key password" => "リカバリキーのパスワードをもう一度入力", "Enabled" => "有効", "Disabled" => "無効", -"Change recovery key password:" => "復旧キーのパスワードを変更:", -"Old Recovery key password" => "古い復旧キーのパスワード", -"New Recovery key password" => "新しい復旧キーのパスワード", -"Repeat New Recovery key password" => "新しい復旧キーのパスワードをもう一度入力", +"Change recovery key password:" => "リカバリキーのパスワードを変更:", +"Old Recovery key password" => "古いリカバリキーのパスワード", +"New Recovery key password" => "新しいリカバリキーのパスワード", +"Repeat New Recovery key password" => "新しいリカバリキーのパスワードをもう一度入力", "Change Password" => "パスワードを変更", "Your private key password no longer match your log-in password:" => "もはや秘密鍵はログインパスワードと一致しません:", "Set your old private key password to your current log-in password." => "古い秘密鍵のパスワードを現在のログインパスワードに設定する。", @@ -36,9 +35,9 @@ $TRANSLATIONS = array( "Old log-in password" => "古いログインパスワード", "Current log-in password" => "現在のログインパスワード", "Update Private Key Password" => "秘密鍵のパスワードを更新", -"Enable password recovery:" => "パスワード復旧を有効化:", +"Enable password recovery:" => "パスワードリカバリを有効に:", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。", -"File recovery settings updated" => "ファイル復旧設定が更新されました", -"Could not update file recovery" => "ファイル復旧を更新できませんでした" +"File recovery settings updated" => "ファイルリカバリ設定を更新しました", +"Could not update file recovery" => "ファイルリカバリを更新できませんでした" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/ka_GE.php b/apps/files_encryption/l10n/ka_GE.php index bbabd44964..d063463477 100644 --- a/apps/files_encryption/l10n/ka_GE.php +++ b/apps/files_encryption/l10n/ka_GE.php @@ -1,6 +1,5 @@ "შენახვა...", "Encryption" => "ენკრიპცია" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/ko.php b/apps/files_encryption/l10n/ko.php index d91e861ca5..41168a340c 100644 --- a/apps/files_encryption/l10n/ko.php +++ b/apps/files_encryption/l10n/ko.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "PHP 5.3.3 이상 설치 여부, PHP의 OpenSSL 확장 기능 활성화 및 설정 여부를 확인하십시오. 암호화 앱이 비활성화 되었습니다.", "Following users are not set up for encryption:" => "다음 사용자는 암호화를 사용할 수 없습니다:", "Initial encryption started... This can take some time. Please wait." => "초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오.", -"Saving..." => "저장 중...", "Go directly to your " => "다음으로 바로 가기: ", "personal settings" => "개인 설정", "Encryption" => "암호화", diff --git a/apps/files_encryption/l10n/ku_IQ.php b/apps/files_encryption/l10n/ku_IQ.php index d971350b4c..d7b10d1df6 100644 --- a/apps/files_encryption/l10n/ku_IQ.php +++ b/apps/files_encryption/l10n/ku_IQ.php @@ -1,6 +1,5 @@ "پاشکه‌وتده‌کات...", "Encryption" => "نهێنیکردن" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/lt_LT.php b/apps/files_encryption/l10n/lt_LT.php index 993e03388d..dd8a0d7633 100644 --- a/apps/files_encryption/l10n/lt_LT.php +++ b/apps/files_encryption/l10n/lt_LT.php @@ -9,12 +9,13 @@ $TRANSLATIONS = array( "Private key password successfully updated." => "Privataus rakto slaptažodis buvo sėkmingai atnaujintas.", "Could not update the private key password. Maybe the old password was not correct." => "Nepavyko atnaujinti privataus rakto slaptažodžio. Gali būti, kad buvo neteisingai suvestas senasis.", "Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Šifravimo programa nepaleista! Galbūt šifravimo programa buvo įjungta dar kartą Jūsų sesijos metu. Prašome atsijungti ir vėl prisijungti, kad paleisti šifravimo programą.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas už %s (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų.", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Failo iššifruoti nepavyko, gali būti jog jis yra pasidalintas su jumis. Paprašykite failo savininko, kad jums iš naujo pateiktų šį failą.", "Unknown error please check your system settings or contact your administrator" => "Neatpažinta klaida, patikrinkite sistemos nustatymus arba kreipkitės į savo sistemos aministratorių", "Missing requirements." => "Trūkstami laukai.", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Prašome įsitikinti, kad PHP 5.3.3 ar naujesnė yra įdiegta ir kad OpenSSL kartu su PHP plėtiniu yra šjungti ir teisingai sukonfigūruoti. Kol kas šifravimo programa bus išjungta.", "Following users are not set up for encryption:" => "Sekantys naudotojai nenustatyti šifravimui:", -"Saving..." => "Saugoma...", +"Initial encryption started... This can take some time. Please wait." => "Pradėtas pirminis šifravimas... Tai gali užtrukti. Prašome palaukti.", "Go directly to your " => "Eiti tiesiai į Jūsų", "personal settings" => "asmeniniai nustatymai", "Encryption" => "Šifravimas", diff --git a/apps/files_encryption/l10n/lv.php b/apps/files_encryption/l10n/lv.php index b8414174a7..cbf8b7cbda 100644 --- a/apps/files_encryption/l10n/lv.php +++ b/apps/files_encryption/l10n/lv.php @@ -1,6 +1,5 @@ "Saglabā...", "Encryption" => "Šifrēšana" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_encryption/l10n/mk.php b/apps/files_encryption/l10n/mk.php index 098f4d635b..b13d2c28ce 100644 --- a/apps/files_encryption/l10n/mk.php +++ b/apps/files_encryption/l10n/mk.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Password successfully changed." => "Лозинката е успешно променета.", "Could not change the password. Maybe the old password was not correct." => "Лозинката не можеше да се промени. Можеби старата лозинка не беше исправна.", "Missing requirements." => "Барања кои недостасуваат.", -"Saving..." => "Снимам...", "Go directly to your " => "Одете директно на вашиот", "personal settings" => "лични подесувања", "Encryption" => "Енкрипција", diff --git a/apps/files_encryption/l10n/nb_NO.php b/apps/files_encryption/l10n/nb_NO.php index 26956c410a..f7484c0e15 100644 --- a/apps/files_encryption/l10n/nb_NO.php +++ b/apps/files_encryption/l10n/nb_NO.php @@ -1,6 +1,43 @@ "Lagrer...", -"Encryption" => "Kryptering" +"Recovery key successfully enabled" => "Gjenopprettingsnøkkel aktivert", +"Could not enable recovery key. Please check your recovery key password!" => "Klarte ikke å aktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen.", +"Recovery key successfully disabled" => "Gjenopprettingsnøkkel ble deaktivert", +"Could not disable recovery key. Please check your recovery key password!" => "Klarte ikke å deaktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen.", +"Password successfully changed." => "Passordet ble endret.", +"Could not change the password. Maybe the old password was not correct." => "Klarte ikke å endre passordet. Kanskje gammelt passord ikke var korrekt.", +"Private key password successfully updated." => "Passord for privat nøkkel ble oppdatert.", +"Could not update the private key password. Maybe the old password was not correct." => "Klarte ikke å oppdatere passord for privat nøkkel. Kanskje gammelt passord ikke var korrekt.", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "Krypterings-app ikke initialisert! Kanskje krypterings-appen ble aktivert på nytt i løpet av økten din. Prøv å logge ut og logge inn igjen for å initialisere krypterings-appen.", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din private nøkkel er ikke gyldig! Sannsynligvis ble passordet ditt endret utenfor %s. (f.eks. din bedriftskatalog). Du kan oppdatere passordet for din private nøkkel i dine personlige innstillinger for å gjenvinne tilgang til de krypterte filene dine.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Kan ikke dekryptere denne filen. Dette er sannsynligvis en delt fil. Spør eieren av filen om å dele den med deg på nytt.", +"Unknown error please check your system settings or contact your administrator" => "Ukjent feil. Sjekk systeminnstillingene dine eller kontakt administratoren", +"Missing requirements." => "Manglende krav.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Vennligst se til at PHP 5.3.3 eller nyere er installert og at OpenSSL sammen med PHP-utvidelsen er aktivert og riktig konfigurert. Enn så lenge er krypterings-appen deaktivert.", +"Following users are not set up for encryption:" => "Følgende brukere er ikke satt opp for kryptering:", +"Initial encryption started... This can take some time. Please wait." => "Første gangs kryptering startet... Dette kan ta litt tid. Vennligst vent.", +"Go directly to your " => "Gå direkte til din", +"personal settings" => "personlige innstillinger", +"Encryption" => "Kryptering", +"Enable recovery key (allow to recover users files in case of password loss):" => "Aktiver gjenopprettingsnøkkel (tillat å gjenopprette brukerfiler i tilfelle tap av passord):", +"Recovery key password" => "Passord for gjenopprettingsnøkkel", +"Repeat Recovery key password" => "Gjenta passord for gjenopprettingsnøkkel", +"Enabled" => "Aktiv", +"Disabled" => "Inaktiv", +"Change recovery key password:" => "Endre passord for gjenopprettingsnøkkel:", +"Old Recovery key password" => "Gammelt passord for gjenopprettingsnøkkel", +"New Recovery key password" => "Nytt passord for gjenopprettingsnøkkel", +"Repeat New Recovery key password" => "Gjenta nytt passord for gjenopprettingsnøkkel", +"Change Password" => "Endre passord", +"Your private key password no longer match your log-in password:" => "Ditt passord for privat nøkkel stemmer ikke med påloggingspassordet ditt lenger:", +"Set your old private key password to your current log-in password." => "Sett ditt gamle passord for privat nøkkel til ditt nåværende påloggingspassord.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Hvis du ikke husker det gamle passordet ditt kan du spørre administratoren om å gjenopprette filene dine.", +"Old log-in password" => "Gammelt påloggingspassord", +"Current log-in password" => "Nåværende påloggingspassord", +"Update Private Key Password" => "Oppdater passord for privat nøkkel", +"Enable password recovery:" => "Aktiver gjenoppretting av passord:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Aktivering av dette valget tillater deg å gjenerobre tilgang til dine krypterte filer i tilfelle du mister passordet ditt.", +"File recovery settings updated" => "Innstillinger for gjenoppretting av filer ble oppdatert", +"Could not update file recovery" => "Klarte ikke å oppdatere gjenoppretting av filer" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index 081e46a785..bed22c3930 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld.", "Following users are not set up for encryption:" => "De volgende gebruikers hebben geen configuratie voor encryptie:", "Initial encryption started... This can take some time. Please wait." => "initiële versleuteling gestart... Dit kan even duren, geduld a.u.b.", -"Saving..." => "Opslaan", "Go directly to your " => "Ga meteen naar uw", "personal settings" => "persoonlijke instellingen", "Encryption" => "Versleuteling", diff --git a/apps/files_encryption/l10n/nn_NO.php b/apps/files_encryption/l10n/nn_NO.php index bb30d69c59..c472655c8b 100644 --- a/apps/files_encryption/l10n/nn_NO.php +++ b/apps/files_encryption/l10n/nn_NO.php @@ -1,6 +1,5 @@ "Lagrar …", "Encryption" => "Kryptering" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index b768bd46f8..2c8190a0f2 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", "Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", "Initial encryption started... This can take some time. Please wait." => "Rozpoczęto szyfrowanie... To może chwilę potrwać. Proszę czekać.", -"Saving..." => "Zapisywanie...", "Go directly to your " => "Przejdź bezpośrednio do", "personal settings" => "Ustawienia osobiste", "Encryption" => "Szyfrowanie", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 2fce7fd13a..8e32c3f83c 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", "Initial encryption started... This can take some time. Please wait." => "Criptografia inicial inicializada... Isto pode tomar algum tempo. Por favor espere.", -"Saving..." => "Salvando...", "Go directly to your " => "Ir diretamente para o seu", "personal settings" => "configurações pessoais.", "Encryption" => "Criptografia", diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index 77424005c3..d6d3c26036 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -9,7 +9,6 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta.", "Missing requirements." => "Faltam alguns requisitos.", "Following users are not set up for encryption:" => "Os utilizadores seguintes não estão marcados para cifragem:", -"Saving..." => "A guardar...", "personal settings" => "configurações personalizadas ", "Encryption" => "Encriptação", "Enable recovery key (allow to recover users files in case of password loss):" => "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):", diff --git a/apps/files_encryption/l10n/ro.php b/apps/files_encryption/l10n/ro.php index 3dcdce3241..5aabc49864 100644 --- a/apps/files_encryption/l10n/ro.php +++ b/apps/files_encryption/l10n/ro.php @@ -1,6 +1,20 @@ "Se salvează...", -"Encryption" => "Încriptare" +"Recovery key successfully enabled" => "Cheia de recupeare a fost activata cu succes", +"Could not enable recovery key. Please check your recovery key password!" => "Nu s-a putut activa cheia de recuperare. Verifica parola de recuperare!", +"Recovery key successfully disabled" => "Cheia de recuperare dezactivata cu succes", +"Could not disable recovery key. Please check your recovery key password!" => "Nu am putut dezactiva cheia de recuperare. Verifica parola de recuperare!", +"Password successfully changed." => "Parola a fost modificată cu succes.", +"Could not change the password. Maybe the old password was not correct." => "Parola nu a putut fi schimbata. Poate ca parola veche este incorecta.", +"Private key password successfully updated." => "Cheia privata a fost actualizata cu succes", +"Could not update the private key password. Maybe the old password was not correct." => "Nu am putut actualiza parola pentru cheia privata. Poate ca parola veche este incorecta.", +"personal settings" => "setari personale", +"Encryption" => "Încriptare", +"Enabled" => "Activat", +"Disabled" => "Dezactivat", +"Change Password" => "Schimbă parola", +"Your private key password no longer match your log-in password:" => "Parola cheii private nu se mai potriveste cu parola ta de logare:", +"File recovery settings updated" => "Setarile pentru recuperarea fisierelor au fost actualizate", +"Could not update file recovery" => "Nu am putut actualiza recuperarea de fisiere" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index e9744b3db4..bce245ce68 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Пожалуйста, убедитесь, что версия PHP 5.3.3 или новее, а также, что OpenSSL и соответствующее расширение PHP включены и правильно настроены. На данный момент приложение шифрования отключено.", "Following users are not set up for encryption:" => "Для следующих пользователей шифрование не настроено:", "Initial encryption started... This can take some time. Please wait." => "Начато начальное шифрование... Это может занять какое-то время. Пожалуйста, подождите.", -"Saving..." => "Сохранение...", "Go directly to your " => "Перейти прямо в", "personal settings" => "персональные настройки", "Encryption" => "Шифрование", diff --git a/apps/files_encryption/l10n/si_LK.php b/apps/files_encryption/l10n/si_LK.php index 5f5330df54..4c7dc957bf 100644 --- a/apps/files_encryption/l10n/si_LK.php +++ b/apps/files_encryption/l10n/si_LK.php @@ -1,6 +1,5 @@ "සුරැකෙමින් පවතී...", "Encryption" => "ගුප්ත කේතනය" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index 9e2c01eba3..5fcd0a9f06 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná.", "Following users are not set up for encryption:" => "Nasledujúci používatelia nie sú nastavení pre šifrovanie:", "Initial encryption started... This can take some time. Please wait." => "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. Čakajte prosím.", -"Saving..." => "Ukladám...", "Go directly to your " => "Choďte priamo do vášho", "personal settings" => "osobné nastavenia", "Encryption" => "Šifrovanie", diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 60faf34cf8..d9a6c204d6 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, ali je na strežniku nameščen paket PHP 5.3.3 ali novejši, da je omogočen in pravilno nastavljen PHP OpenSSL. Z obstoječimi možnostmi šifriranje ni mogoče.", "Following users are not set up for encryption:" => "Navedeni uporabniki še nimajo nastavljenega šifriranja:", "Initial encryption started... This can take some time. Please wait." => "Začetno šifriranje je začeto ... Opravilo je lahko dolgotrajno.", -"Saving..." => "Poteka shranjevanje ...", "Go directly to your " => "Skočite neposredno na", "personal settings" => "osebne nastavitve", "Encryption" => "Šifriranje", diff --git a/apps/files_encryption/l10n/sr.php b/apps/files_encryption/l10n/sr.php index cbf87dcf4d..8a291faed2 100644 --- a/apps/files_encryption/l10n/sr.php +++ b/apps/files_encryption/l10n/sr.php @@ -1,6 +1,5 @@ "Чување у току...", "Encryption" => "Шифровање" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 1e509ea08e..90a9bd73a6 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -15,7 +15,6 @@ $TRANSLATIONS = array( "Missing requirements." => "Krav som saknas", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad.", "Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", -"Saving..." => "Sparar...", "Go directly to your " => "Gå direkt till din", "personal settings" => "personliga inställningar", "Encryption" => "Kryptering", diff --git a/apps/files_encryption/l10n/ta_LK.php b/apps/files_encryption/l10n/ta_LK.php index 9dec6de3ac..327102b5df 100644 --- a/apps/files_encryption/l10n/ta_LK.php +++ b/apps/files_encryption/l10n/ta_LK.php @@ -1,6 +1,5 @@ "சேமிக்கப்படுகிறது...", "Encryption" => "மறைக்குறியீடு" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/th_TH.php b/apps/files_encryption/l10n/th_TH.php index 7bf3e2765a..cc670e425a 100644 --- a/apps/files_encryption/l10n/th_TH.php +++ b/apps/files_encryption/l10n/th_TH.php @@ -1,6 +1,5 @@ "กำลังบันทึกข้อมูล...", "Encryption" => "การเข้ารหัส" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/tr.php b/apps/files_encryption/l10n/tr.php index b8289ab71f..59bb010e3d 100644 --- a/apps/files_encryption/l10n/tr.php +++ b/apps/files_encryption/l10n/tr.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "PHP 5.3.3 veya daha sürümü ile birlikte OpenSSL ve OpenSSL PHP uzantısının birlikte etkin olduğunu ve doğru bir şekilde yapılandırıldığından emin olun. Şimdilik şifreleme uygulaması devre dışı bırakıldı", "Following users are not set up for encryption:" => "Aşağıdaki kullanıcılar şifreleme için ayarlanmadılar:", "Initial encryption started... This can take some time. Please wait." => "İlk şifreleme başladı... Bu biraz zaman alabilir. Lütfen bekleyin.", -"Saving..." => "Kaydediliyor...", "Go directly to your " => "Doğrudan şuraya gidin:", "personal settings" => "kişisel ayarlar", "Encryption" => "Şifreleme", diff --git a/apps/files_encryption/l10n/ug.php b/apps/files_encryption/l10n/ug.php index 25b3f68634..da9144bb93 100644 --- a/apps/files_encryption/l10n/ug.php +++ b/apps/files_encryption/l10n/ug.php @@ -1,6 +1,5 @@ "ساقلاۋاتىدۇ…", "Encryption" => "شىفىرلاش" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/uk.php b/apps/files_encryption/l10n/uk.php index 5260dd3f2f..e406c09228 100644 --- a/apps/files_encryption/l10n/uk.php +++ b/apps/files_encryption/l10n/uk.php @@ -1,6 +1,5 @@ "Зберігаю...", "personal settings" => "особисті налаштування", "Encryption" => "Шифрування", "Change Password" => "Змінити Пароль" diff --git a/apps/files_encryption/l10n/vi.php b/apps/files_encryption/l10n/vi.php index 18882be63a..c752f0af22 100644 --- a/apps/files_encryption/l10n/vi.php +++ b/apps/files_encryption/l10n/vi.php @@ -1,11 +1,27 @@ "Khóa khôi phục kích hoạt thành công", +"Could not enable recovery key. Please check your recovery key password!" => "Không thể kích hoạt khóa khôi phục. Vui lòng kiểm tra mật khẩu khóa khôi phục!", +"Recovery key successfully disabled" => "Vô hiệu hóa khóa khôi phục thành công", +"Could not disable recovery key. Please check your recovery key password!" => "Không thể vô hiệu hóa khóa khôi phục. Vui lòng kiểm tra mật khẩu khóa khôi phục!", "Password successfully changed." => "Đã đổi mật khẩu.", "Could not change the password. Maybe the old password was not correct." => "Không thể đổi mật khẩu. Có lẽ do mật khẩu cũ không đúng.", -"Saving..." => "Đang lưu...", +"Private key password successfully updated." => "Cập nhật thành công mật khẩu khóa cá nhân", +"Could not update the private key password. Maybe the old password was not correct." => "Không thể cập nhật mật khẩu khóa cá nhân. Có thể mật khẩu cũ không đúng", +"personal settings" => "Thiết lập cá nhân", "Encryption" => "Mã hóa", "Enabled" => "Bật", "Disabled" => "Tắt", -"Change Password" => "Đổi Mật khẩu" +"Change Password" => "Đổi Mật khẩu", +"Your private key password no longer match your log-in password:" => "Mật khẩu khóa cá nhân không còn phù hợp với mật khẩu đăng nhập:", +"Set your old private key password to your current log-in password." => "Thiết lập mật khẩu khóa cá nhân cũ đến mật khẩu đăng nhập hiện tại.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Nếu bạn không nhớ mật khẩu cũ, bạn có thể yêu cầu quản trị viên khôi phục tập tin của bạn.", +"Old log-in password" => "Mật khẩu đăng nhập cũ", +"Current log-in password" => "Mật khẩu đăng nhập hiện tại", +"Update Private Key Password" => "Cập nhật mật khẩu khóa cá nhân", +"Enable password recovery:" => "Kích hoạt khôi phục mật khẩu:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Tùy chọn này sẽ cho phép bạn tái truy cập đến các tập tin mã hóa trong trường hợp mất mật khẩu", +"File recovery settings updated" => "Đã cập nhật thiết lập khôi phục tập tin ", +"Could not update file recovery" => "Không thể cập nhật khôi phục tập tin" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index a51856aec9..4d277e9b17 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "不能修改密码。旧密码可能不正确。", "Private key password successfully updated." => "私钥密码成功更新。", "Could not update the private key password. Maybe the old password was not correct." => "无法更新私钥密码。可能旧密码不正确。", -"Saving..." => "保存中", "personal settings" => "个人设置", "Encryption" => "加密", "Enable recovery key (allow to recover users files in case of password loss):" => "启用恢复密钥(允许你在密码丢失后恢复文件):", diff --git a/apps/files_encryption/l10n/zh_TW.php b/apps/files_encryption/l10n/zh_TW.php index 8972490ea5..390e6aff8c 100644 --- a/apps/files_encryption/l10n/zh_TW.php +++ b/apps/files_encryption/l10n/zh_TW.php @@ -15,7 +15,6 @@ $TRANSLATIONS = array( "Missing requirements." => "遺失必要條件。", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "請確認已安裝 PHP 5.3.3 或是更新的版本以及 OpenSSL 也一併安裝在 PHP extension 裡面並啟用及設置完成。現在,加密功能是停用的。", "Following users are not set up for encryption:" => "以下的使用者無法設定加密:", -"Saving..." => "儲存中...", "Go directly to your " => "直接到您的", "personal settings" => "個人設定", "Encryption" => "加密", diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index 17665d2228..d59a4b8c80 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -13,7 +13,6 @@ $TRANSLATIONS = array( "Users" => "Потребители", "Delete" => "Изтриване", "Enable User External Storage" => "Вкл. на поддръжка за външно потр. хранилище", -"Allow users to mount their own external storage" => "Позволено е на потребителите да ползват тяхно лично външно хранилище", "SSL root certificates" => "SSL основни сертификати", "Import Root Certificate" => "Импортиране на основен сертификат" ); diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php index 0591dbba55..065d61acfc 100644 --- a/apps/files_external/l10n/bn_BD.php +++ b/apps/files_external/l10n/bn_BD.php @@ -15,7 +15,6 @@ $TRANSLATIONS = array( "Users" => "ব্যবহারকারী", "Delete" => "মুছে", "Enable User External Storage" => "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর", -"Allow users to mount their own external storage" => "ব্যবহারকারীদেরকে তাদের নিজস্ব বাহ্যিক সংরক্ষনাগার সাউন্ট করতে অনুমোদন দাও", "SSL root certificates" => "SSL রুট সনদপত্র", "Import Root Certificate" => "রুট সনদপত্রটি আমদানি করুন" ); diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index c1d6ec077b..40a1ffc9b5 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Usuaris", "Delete" => "Esborra", "Enable User External Storage" => "Habilita l'emmagatzemament extern d'usuari", -"Allow users to mount their own external storage" => "Permet als usuaris muntar el seu emmagatzemament extern propi", "SSL root certificates" => "Certificats SSL root", "Import Root Certificate" => "Importa certificat root" ); diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index a574e0506c..dafe722bc2 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Uživatelé", "Delete" => "Smazat", "Enable User External Storage" => "Zapnout externí uživatelské úložiště", -"Allow users to mount their own external storage" => "Povolit uživatelům připojení jejich vlastních externích úložišť", "SSL root certificates" => "Kořenové certifikáty SSL", "Import Root Certificate" => "Importovat kořenového certifikátu" ); diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index 3a25142b36..dd65213b9a 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Brugere", "Delete" => "Slet", "Enable User External Storage" => "Aktiver ekstern opbevaring for brugere", -"Allow users to mount their own external storage" => "Tillad brugere at montere deres egne eksterne opbevaring", "SSL root certificates" => "SSL-rodcertifikater", "Import Root Certificate" => "Importer rodcertifikat" ); diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index b2c72f7688..22b3a186b7 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", -"Allow users to mount their own external storage" => "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden", "SSL root certificates" => "SSL-Root-Zertifikate", "Import Root Certificate" => "Root-Zertifikate importieren" ); diff --git a/apps/files_external/l10n/de_AT.php b/apps/files_external/l10n/de_AT.php new file mode 100644 index 0000000000..afa3eff001 --- /dev/null +++ b/apps/files_external/l10n/de_AT.php @@ -0,0 +1,5 @@ + "Löschen" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/de_CH.php b/apps/files_external/l10n/de_CH.php index 85e2f2d91f..8a13c7cdd5 100644 --- a/apps/files_external/l10n/de_CH.php +++ b/apps/files_external/l10n/de_CH.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", -"Allow users to mount their own external storage" => "Erlaubt Benutzern, ihre eigenen externen Speicher einzubinden", "SSL root certificates" => "SSL-Root-Zertifikate", "Import Root Certificate" => "Root-Zertifikate importieren" ); diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index 8f6a25cb52..b3a8f09e82 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Benutzer", "Delete" => "Löschen", "Enable User External Storage" => "Externen Speicher für Benutzer aktivieren", -"Allow users to mount their own external storage" => "Erlaubt Benutzern, ihre eigenen externen Speicher einzubinden", "SSL root certificates" => "SSL-Root-Zertifikate", "Import Root Certificate" => "Root-Zertifikate importieren" ); diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 0161c0901d..e45a196c3e 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Χρήστες", "Delete" => "Διαγραφή", "Enable User External Storage" => "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη", -"Allow users to mount their own external storage" => "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο", "SSL root certificates" => "Πιστοποιητικά SSL root", "Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root" ); diff --git a/apps/files_external/l10n/en_GB.php b/apps/files_external/l10n/en_GB.php index 8adca794dd..cb977a02d6 100644 --- a/apps/files_external/l10n/en_GB.php +++ b/apps/files_external/l10n/en_GB.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Users", "Delete" => "Delete", "Enable User External Storage" => "Enable User External Storage", -"Allow users to mount their own external storage" => "Allow users to mount their own external storage", "SSL root certificates" => "SSL root certificates", "Import Root Certificate" => "Import Root Certificate" ); diff --git a/apps/files_external/l10n/eo.php b/apps/files_external/l10n/eo.php index 5697221cac..aba16e2efa 100644 --- a/apps/files_external/l10n/eo.php +++ b/apps/files_external/l10n/eo.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Users" => "Uzantoj", "Delete" => "Forigi", "Enable User External Storage" => "Kapabligi malenan memorilon de uzanto", -"Allow users to mount their own external storage" => "Permesi al uzantoj surmeti siajn proprajn malenajn memorilojn", "SSL root certificates" => "Radikaj SSL-atestoj", "Import Root Certificate" => "Enporti radikan ateston" ); diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index 5179d9329a..876be6d1cf 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Usuarios", "Delete" => "Eliminar", "Enable User External Storage" => "Habilitar almacenamiento externo de usuario", -"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo", "SSL root certificates" => "Certificados raíz SSL", "Import Root Certificate" => "Importar certificado raíz" ); diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php index a0bb3a8dfe..05204b748c 100644 --- a/apps/files_external/l10n/es_AR.php +++ b/apps/files_external/l10n/es_AR.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Usuarios", "Delete" => "Borrar", "Enable User External Storage" => "Habilitar almacenamiento de usuario externo", -"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo", "SSL root certificates" => "certificados SSL raíz", "Import Root Certificate" => "Importar certificado raíz" ); diff --git a/apps/files_external/l10n/es_MX.php b/apps/files_external/l10n/es_MX.php index b508df8476..5d3fd44bec 100644 --- a/apps/files_external/l10n/es_MX.php +++ b/apps/files_external/l10n/es_MX.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Usuarios", "Delete" => "Eliminar", "Enable User External Storage" => "Habilitar almacenamiento externo de usuario", -"Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo", "SSL root certificates" => "Certificados raíz SSL", "Import Root Certificate" => "Importar certificado raíz" ); diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index a7e623eb7d..c6450f95e1 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Kasutajad", "Delete" => "Kustuta", "Enable User External Storage" => "Luba kasutajatele väline salvestamine", -"Allow users to mount their own external storage" => "Luba kasutajatel ühendada külge nende enda välised salvestusseadmed", "SSL root certificates" => "SSL root sertifikaadid", "Import Root Certificate" => "Impordi root sertifikaadid" ); diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index db92e2f001..bdc5cf5676 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Erabiltzaileak", "Delete" => "Ezabatu", "Enable User External Storage" => "Gaitu erabiltzaileentzako Kanpo Biltegiratzea", -"Allow users to mount their own external storage" => "Baimendu erabiltzaileak bere kanpo biltegiratzeak muntatzen", "SSL root certificates" => "SSL erro ziurtagiriak", "Import Root Certificate" => "Inportatu Erro Ziurtagiria" ); diff --git a/apps/files_external/l10n/eu_ES.php b/apps/files_external/l10n/eu_ES.php new file mode 100644 index 0000000000..8612c8609b --- /dev/null +++ b/apps/files_external/l10n/eu_ES.php @@ -0,0 +1,5 @@ + "Ezabatu" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/fa.php b/apps/files_external/l10n/fa.php index 216893811c..544b8a14d5 100644 --- a/apps/files_external/l10n/fa.php +++ b/apps/files_external/l10n/fa.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "کاربران", "Delete" => "حذف", "Enable User External Storage" => "فعال سازی حافظه خارجی کاربر", -"Allow users to mount their own external storage" => "اجازه به کاربران برای متصل کردن منابع ذخیره ی خارجی خودشان", "SSL root certificates" => "گواهی های اصلی SSL ", "Import Root Certificate" => "وارد کردن گواهی اصلی" ); diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 9632aa255e..02341ba763 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Käyttäjät", "Delete" => "Poista", "Enable User External Storage" => "Ota käyttöön ulkopuoliset tallennuspaikat", -"Allow users to mount their own external storage" => "Salli käyttäjien liittää omia erillisiä tallennusvälineitä", "SSL root certificates" => "SSL-juurivarmenteet", "Import Root Certificate" => "Tuo juurivarmenne" ); diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index f6b1a75200..43e19669cc 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Utilisateurs", "Delete" => "Supprimer", "Enable User External Storage" => "Activer le stockage externe pour les utilisateurs", -"Allow users to mount their own external storage" => "Autoriser les utilisateurs à monter leur propre stockage externe", "SSL root certificates" => "Certificats racine SSL", "Import Root Certificate" => "Importer un certificat racine" ); diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 3dda999dd1..9a84d86213 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Usuarios", "Delete" => "Eliminar", "Enable User External Storage" => "Activar o almacenamento externo do usuario", -"Allow users to mount their own external storage" => "Permitir aos usuarios montar os seus propios almacenamentos externos", "SSL root certificates" => "Certificados SSL root", "Import Root Certificate" => "Importar o certificado root" ); diff --git a/apps/files_external/l10n/he.php b/apps/files_external/l10n/he.php index e99c9f5193..6aec07e78c 100644 --- a/apps/files_external/l10n/he.php +++ b/apps/files_external/l10n/he.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Users" => "משתמשים", "Delete" => "מחיקה", "Enable User External Storage" => "הפעלת אחסון חיצוני למשתמשים", -"Allow users to mount their own external storage" => "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם", "SSL root certificates" => "שורש אישורי אבטחת SSL ", "Import Root Certificate" => "ייבוא אישור אבטחת שורש" ); diff --git a/apps/files_external/l10n/hu_HU.php b/apps/files_external/l10n/hu_HU.php index 23fe916eba..6066138043 100644 --- a/apps/files_external/l10n/hu_HU.php +++ b/apps/files_external/l10n/hu_HU.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Felhasználók", "Delete" => "Törlés", "Enable User External Storage" => "Külső tárolók engedélyezése a felhasználók részére", -"Allow users to mount their own external storage" => "Lehetővé teszi, hogy a felhasználók külső tárolási szolgáltatásokat csatoljanak be a saját területükre", "SSL root certificates" => "SSL tanúsítványok", "Import Root Certificate" => "SSL tanúsítványok importálása" ); diff --git a/apps/files_external/l10n/id.php b/apps/files_external/l10n/id.php index 53ab79ae7e..9f91fdf992 100644 --- a/apps/files_external/l10n/id.php +++ b/apps/files_external/l10n/id.php @@ -20,7 +20,6 @@ $TRANSLATIONS = array( "Users" => "Pengguna", "Delete" => "Hapus", "Enable User External Storage" => "Aktifkan Penyimpanan Eksternal Pengguna", -"Allow users to mount their own external storage" => "Izinkan pengguna untuk mengaitkan penyimpanan eksternal mereka", "SSL root certificates" => "Sertifikat root SSL", "Import Root Certificate" => "Impor Sertifikat Root" ); diff --git a/apps/files_external/l10n/is.php b/apps/files_external/l10n/is.php index d2229d1fcd..e86cfa108a 100644 --- a/apps/files_external/l10n/is.php +++ b/apps/files_external/l10n/is.php @@ -18,7 +18,6 @@ $TRANSLATIONS = array( "Users" => "Notendur", "Delete" => "Eyða", "Enable User External Storage" => "Virkja ytra gagnasvæði notenda", -"Allow users to mount their own external storage" => "Leyfa notendum að bæta við sínum eigin ytri gagnasvæðum", "SSL root certificates" => "SSL rótar skilríki", "Import Root Certificate" => "Flytja inn rótar skilríki" ); diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index b53663beb5..eea061bab6 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Utenti", "Delete" => "Elimina", "Enable User External Storage" => "Abilita la memoria esterna dell'utente", -"Allow users to mount their own external storage" => "Consenti agli utenti di montare la propria memoria esterna", "SSL root certificates" => "Certificati SSL radice", "Import Root Certificate" => "Importa certificato radice" ); diff --git a/apps/files_external/l10n/ja_JP.php b/apps/files_external/l10n/ja_JP.php index fc528f035c..d98c9887d3 100644 --- a/apps/files_external/l10n/ja_JP.php +++ b/apps/files_external/l10n/ja_JP.php @@ -3,25 +3,24 @@ $TRANSLATIONS = array( "Access granted" => "アクセスは許可されました", "Error configuring Dropbox storage" => "Dropboxストレージの設定エラー", "Grant access" => "アクセスを許可", -"Please provide a valid Dropbox app key and secret." => "有効なDropboxアプリのキーとパスワードを入力して下さい。", +"Please provide a valid Dropbox app key and secret." => "有効なDropboxアプリのキーとパスワードを入力してください。", "Error configuring Google Drive storage" => "Googleドライブストレージの設定エラー", -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "警告: \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。", -"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "警告: PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。", -"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "警告: PHP の Curl サポートは無効もしくはインストールされていません。ownCloud / WebDAV もしくは GoogleDrive のマウントはできません。システム管理者にインストールをお願いして下さい。", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "警告: \"smbclient\" がインストールされていません。CIFS/SMB共有のマウントはできません。システム管理者にインストールを依頼してください。", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "警告: PHPのFTPサポートが無効またはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールを依頼してください。", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "警告: PHPのCurlサポートが無効またはインストールされていません。ownCloud / WebDAVまたはGoogleDriveのマウントはできません。システム管理者にインストールを依頼してください。", "External Storage" => "外部ストレージ", -"Folder name" => "フォルダ名", +"Folder name" => "フォルダー名", "External storage" => "外部ストレージ", "Configuration" => "設定", "Options" => "オプション", "Applicable" => "適用範囲", "Add storage" => "ストレージを追加", "None set" => "未設定", -"All Users" => "すべてのユーザ", +"All Users" => "すべてのユーザー", "Groups" => "グループ", -"Users" => "ユーザ", +"Users" => "ユーザー", "Delete" => "削除", -"Enable User External Storage" => "ユーザの外部ストレージを有効にする", -"Allow users to mount their own external storage" => "ユーザに外部ストレージのマウントを許可する", +"Enable User External Storage" => "ユーザーの外部ストレージを有効にする", "SSL root certificates" => "SSLルート証明書", "Import Root Certificate" => "ルート証明書をインポート" ); diff --git a/apps/files_external/l10n/ka_GE.php b/apps/files_external/l10n/ka_GE.php index 445d40e708..4953f91ce6 100644 --- a/apps/files_external/l10n/ka_GE.php +++ b/apps/files_external/l10n/ka_GE.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "მომხმარებელი", "Delete" => "წაშლა", "Enable User External Storage" => "მომხმარებლის ექსტერნალ საცავის აქტივირება", -"Allow users to mount their own external storage" => "მიეცით მომხმარებლებს თავისი ექსტერნალ საცავის მონტირების უფლება", "SSL root certificates" => "SSL root სერთიფიკატები", "Import Root Certificate" => "Root სერთიფიკატის იმპორტირება" ); diff --git a/apps/files_external/l10n/km.php b/apps/files_external/l10n/km.php index f7d9faa38c..4586f866a7 100644 --- a/apps/files_external/l10n/km.php +++ b/apps/files_external/l10n/km.php @@ -1,5 +1,8 @@ "ឈ្មោះ​ថត", +"Groups" => "ក្រុ", +"Users" => "អ្នកប្រើ", "Delete" => "លុប" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 64d815a5bc..088a419e1c 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "사용자", "Delete" => "삭제", "Enable User External Storage" => "사용자 외부 저장소 사용", -"Allow users to mount their own external storage" => "사용자별 외부 저장소 마운트 허용", "SSL root certificates" => "SSL 루트 인증서", "Import Root Certificate" => "루트 인증서 가져오기" ); diff --git a/apps/files_external/l10n/lt_LT.php b/apps/files_external/l10n/lt_LT.php index 57cdfe6722..c96119c8b6 100644 --- a/apps/files_external/l10n/lt_LT.php +++ b/apps/files_external/l10n/lt_LT.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Vartotojai", "Delete" => "Ištrinti", "Enable User External Storage" => "Įjungti vartotojų išorines saugyklas", -"Allow users to mount their own external storage" => "Leisti vartotojams pridėti savo išorines saugyklas", "SSL root certificates" => "SSL sertifikatas", "Import Root Certificate" => "Įkelti pagrindinį sertifikatą" ); diff --git a/apps/files_external/l10n/lv.php b/apps/files_external/l10n/lv.php index d0db01a22b..18e5617889 100644 --- a/apps/files_external/l10n/lv.php +++ b/apps/files_external/l10n/lv.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Lietotāji", "Delete" => "Dzēst", "Enable User External Storage" => "Aktivēt lietotāja ārējo krātuvi", -"Allow users to mount their own external storage" => "Ļaut lietotājiem montēt pašiem savu ārējo krātuvi", "SSL root certificates" => "SSL saknes sertifikāti", "Import Root Certificate" => "Importēt saknes sertifikātus" ); diff --git a/apps/files_external/l10n/mk.php b/apps/files_external/l10n/mk.php index e410b398ac..b59bb138f1 100644 --- a/apps/files_external/l10n/mk.php +++ b/apps/files_external/l10n/mk.php @@ -18,7 +18,6 @@ $TRANSLATIONS = array( "Users" => "Корисници", "Delete" => "Избриши", "Enable User External Storage" => "Овозможи надворешни за корисници", -"Allow users to mount their own external storage" => "Дозволи им на корисниците да монтираат свои надворешни дискови", "SSL root certificates" => "SSL root сертификати", "Import Root Certificate" => "Увези" ); diff --git a/apps/files_external/l10n/nb_NO.php b/apps/files_external/l10n/nb_NO.php index cb31ac8922..c103112dbe 100644 --- a/apps/files_external/l10n/nb_NO.php +++ b/apps/files_external/l10n/nb_NO.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Brukere", "Delete" => "Slett", "Enable User External Storage" => "Aktiver ekstern lagring for bruker", -"Allow users to mount their own external storage" => "Tillat brukere å koble til egne eksterne lagringsmedium", "SSL root certificates" => "SSL root-sertifikater", "Import Root Certificate" => "Importer root-sertifikat" ); diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index 35e63b09a3..2297308c16 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Gebruikers", "Delete" => "Verwijder", "Enable User External Storage" => "Externe opslag voor gebruikers activeren", -"Allow users to mount their own external storage" => "Sta gebruikers toe om hun eigen externe opslag aan te koppelen", "SSL root certificates" => "SSL root certificaten", "Import Root Certificate" => "Importeer root certificaat" ); diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index f5501b9755..6b4b70dc2f 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Użytkownicy", "Delete" => "Usuń", "Enable User External Storage" => "Włącz zewnętrzne zasoby dyskowe użytkownika", -"Allow users to mount their own external storage" => "Zezwalaj użytkownikom na montowanie ich własnych zewnętrznych zasobów dyskowych", "SSL root certificates" => "Główny certyfikat SSL", "Import Root Certificate" => "Importuj główny certyfikat" ); diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index f69bbc1ebe..9b815957e0 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Usuários", "Delete" => "Excluir", "Enable User External Storage" => "Habilitar Armazenamento Externo do Usuário", -"Allow users to mount their own external storage" => "Permitir usuários a montar seus próprios armazenamentos externos", "SSL root certificates" => "Certificados SSL raíz", "Import Root Certificate" => "Importar Certificado Raíz" ); diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index 3f2afd33f0..4edb526cb5 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Utilizadores", "Delete" => "Eliminar", "Enable User External Storage" => "Activar Armazenamento Externo para o Utilizador", -"Allow users to mount their own external storage" => "Permitir que os utilizadores montem o seu próprio armazenamento externo", "SSL root certificates" => "Certificados SSL de raiz", "Import Root Certificate" => "Importar Certificado Root" ); diff --git a/apps/files_external/l10n/ro.php b/apps/files_external/l10n/ro.php index 7115d09ea9..66a84e2324 100644 --- a/apps/files_external/l10n/ro.php +++ b/apps/files_external/l10n/ro.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Utilizatori", "Delete" => "Șterge", "Enable User External Storage" => "Permite stocare externă pentru utilizatori", -"Allow users to mount their own external storage" => "Permite utilizatorilor să monteze stocare externă proprie", "SSL root certificates" => "Certificate SSL root", "Import Root Certificate" => "Importă certificat root" ); diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index 50c25acba0..66d6f9fa6b 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Пользователи", "Delete" => "Удалить", "Enable User External Storage" => "Включить пользовательские внешние носители", -"Allow users to mount their own external storage" => "Разрешить пользователям монтировать их собственные внешние носители", "SSL root certificates" => "Корневые сертификаты SSL", "Import Root Certificate" => "Импортировать корневые сертификаты" ); diff --git a/apps/files_external/l10n/si_LK.php b/apps/files_external/l10n/si_LK.php index cad928acce..ac41f59634 100644 --- a/apps/files_external/l10n/si_LK.php +++ b/apps/files_external/l10n/si_LK.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Users" => "පරිශීලකයන්", "Delete" => "මකා දමන්න", "Enable User External Storage" => "පරිශීලක භාහිර ගබඩාවන් සක්‍රිය කරන්න", -"Allow users to mount their own external storage" => "පරිශීලකයන්ට තමාගේම භාහිර ගබඩාවන් මවුන්ට් කිරීමේ අයිතිය දෙන්න", "SSL root certificates" => "SSL මූල සහතිකයන්", "Import Root Certificate" => "මූල සහතිකය ආයාත කරන්න" ); diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index 664d97c43b..aa28898257 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Používatelia", "Delete" => "Zmazať", "Enable User External Storage" => "Povoliť externé úložisko", -"Allow users to mount their own external storage" => "Povoliť používateľom pripojiť si vlastné externé úložisko", "SSL root certificates" => "Koreňové SSL certifikáty", "Import Root Certificate" => "Importovať koreňový certifikát" ); diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index b0fcbf9eb6..579a888bd0 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Uporabniki", "Delete" => "Izbriši", "Enable User External Storage" => "Omogoči zunanjo uporabniško podatkovno shrambo", -"Allow users to mount their own external storage" => "Dovoli uporabnikom priklop lastne zunanje podatkovne shrambe", "SSL root certificates" => "Korenska potrdila SSL", "Import Root Certificate" => "Uvozi korensko potrdilo" ); diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index 2c0b0ab69e..183df674b9 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Användare", "Delete" => "Radera", "Enable User External Storage" => "Aktivera extern lagring för användare", -"Allow users to mount their own external storage" => "Tillåt användare att montera egen extern lagring", "SSL root certificates" => "SSL rotcertifikat", "Import Root Certificate" => "Importera rotcertifikat" ); diff --git a/apps/files_external/l10n/ta_LK.php b/apps/files_external/l10n/ta_LK.php index bb663a4fcb..94ddaf9c5e 100644 --- a/apps/files_external/l10n/ta_LK.php +++ b/apps/files_external/l10n/ta_LK.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Users" => "பயனாளர்", "Delete" => "நீக்குக", "Enable User External Storage" => "பயனாளர் வெளி சேமிப்பை இயலுமைப்படுத்துக", -"Allow users to mount their own external storage" => "பயனாளர் அவர்களுடைய சொந்த வெளியக சேமிப்பை ஏற்ற அனுமதிக்க", "SSL root certificates" => "SSL வேர் சான்றிதழ்கள்", "Import Root Certificate" => "வேர் சான்றிதழை இறக்குமதி செய்க" ); diff --git a/apps/files_external/l10n/th_TH.php b/apps/files_external/l10n/th_TH.php index f2ea35f10f..a1a56a4d2e 100644 --- a/apps/files_external/l10n/th_TH.php +++ b/apps/files_external/l10n/th_TH.php @@ -18,7 +18,6 @@ $TRANSLATIONS = array( "Users" => "ผู้ใช้งาน", "Delete" => "ลบ", "Enable User External Storage" => "เปิดให้มีการใช้พื้นที่จัดเก็บข้อมูลของผู้ใช้งานจากภายนอกได้", -"Allow users to mount their own external storage" => "อนุญาตให้ผู้ใช้งานสามารถชี้ตำแหน่งไปที่พื้นที่จัดเก็บข้อมูลภายนอกของตนเองได้", "SSL root certificates" => "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root", "Import Root Certificate" => "นำเข้าข้อมูลใบรับรองความปลอดภัยจาก Root" ); diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 5d5e2b726a..b5f9cade3d 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Kullanıcılar", "Delete" => "Sil", "Enable User External Storage" => "Kullanıcılar için Harici Depolamayı Etkinleştir", -"Allow users to mount their own external storage" => "Kullanıcıların kendi harici depolamalarını bağlamalarına izin ver", "SSL root certificates" => "SSL kök sertifikaları", "Import Root Certificate" => "Kök Sertifikalarını İçe Aktar" ); diff --git a/apps/files_external/l10n/uk.php b/apps/files_external/l10n/uk.php index e535b455d1..a7c028aa93 100644 --- a/apps/files_external/l10n/uk.php +++ b/apps/files_external/l10n/uk.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Користувачі", "Delete" => "Видалити", "Enable User External Storage" => "Активувати користувацькі зовнішні сховища", -"Allow users to mount their own external storage" => "Дозволити користувачам монтувати власні зовнішні сховища", "SSL root certificates" => "SSL корневі сертифікати", "Import Root Certificate" => "Імпортувати корневі сертифікати" ); diff --git a/apps/files_external/l10n/vi.php b/apps/files_external/l10n/vi.php index da8ac419cd..5fd00dc2bf 100644 --- a/apps/files_external/l10n/vi.php +++ b/apps/files_external/l10n/vi.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "Người dùng", "Delete" => "Xóa", "Enable User External Storage" => "Kích hoạt tính năng lưu trữ ngoài", -"Allow users to mount their own external storage" => "Cho phép người dùng kết nối với lưu trữ riêng bên ngoài của họ", "SSL root certificates" => "Chứng chỉ SSL root", "Import Root Certificate" => "Nhập Root Certificate" ); diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 5e2c2e4fe0..bb85d0e4f4 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "用户", "Delete" => "删除", "Enable User External Storage" => "启用用户外部存储", -"Allow users to mount their own external storage" => "允许用户挂载自有外部存储", "SSL root certificates" => "SSL根证书", "Import Root Certificate" => "导入根证书" ); diff --git a/apps/files_external/l10n/zh_TW.php b/apps/files_external/l10n/zh_TW.php index d85d18a1c3..7c256cd2ab 100644 --- a/apps/files_external/l10n/zh_TW.php +++ b/apps/files_external/l10n/zh_TW.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Users" => "使用者", "Delete" => "刪除", "Enable User External Storage" => "啓用使用者外部儲存", -"Allow users to mount their own external storage" => "允許使用者自行掛載他們的外部儲存", "SSL root certificates" => "SSL 根憑證", "Import Root Certificate" => "匯入根憑證" ); diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php index 2625af1cc0..3b27dda689 100644 --- a/apps/files_sharing/l10n/ar.php +++ b/apps/files_sharing/l10n/ar.php @@ -1,11 +1,5 @@ "كلمة المرور", -"%s shared the folder %s with you" => "%s شارك المجلد %s معك", -"%s shared the file %s with you" => "%s شارك الملف %s معك", -"Download" => "تحميل", -"Upload" => "رفع", -"Cancel upload" => "إلغاء رفع الملفات", -"No preview available for" => "لا يوجد عرض مسبق لـ" +"Password" => "كلمة المرور" ); $PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php index f4b9e2dd5f..4fe5ba6b16 100644 --- a/apps/files_sharing/l10n/bg_BG.php +++ b/apps/files_sharing/l10n/bg_BG.php @@ -1,11 +1,5 @@ "Парола", -"%s shared the folder %s with you" => "%s сподели папката %s с Вас", -"%s shared the file %s with you" => "%s сподели файла %s с Вас", -"Download" => "Изтегляне", -"Upload" => "Качване", -"Cancel upload" => "Спри качването", -"No preview available for" => "Няма наличен преглед за" +"Password" => "Парола" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index aaed904d9d..1d737247d8 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,11 +1,5 @@ "কূটশব্দ", -"%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন", -"%s shared the file %s with you" => "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন", -"Download" => "ডাউনলোড", -"Upload" => "আপলোড", -"Cancel upload" => "আপলোড বাতিল কর", -"No preview available for" => "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" +"Password" => "কূটশব্দ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index 96e5999296..1dee5caaf8 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "l'enllaç ha vençut", "sharing is disabled" => "s'ha desactivat la compartició", "For more info, please ask the person who sent this link." => "Per més informació contacteu amb qui us ha enviat l'enllaç.", -"%s shared the folder %s with you" => "%s ha compartit la carpeta %s amb vós", -"%s shared the file %s with you" => "%s ha compartit el fitxer %s amb vós", -"Download" => "Baixa", -"Upload" => "Puja", -"Cancel upload" => "Cancel·la la pujada", -"No preview available for" => "No hi ha vista prèvia disponible per a", "Direct link" => "Enllaç directe" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index adf099a6d9..3f189a444d 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "platnost odkazu vypršela", "sharing is disabled" => "sdílení je zakázané", "For more info, please ask the person who sent this link." => "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", -"%s shared the folder %s with you" => "%s s Vámi sdílí složku %s", -"%s shared the file %s with you" => "%s s Vámi sdílí soubor %s", -"Download" => "Stáhnout", -"Upload" => "Odeslat", -"Cancel upload" => "Zrušit odesílání", -"No preview available for" => "Náhled není dostupný pro", "Direct link" => "Přímý odkaz" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index d2ae28141d..bf05f890a9 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,11 +1,5 @@ "Cyfrinair", -"%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi", -"%s shared the file %s with you" => "Rhannodd %s ffeil %s â chi", -"Download" => "Llwytho i lawr", -"Upload" => "Llwytho i fyny", -"Cancel upload" => "Diddymu llwytho i fyny", -"No preview available for" => "Does dim rhagolwg ar gael ar gyfer" +"Password" => "Cyfrinair" ); $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index 849b0e28d3..7dd4e9bb86 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "linket udløb", "sharing is disabled" => "deling er deaktiveret", "For more info, please ask the person who sent this link." => "For yderligere information, kontakt venligst personen der sendte linket. ", -"%s shared the folder %s with you" => "%s delte mappen %s med dig", -"%s shared the file %s with you" => "%s delte filen %s med dig", -"Download" => "Download", -"Upload" => "Upload", -"Cancel upload" => "Fortryd upload", -"No preview available for" => "Forhåndsvisning ikke tilgængelig for", "Direct link" => "Direkte link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index d7879833ca..f53b804180 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "Der Link ist abgelaufen", "sharing is disabled" => "Teilen ist deaktiviert", "For more info, please ask the person who sent this link." => "Für mehr Informationen, frage bitte die Person, die Dir diesen Link geschickt hat.", -"%s shared the folder %s with you" => "%s hat den Ordner %s mit Dir geteilt", -"%s shared the file %s with you" => "%s hat die Datei %s mit Dir geteilt", -"Download" => "Download", -"Upload" => "Upload", -"Cancel upload" => "Upload abbrechen", -"No preview available for" => "Es ist keine Vorschau verfügbar für", "Direct link" => "Direkter Link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/de_AT.php b/apps/files_sharing/l10n/de_AT.php new file mode 100644 index 0000000000..142892bc9a --- /dev/null +++ b/apps/files_sharing/l10n/de_AT.php @@ -0,0 +1,5 @@ + "Passwort" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/de_CH.php b/apps/files_sharing/l10n/de_CH.php index f63714b902..2e29850847 100644 --- a/apps/files_sharing/l10n/de_CH.php +++ b/apps/files_sharing/l10n/de_CH.php @@ -7,12 +7,6 @@ $TRANSLATIONS = array( "the item was removed" => "Das Element wurde entfernt", "the link expired" => "Der Link ist abgelaufen", "sharing is disabled" => "Teilen ist deaktiviert", -"For more info, please ask the person who sent this link." => "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat.", -"%s shared the folder %s with you" => "%s hat den Ordner %s mit Ihnen geteilt", -"%s shared the file %s with you" => "%s hat die Datei %s mit Ihnen geteilt", -"Download" => "Herunterladen", -"Upload" => "Hochladen", -"Cancel upload" => "Upload abbrechen", -"No preview available for" => "Es ist keine Vorschau verfügbar für" +"For more info, please ask the person who sent this link." => "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index 3ab95b6690..39cee8714d 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "Der Link ist abgelaufen", "sharing is disabled" => "Teilen ist deaktiviert", "For more info, please ask the person who sent this link." => "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat.", -"%s shared the folder %s with you" => "%s hat den Ordner %s mit Ihnen geteilt", -"%s shared the file %s with you" => "%s hat die Datei %s mit Ihnen geteilt", -"Download" => "Herunterladen", -"Upload" => "Hochladen", -"Cancel upload" => "Upload abbrechen", -"No preview available for" => "Es ist keine Vorschau verfügbar für", "Direct link" => "Direkte Verlinkung" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index 3ea666504b..312990ed3b 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "ο σύνδεσμος έληξε", "sharing is disabled" => "ο διαμοιρασμός απενεργοποιήθηκε", "For more info, please ask the person who sent this link." => "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο.", -"%s shared the folder %s with you" => "Ο %s μοιράστηκε τον φάκελο %s μαζί σας", -"%s shared the file %s with you" => "Ο %s μοιράστηκε το αρχείο %s μαζί σας", -"Download" => "Λήψη", -"Upload" => "Μεταφόρτωση", -"Cancel upload" => "Ακύρωση μεταφόρτωσης", -"No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για", "Direct link" => "Άμεσος σύνδεσμος" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/en@pirate.php b/apps/files_sharing/l10n/en@pirate.php index cd3c00d29d..ab628e1717 100644 --- a/apps/files_sharing/l10n/en@pirate.php +++ b/apps/files_sharing/l10n/en@pirate.php @@ -1,9 +1,5 @@ "Secret Code", -"%s shared the folder %s with you" => "%s shared the folder %s with you", -"%s shared the file %s with you" => "%s shared the file %s with you", -"Download" => "Download", -"No preview available for" => "No preview available for" +"Password" => "Secret Code" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/en_GB.php b/apps/files_sharing/l10n/en_GB.php index 3e04d120be..836ffa5e8f 100644 --- a/apps/files_sharing/l10n/en_GB.php +++ b/apps/files_sharing/l10n/en_GB.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "the link expired", "sharing is disabled" => "sharing is disabled", "For more info, please ask the person who sent this link." => "For more info, please ask the person who sent this link.", -"%s shared the folder %s with you" => "%s shared the folder %s with you", -"%s shared the file %s with you" => "%s shared the file %s with you", -"Download" => "Download", -"Upload" => "Upload", -"Cancel upload" => "Cancel upload", -"No preview available for" => "No preview available for", "Direct link" => "Direct link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/eo.php b/apps/files_sharing/l10n/eo.php index 891b3db9aa..0fe1d311e0 100644 --- a/apps/files_sharing/l10n/eo.php +++ b/apps/files_sharing/l10n/eo.php @@ -8,12 +8,6 @@ $TRANSLATIONS = array( "the link expired" => "la ligilo eksvalidiĝis", "sharing is disabled" => "kunhavigo malkapablas", "For more info, please ask the person who sent this link." => "Por plia informo, bonvolu peti al la persono, kiu sendis ĉi tiun ligilon.", -"%s shared the folder %s with you" => "%s kunhavigis la dosierujon %s kun vi", -"%s shared the file %s with you" => "%s kunhavigis la dosieron %s kun vi", -"Download" => "Elŝuti", -"Upload" => "Alŝuti", -"Cancel upload" => "Nuligi alŝuton", -"No preview available for" => "Ne haveblas antaŭvido por", "Direct link" => "Direkta ligilo" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index f986c29b4f..e884bce244 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "el enlace expiró", "sharing is disabled" => "compartir está desactivado", "For more info, please ask the person who sent this link." => "Para mayor información, contacte a la persona que le envió el enlace.", -"%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", -"%s shared the file %s with you" => "%s compartió el fichero %s contigo", -"Download" => "Descargar", -"Upload" => "Subir", -"Cancel upload" => "Cancelar subida", -"No preview available for" => "No hay vista previa disponible para", "Direct link" => "Enlace directo" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es_AR.php b/apps/files_sharing/l10n/es_AR.php index 989a91a450..6b24adf589 100644 --- a/apps/files_sharing/l10n/es_AR.php +++ b/apps/files_sharing/l10n/es_AR.php @@ -1,5 +1,6 @@ "Esto está protegido por contraseña", "The password is wrong. Try again." => "La contraseña no es correcta. Probá de nuevo.", "Password" => "Contraseña", "Sorry, this link doesn’t seem to work anymore." => "Perdón, este enlace parece no funcionar más.", @@ -8,11 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "el enlace expiró", "sharing is disabled" => "compartir está desactivado", "For more info, please ask the person who sent this link." => "Para mayor información, contactá a la persona que te mandó el enlace.", -"%s shared the folder %s with you" => "%s compartió la carpeta %s con vos", -"%s shared the file %s with you" => "%s compartió el archivo %s con vos", -"Download" => "Descargar", -"Upload" => "Subir", -"Cancel upload" => "Cancelar subida", -"No preview available for" => "La vista preliminar no está disponible para" +"Direct link" => "Vínculo directo" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es_CL.php b/apps/files_sharing/l10n/es_CL.php index 31dc045870..42a2f066c6 100644 --- a/apps/files_sharing/l10n/es_CL.php +++ b/apps/files_sharing/l10n/es_CL.php @@ -1,6 +1,5 @@ "Clave", -"Upload" => "Subir" +"Password" => "Clave" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es_MX.php b/apps/files_sharing/l10n/es_MX.php index 9100ef8b35..8c6db2b327 100644 --- a/apps/files_sharing/l10n/es_MX.php +++ b/apps/files_sharing/l10n/es_MX.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "el enlace expiró", "sharing is disabled" => "compartir está desactivado", "For more info, please ask the person who sent this link." => "Para mayor información, contacte a la persona que le envió el enlace.", -"%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", -"%s shared the file %s with you" => "%s compartió el archivo %s contigo", -"Download" => "Descargar", -"Upload" => "Subir", -"Cancel upload" => "Cancelar subida", -"No preview available for" => "No hay vista previa disponible para", "Direct link" => "Enlace directo" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index 4b7f975e83..32cd19e578 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "link on aegunud", "sharing is disabled" => "jagamine on peatatud", "For more info, please ask the person who sent this link." => "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole.", -"%s shared the folder %s with you" => "%s jagas sinuga kausta %s", -"%s shared the file %s with you" => "%s jagas sinuga faili %s", -"Download" => "Lae alla", -"Upload" => "Lae üles", -"Cancel upload" => "Tühista üleslaadimine", -"No preview available for" => "Eelvaadet pole saadaval", "Direct link" => "Otsene link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index 20de5a085a..e2c9f2623d 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "lotura iraungi da", "sharing is disabled" => "elkarbanatzea ez dago gaituta", "For more info, please ask the person who sent this link." => "Informazio gehiagorako, mesedez eskatu lotura hau bidali zuen pertsonari", -"%s shared the folder %s with you" => "%sk zurekin %s karpeta elkarbanatu du", -"%s shared the file %s with you" => "%sk zurekin %s fitxategia elkarbanatu du", -"Download" => "Deskargatu", -"Upload" => "Igo", -"Cancel upload" => "Ezeztatu igoera", -"No preview available for" => "Ez dago aurrebista eskuragarririk hauentzat ", "Direct link" => "Lotura zuzena" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/fa.php b/apps/files_sharing/l10n/fa.php index 664338723c..a3ad9882a9 100644 --- a/apps/files_sharing/l10n/fa.php +++ b/apps/files_sharing/l10n/fa.php @@ -1,12 +1,6 @@ "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", -"Password" => "گذرواژه", -"%s shared the folder %s with you" => "%sپوشه %s را با شما به اشتراک گذاشت", -"%s shared the file %s with you" => "%sفایل %s را با شما به اشتراک گذاشت", -"Download" => "دانلود", -"Upload" => "بارگزاری", -"Cancel upload" => "متوقف کردن بار گذاری", -"No preview available for" => "هیچگونه پیش نمایشی موجود نیست" +"Password" => "گذرواژه" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index c54c822b1c..e0cae4990d 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "linkki vanheni", "sharing is disabled" => "jakaminen on poistettu käytöstä", "For more info, please ask the person who sent this link." => "Kysy lisätietoja henkilöltä, jolta sait linkin.", -"%s shared the folder %s with you" => "%s jakoi kansion %s kanssasi", -"%s shared the file %s with you" => "%s jakoi tiedoston %s kanssasi", -"Download" => "Lataa", -"Upload" => "Lähetä", -"Cancel upload" => "Peru lähetys", -"No preview available for" => "Ei esikatselua kohteelle", "Direct link" => "Suora linkki" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index b51f421fa5..99488de7c6 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "le lien a expiré", "sharing is disabled" => "le partage est désactivé", "For more info, please ask the person who sent this link." => "Pour plus d'informations, veuillez contacter la personne qui a envoyé ce lien.", -"%s shared the folder %s with you" => "%s a partagé le répertoire %s avec vous", -"%s shared the file %s with you" => "%s a partagé le fichier %s avec vous", -"Download" => "Télécharger", -"Upload" => "Envoyer", -"Cancel upload" => "Annuler l'envoi", -"No preview available for" => "Pas d'aperçu disponible pour", "Direct link" => "Lien direct" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index 3ea3fe5f1c..edd3d35d1c 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "a ligazón caducou", "sharing is disabled" => "foi desactivada a compartición", "For more info, please ask the person who sent this link." => "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón.", -"%s shared the folder %s with you" => "%s compartiu o cartafol %s con vostede", -"%s shared the file %s with you" => "%s compartiu o ficheiro %s con vostede", -"Download" => "Descargar", -"Upload" => "Enviar", -"Cancel upload" => "Cancelar o envío", -"No preview available for" => "Sen vista previa dispoñíbel para", "Direct link" => "Ligazón directa" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/he.php b/apps/files_sharing/l10n/he.php index 217298fedd..bd047f0ddb 100644 --- a/apps/files_sharing/l10n/he.php +++ b/apps/files_sharing/l10n/he.php @@ -1,11 +1,5 @@ "סיסמא", -"%s shared the folder %s with you" => "%s שיתף עמך את התיקייה %s", -"%s shared the file %s with you" => "%s שיתף עמך את הקובץ %s", -"Download" => "הורדה", -"Upload" => "העלאה", -"Cancel upload" => "ביטול ההעלאה", -"No preview available for" => "אין תצוגה מקדימה זמינה עבור" +"Password" => "סיסמא" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/hi.php b/apps/files_sharing/l10n/hi.php index 63a5d528f3..74a2c32043 100644 --- a/apps/files_sharing/l10n/hi.php +++ b/apps/files_sharing/l10n/hi.php @@ -1,6 +1,5 @@ "पासवर्ड", -"Upload" => "अपलोड " +"Password" => "पासवर्ड" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/hr.php b/apps/files_sharing/l10n/hr.php index 4a82dd7f71..60c01d30b5 100644 --- a/apps/files_sharing/l10n/hr.php +++ b/apps/files_sharing/l10n/hr.php @@ -1,8 +1,5 @@ "Lozinka", -"Download" => "Preuzimanje", -"Upload" => "Učitaj", -"Cancel upload" => "Prekini upload" +"Password" => "Lozinka" ); $PLURAL_FORMS = "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"; diff --git a/apps/files_sharing/l10n/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php index a06c51b377..21221f14af 100644 --- a/apps/files_sharing/l10n/hu_HU.php +++ b/apps/files_sharing/l10n/hu_HU.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "lejárt a link érvényességi ideje", "sharing is disabled" => "letiltásra került a megosztás", "For more info, please ask the person who sent this link." => "További információért forduljon ahhoz, aki ezt a linket küldte Önnek!", -"%s shared the folder %s with you" => "%s megosztotta Önnel ezt a mappát: %s", -"%s shared the file %s with you" => "%s megosztotta Önnel ezt az állományt: %s", -"Download" => "Letöltés", -"Upload" => "Feltöltés", -"Cancel upload" => "A feltöltés megszakítása", -"No preview available for" => "Nem áll rendelkezésre előnézet ehhez: ", "Direct link" => "Közvetlen link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ia.php b/apps/files_sharing/l10n/ia.php index f9d6c33a0b..9ec82f20df 100644 --- a/apps/files_sharing/l10n/ia.php +++ b/apps/files_sharing/l10n/ia.php @@ -1,7 +1,5 @@ "Contrasigno", -"Download" => "Discargar", -"Upload" => "Incargar" +"Password" => "Contrasigno" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/id.php b/apps/files_sharing/l10n/id.php index 865a951c2d..d5ef283f2e 100644 --- a/apps/files_sharing/l10n/id.php +++ b/apps/files_sharing/l10n/id.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "tautan telah kadaluarsa", "sharing is disabled" => "berbagi dinonaktifkan", "For more info, please ask the person who sent this link." => "Untuk info lebih lanjut, silakan tanyakan orang yang mengirim tautan ini.", -"%s shared the folder %s with you" => "%s membagikan folder %s dengan Anda", -"%s shared the file %s with you" => "%s membagikan berkas %s dengan Anda", -"Download" => "Unduh", -"Upload" => "Unggah", -"Cancel upload" => "Batal unggah", -"No preview available for" => "Tidak ada pratinjau yang tersedia untuk", "Direct link" => "Tautan langsung" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/is.php b/apps/files_sharing/l10n/is.php index 8ae8e48eff..c4a1c58940 100644 --- a/apps/files_sharing/l10n/is.php +++ b/apps/files_sharing/l10n/is.php @@ -1,11 +1,5 @@ "Lykilorð", -"%s shared the folder %s with you" => "%s deildi möppunni %s með þér", -"%s shared the file %s with you" => "%s deildi skránni %s með þér", -"Download" => "Niðurhal", -"Upload" => "Senda inn", -"Cancel upload" => "Hætta við innsendingu", -"No preview available for" => "Yfirlit ekki í boði fyrir" +"Password" => "Lykilorð" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index 7967b50d34..47f04e6011 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "il collegamento è scaduto", "sharing is disabled" => "la condivisione è disabilitata", "For more info, please ask the person who sent this link." => "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento.", -"%s shared the folder %s with you" => "%s ha condiviso la cartella %s con te", -"%s shared the file %s with you" => "%s ha condiviso il file %s con te", -"Download" => "Scarica", -"Upload" => "Carica", -"Cancel upload" => "Annulla il caricamento", -"No preview available for" => "Nessuna anteprima disponibile per", "Direct link" => "Collegamento diretto" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index fe25cb5b6e..8ddafb36a4 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "リンクの期限が切れています", "sharing is disabled" => "共有が無効になっています", "For more info, please ask the person who sent this link." => "不明な点は、こちらのリンクの提供者に確認をお願いします。", -"%s shared the folder %s with you" => "%s はフォルダー %s をあなたと共有中です", -"%s shared the file %s with you" => "%s はファイル %s をあなたと共有中です", -"Download" => "ダウンロード", -"Upload" => "アップロード", -"Cancel upload" => "アップロードをキャンセル", -"No preview available for" => "プレビューはありません", "Direct link" => "リンク" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ka_GE.php b/apps/files_sharing/l10n/ka_GE.php index 89a6800b3e..e9024a3c1c 100644 --- a/apps/files_sharing/l10n/ka_GE.php +++ b/apps/files_sharing/l10n/ka_GE.php @@ -1,11 +1,5 @@ "პაროლი", -"%s shared the folder %s with you" => "%s–მა გაგიზიარათ ფოლდერი %s", -"%s shared the file %s with you" => "%s–მა გაგიზიარათ ფაილი %s", -"Download" => "ჩამოტვირთვა", -"Upload" => "ატვირთვა", -"Cancel upload" => "ატვირთვის გაუქმება", -"No preview available for" => "წინასწარი დათვალიერება შეუძლებელია" +"Password" => "პაროლი" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/km.php b/apps/files_sharing/l10n/km.php new file mode 100644 index 0000000000..bb09bd6d85 --- /dev/null +++ b/apps/files_sharing/l10n/km.php @@ -0,0 +1,5 @@ + "ពាក្យសម្ងាត់" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ko.php b/apps/files_sharing/l10n/ko.php index 03c4c1aea9..8285e0fb6d 100644 --- a/apps/files_sharing/l10n/ko.php +++ b/apps/files_sharing/l10n/ko.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "링크가 만료됨", "sharing is disabled" => "공유가 비활성화됨", "For more info, please ask the person who sent this link." => "자세한 정보는 링크를 보낸 사람에게 문의하십시오.", -"%s shared the folder %s with you" => "%s 님이 폴더 %s을(를) 공유하였습니다", -"%s shared the file %s with you" => "%s 님이 파일 %s을(를) 공유하였습니다", -"Download" => "다운로드", -"Upload" => "업로드", -"Cancel upload" => "업로드 취소", -"No preview available for" => "다음 항목을 미리 볼 수 없음:", "Direct link" => "직접 링크" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ku_IQ.php b/apps/files_sharing/l10n/ku_IQ.php index 6b4b7e4ba9..d433885e67 100644 --- a/apps/files_sharing/l10n/ku_IQ.php +++ b/apps/files_sharing/l10n/ku_IQ.php @@ -1,10 +1,5 @@ "وشەی تێپەربو", -"%s shared the folder %s with you" => "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ", -"%s shared the file %s with you" => "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ", -"Download" => "داگرتن", -"Upload" => "بارکردن", -"No preview available for" => "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" +"Password" => "وشەی تێپەربو" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/lb.php b/apps/files_sharing/l10n/lb.php index eeb6a3e2dc..b253e795df 100644 --- a/apps/files_sharing/l10n/lb.php +++ b/apps/files_sharing/l10n/lb.php @@ -1,12 +1,6 @@ "Den Passwuert ass incorrect. Probeier ed nach eng keier.", -"Password" => "Passwuert", -"%s shared the folder %s with you" => "%s huet den Dossier %s mad der gedeelt", -"%s shared the file %s with you" => "%s deelt den Fichier %s mad dir", -"Download" => "Download", -"Upload" => "Eroplueden", -"Cancel upload" => "Upload ofbriechen", -"No preview available for" => "Keeng Preview do fir" +"Password" => "Passwuert" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/lt_LT.php b/apps/files_sharing/l10n/lt_LT.php index 3786fd08b9..5006baecd8 100644 --- a/apps/files_sharing/l10n/lt_LT.php +++ b/apps/files_sharing/l10n/lt_LT.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "baigėsi nuorodos galiojimo laikas", "sharing is disabled" => "dalinimasis yra išjungtas", "For more info, please ask the person who sent this link." => "Dėl tikslesnės informacijos susisiekite su asmeniu atsiuntusiu nuorodą.", -"%s shared the folder %s with you" => "%s pasidalino su jumis %s aplanku", -"%s shared the file %s with you" => "%s pasidalino su jumis %s failu", -"Download" => "Atsisiųsti", -"Upload" => "Įkelti", -"Cancel upload" => "Atšaukti siuntimą", -"No preview available for" => "Peržiūra nėra galima", "Direct link" => "Tiesioginė nuoroda" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/lv.php b/apps/files_sharing/l10n/lv.php index a913ba1152..7822fe2490 100644 --- a/apps/files_sharing/l10n/lv.php +++ b/apps/files_sharing/l10n/lv.php @@ -1,11 +1,5 @@ "Parole", -"%s shared the folder %s with you" => "%s ar jums dalījās ar mapi %s", -"%s shared the file %s with you" => "%s ar jums dalījās ar datni %s", -"Download" => "Lejupielādēt", -"Upload" => "Augšupielādēt", -"Cancel upload" => "Atcelt augšupielādi", -"No preview available for" => "Nav pieejams priekšskatījums priekš" +"Password" => "Parole" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/mk.php b/apps/files_sharing/l10n/mk.php index c132f7aa26..b83a777d09 100644 --- a/apps/files_sharing/l10n/mk.php +++ b/apps/files_sharing/l10n/mk.php @@ -1,11 +1,5 @@ "Лозинка", -"%s shared the folder %s with you" => "%s ја сподели папката %s со Вас", -"%s shared the file %s with you" => "%s ја сподели датотеката %s со Вас", -"Download" => "Преземи", -"Upload" => "Подигни", -"Cancel upload" => "Откажи прикачување", -"No preview available for" => "Нема достапно преглед за" +"Password" => "Лозинка" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_sharing/l10n/ms_MY.php b/apps/files_sharing/l10n/ms_MY.php index 9725dd4d1b..89d11f49fd 100644 --- a/apps/files_sharing/l10n/ms_MY.php +++ b/apps/files_sharing/l10n/ms_MY.php @@ -1,8 +1,5 @@ "Kata laluan", -"Download" => "Muat turun", -"Upload" => "Muat naik", -"Cancel upload" => "Batal muat naik" +"Password" => "Kata laluan" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/my_MM.php b/apps/files_sharing/l10n/my_MM.php index ff92e898ed..475d642743 100644 --- a/apps/files_sharing/l10n/my_MM.php +++ b/apps/files_sharing/l10n/my_MM.php @@ -1,6 +1,5 @@ "စကားဝှက်", -"Download" => "ဒေါင်းလုတ်" +"Password" => "စကားဝှက်" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index 0452b5275c..8b444a36a8 100644 --- a/apps/files_sharing/l10n/nb_NO.php +++ b/apps/files_sharing/l10n/nb_NO.php @@ -1,12 +1,14 @@ "Denne delingen er passordbeskyttet", "The password is wrong. Try again." => "Passordet er feil. Prøv på nytt.", "Password" => "Passord", -"%s shared the folder %s with you" => "%s delte mappen %s med deg", -"%s shared the file %s with you" => "%s delte filen %s med deg", -"Download" => "Last ned", -"Upload" => "Last opp", -"Cancel upload" => "Avbryt opplasting", -"No preview available for" => "Forhåndsvisning ikke tilgjengelig for" +"Sorry, this link doesn’t seem to work anymore." => "Beklager, denne lenken ser ikke ut til å virke lenger.", +"Reasons might be:" => "Mulige årsaker:", +"the item was removed" => "elementet er fjernet", +"the link expired" => "lenken er utløpt", +"sharing is disabled" => "deling er deaktivert", +"For more info, please ask the person who sent this link." => "For mer informasjon, spør personen som sendte lenken.", +"Direct link" => "Direkte lenke" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index 687c6e134f..8c0363e232 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "de link is verlopen", "sharing is disabled" => "delen is uitgeschakeld", "For more info, please ask the person who sent this link." => "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd.", -"%s shared the folder %s with you" => "%s deelt de map %s met u", -"%s shared the file %s with you" => "%s deelt het bestand %s met u", -"Download" => "Downloaden", -"Upload" => "Uploaden", -"Cancel upload" => "Upload afbreken", -"No preview available for" => "Geen voorbeeldweergave beschikbaar voor", "Direct link" => "Directe link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/nn_NO.php b/apps/files_sharing/l10n/nn_NO.php index 1f1e8001e7..4bd7275ba5 100644 --- a/apps/files_sharing/l10n/nn_NO.php +++ b/apps/files_sharing/l10n/nn_NO.php @@ -7,12 +7,6 @@ $TRANSLATIONS = array( "the item was removed" => "fila/mappa er fjerna", "the link expired" => "lenkja har gått ut på dato", "sharing is disabled" => "deling er slått av", -"For more info, please ask the person who sent this link." => "Spør den som sende deg lenkje om du vil ha meir informasjon.", -"%s shared the folder %s with you" => "%s delte mappa %s med deg", -"%s shared the file %s with you" => "%s delte fila %s med deg", -"Download" => "Last ned", -"Upload" => "Last opp", -"Cancel upload" => "Avbryt opplasting", -"No preview available for" => "Inga førehandsvising tilgjengeleg for" +"For more info, please ask the person who sent this link." => "Spør den som sende deg lenkje om du vil ha meir informasjon." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/oc.php b/apps/files_sharing/l10n/oc.php index 299d98e58b..c67cdf272f 100644 --- a/apps/files_sharing/l10n/oc.php +++ b/apps/files_sharing/l10n/oc.php @@ -1,8 +1,5 @@ "Senhal", -"Download" => "Avalcarga", -"Upload" => "Amontcarga", -"Cancel upload" => " Anulla l'amontcargar" +"Password" => "Senhal" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/pa.php b/apps/files_sharing/l10n/pa.php index 6c14eda59d..6fee1e95f0 100644 --- a/apps/files_sharing/l10n/pa.php +++ b/apps/files_sharing/l10n/pa.php @@ -1,8 +1,5 @@ "ਪਾਸਵਰ", -"Download" => "ਡਾਊਨਲੋਡ", -"Upload" => "ਅੱਪਲੋਡ", -"Cancel upload" => "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" +"Password" => "ਪਾਸਵਰ" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 4c7498ee1b..4811c12711 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "link wygasł", "sharing is disabled" => "Udostępnianie jest wyłączone", "For more info, please ask the person who sent this link." => "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link.", -"%s shared the folder %s with you" => "%s współdzieli folder z tobą %s", -"%s shared the file %s with you" => "%s współdzieli z tobą plik %s", -"Download" => "Pobierz", -"Upload" => "Wyślij", -"Cancel upload" => "Anuluj wysyłanie", -"No preview available for" => "Podgląd nie jest dostępny dla", "Direct link" => "Bezpośredni link" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index ee03749795..0a9677cb19 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "o link expirou", "sharing is disabled" => "compartilhamento está desativada", "For more info, please ask the person who sent this link." => "Para mais informações, por favor, pergunte a pessoa que enviou este link.", -"%s shared the folder %s with you" => "%s compartilhou a pasta %s com você", -"%s shared the file %s with you" => "%s compartilhou o arquivo %s com você", -"Download" => "Baixar", -"Upload" => "Upload", -"Cancel upload" => "Cancelar upload", -"No preview available for" => "Nenhuma visualização disponível para", "Direct link" => "Link direto" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index cd94211b5d..52c5d07865 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "O link expirou", "sharing is disabled" => "A partilha está desativada", "For more info, please ask the person who sent this link." => "Para mais informações, por favor questione a pessoa que lhe enviou este link", -"%s shared the folder %s with you" => "%s partilhou a pasta %s consigo", -"%s shared the file %s with you" => "%s partilhou o ficheiro %s consigo", -"Download" => "Transferir", -"Upload" => "Carregar", -"Cancel upload" => "Cancelar envio", -"No preview available for" => "Não há pré-visualização para", "Direct link" => "Link direto" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ro.php b/apps/files_sharing/l10n/ro.php index 54e20ed6bb..ca0d5e077b 100644 --- a/apps/files_sharing/l10n/ro.php +++ b/apps/files_sharing/l10n/ro.php @@ -1,12 +1,6 @@ "Parola este incorectă. Încercaţi din nou.", -"Password" => "Parolă", -"%s shared the folder %s with you" => "%s a partajat directorul %s cu tine", -"%s shared the file %s with you" => "%s a partajat fișierul %s cu tine", -"Download" => "Descarcă", -"Upload" => "Încărcare", -"Cancel upload" => "Anulează încărcarea", -"No preview available for" => "Nici o previzualizare disponibilă pentru " +"Password" => "Parolă" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index 8c48096f66..767771b69d 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.php @@ -1,20 +1,14 @@ "Эта шара защищена паролем", +"This share is password-protected" => "Общий ресурс защищён паролем", "The password is wrong. Try again." => "Неверный пароль. Попробуйте еще раз.", "Password" => "Пароль", "Sorry, this link doesn’t seem to work anymore." => "К сожалению, эта ссылка, похоже не будет работать больше.", "Reasons might be:" => "Причиной может быть:", "the item was removed" => "объект был удалён", "the link expired" => "срок ссылки истёк", -"sharing is disabled" => "обмен отключен", -"For more info, please ask the person who sent this link." => "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку.", -"%s shared the folder %s with you" => "%s открыл доступ к папке %s для Вас", -"%s shared the file %s with you" => "%s открыл доступ к файлу %s для Вас", -"Download" => "Скачать", -"Upload" => "Загрузка", -"Cancel upload" => "Отмена загрузки", -"No preview available for" => "Предпросмотр недоступен для", +"sharing is disabled" => "общий доступ отключён", +"For more info, please ask the person who sent this link." => "Пожалуйста, обратитесь к отправителю данной ссылки.", "Direct link" => "Прямая ссылка" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/si_LK.php b/apps/files_sharing/l10n/si_LK.php index e840138564..5d3c0d0bed 100644 --- a/apps/files_sharing/l10n/si_LK.php +++ b/apps/files_sharing/l10n/si_LK.php @@ -1,11 +1,5 @@ "මුර පදය", -"%s shared the folder %s with you" => "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය", -"%s shared the file %s with you" => "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය", -"Download" => "බාන්න", -"Upload" => "උඩුගත කරන්න", -"Cancel upload" => "උඩුගත කිරීම අත් හරින්න", -"No preview available for" => "පූර්වදර්ශනයක් නොමැත" +"Password" => "මුර පදය" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php index 4ea8cbdd77..b742928dbd 100644 --- a/apps/files_sharing/l10n/sk_SK.php +++ b/apps/files_sharing/l10n/sk_SK.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "linke vypršala platnosť", "sharing is disabled" => "zdieľanie je zakázané", "For more info, please ask the person who sent this link." => "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz.", -"%s shared the folder %s with you" => "%s zdieľa s vami priečinok %s", -"%s shared the file %s with you" => "%s zdieľa s vami súbor %s", -"Download" => "Sťahovanie", -"Upload" => "Nahrať", -"Cancel upload" => "Zrušiť nahrávanie", -"No preview available for" => "Žiaden náhľad k dispozícii pre", "Direct link" => "Priama linka" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index d5ef46e180..81da15fd2a 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "povezava je pretekla,", "sharing is disabled" => "souporaba je onemogočena.", "For more info, please ask the person who sent this link." => "Za več podrobnosti stopite v stik s pošiljateljem te povezave.", -"%s shared the folder %s with you" => "Oseba %s je določila mapo %s za souporabo", -"%s shared the file %s with you" => "Oseba %s je določila datoteko %s za souporabo", -"Download" => "Prejmi", -"Upload" => "Pošlji", -"Cancel upload" => "Prekliči pošiljanje", -"No preview available for" => "Predogled ni na voljo za", "Direct link" => "Neposredna povezava" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_sharing/l10n/sq.php b/apps/files_sharing/l10n/sq.php index 473049f75e..b1db4d5c54 100644 --- a/apps/files_sharing/l10n/sq.php +++ b/apps/files_sharing/l10n/sq.php @@ -1,5 +1,6 @@ "Kjo pjesë është e mbrojtur me fjalëkalim", "The password is wrong. Try again." => "Kodi është i gabuar. Provojeni përsëri.", "Password" => "Kodi", "Sorry, this link doesn’t seem to work anymore." => "Ju kërkojmë ndjesë, kjo lidhje duket sikur nuk punon më.", @@ -8,11 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "lidhja ka skaduar", "sharing is disabled" => "ndarja është çaktivizuar", "For more info, please ask the person who sent this link." => "Për më shumë informacione, ju lutem pyesni personin që iu dërgoi këtë lidhje.", -"%s shared the folder %s with you" => "%s ndau me ju dosjen %s", -"%s shared the file %s with you" => "%s ndau me ju skedarin %s", -"Download" => "Shkarko", -"Upload" => "Ngarko", -"Cancel upload" => "Anulo ngarkimin", -"No preview available for" => "Shikimi paraprak nuk është i mundur për" +"Direct link" => "Lidhje direkte" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/sr.php b/apps/files_sharing/l10n/sr.php index e484ad25eb..bc963ac87b 100644 --- a/apps/files_sharing/l10n/sr.php +++ b/apps/files_sharing/l10n/sr.php @@ -1,8 +1,5 @@ "Лозинка", -"Download" => "Преузми", -"Upload" => "Отпреми", -"Cancel upload" => "Прекини отпремање" +"Password" => "Лозинка" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/sr@latin.php b/apps/files_sharing/l10n/sr@latin.php index 08463e1510..7d5ba12c6e 100644 --- a/apps/files_sharing/l10n/sr@latin.php +++ b/apps/files_sharing/l10n/sr@latin.php @@ -1,7 +1,5 @@ "Lozinka", -"Download" => "Preuzmi", -"Upload" => "Pošalji" +"Password" => "Lozinka" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index 055ef552d6..23bc935a09 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "giltighet för länken har gått ut", "sharing is disabled" => "delning är inaktiverat", "For more info, please ask the person who sent this link." => "För mer information, kontakta den person som skickade den här länken.", -"%s shared the folder %s with you" => "%s delade mappen %s med dig", -"%s shared the file %s with you" => "%s delade filen %s med dig", -"Download" => "Ladda ner", -"Upload" => "Ladda upp", -"Cancel upload" => "Avbryt uppladdning", -"No preview available for" => "Ingen förhandsgranskning tillgänglig för", "Direct link" => "Direkt länk" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ta_LK.php b/apps/files_sharing/l10n/ta_LK.php index 90a2fb417f..ded8552b1a 100644 --- a/apps/files_sharing/l10n/ta_LK.php +++ b/apps/files_sharing/l10n/ta_LK.php @@ -1,11 +1,5 @@ "கடவுச்சொல்", -"%s shared the folder %s with you" => "%s கோப்புறையானது %s உடன் பகிரப்பட்டது", -"%s shared the file %s with you" => "%s கோப்பானது %s உடன் பகிரப்பட்டது", -"Download" => "பதிவிறக்குக", -"Upload" => "பதிவேற்றுக", -"Cancel upload" => "பதிவேற்றலை இரத்து செய்க", -"No preview available for" => "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" +"Password" => "கடவுச்சொல்" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index e192e0a97c..06d1b3db6c 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -1,11 +1,5 @@ "รหัสผ่าน", -"%s shared the folder %s with you" => "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ", -"%s shared the file %s with you" => "%s ได้แชร์ไฟล์ %s ให้กับคุณ", -"Download" => "ดาวน์โหลด", -"Upload" => "อัพโหลด", -"Cancel upload" => "ยกเลิกการอัพโหลด", -"No preview available for" => "ไม่สามารถดูตัวอย่างได้สำหรับ" +"Password" => "รหัสผ่าน" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/tr.php b/apps/files_sharing/l10n/tr.php index 22fe8ed020..808f08c83a 100644 --- a/apps/files_sharing/l10n/tr.php +++ b/apps/files_sharing/l10n/tr.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "bağlantı süresi dolmuş", "sharing is disabled" => "paylaşım devre dışı", "For more info, please ask the person who sent this link." => "Daha fazla bilgi için bu bağlantıyı aldığınız kişi ile iletişime geçin.", -"%s shared the folder %s with you" => "%s, %s klasörünü sizinle paylaştı", -"%s shared the file %s with you" => "%s, %s dosyasını sizinle paylaştı", -"Download" => "İndir", -"Upload" => "Yükle", -"Cancel upload" => "Yüklemeyi iptal et", -"No preview available for" => "Kullanılabilir önizleme yok", "Direct link" => "Doğrudan bağlantı" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/ug.php b/apps/files_sharing/l10n/ug.php index 6ffa02f734..9de4178691 100644 --- a/apps/files_sharing/l10n/ug.php +++ b/apps/files_sharing/l10n/ug.php @@ -1,8 +1,5 @@ "ئىم", -"Download" => "چۈشۈر", -"Upload" => "يۈكلە", -"Cancel upload" => "يۈكلەشتىن ۋاز كەچ" +"Password" => "ئىم" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/uk.php b/apps/files_sharing/l10n/uk.php index 842b4b8d96..a627a9cd96 100644 --- a/apps/files_sharing/l10n/uk.php +++ b/apps/files_sharing/l10n/uk.php @@ -9,12 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "посилання застаріло", "sharing is disabled" => "обмін заборонений", "For more info, please ask the person who sent this link." => "Для отримання додаткової інформації, будь ласка, зверніться до особи, яка надіслала це посилання.", -"%s shared the folder %s with you" => "%s опублікував каталог %s для Вас", -"%s shared the file %s with you" => "%s опублікував файл %s для Вас", -"Download" => "Завантажити", -"Upload" => "Вивантажити", -"Cancel upload" => "Перервати завантаження", -"No preview available for" => "Попередній перегляд недоступний для", "Direct link" => "Пряме посилання" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/vi.php b/apps/files_sharing/l10n/vi.php index 4566d3744d..d2a64dcb81 100644 --- a/apps/files_sharing/l10n/vi.php +++ b/apps/files_sharing/l10n/vi.php @@ -1,11 +1,5 @@ "Mật khẩu", -"%s shared the folder %s with you" => "%s đã chia sẻ thư mục %s với bạn", -"%s shared the file %s with you" => "%s đã chia sẻ tập tin %s với bạn", -"Download" => "Tải về", -"Upload" => "Tải lên", -"Cancel upload" => "Hủy upload", -"No preview available for" => "Không có xem trước cho" +"Password" => "Mật khẩu" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_CN.php b/apps/files_sharing/l10n/zh_CN.php index 956c161b48..7261aa62fe 100644 --- a/apps/files_sharing/l10n/zh_CN.php +++ b/apps/files_sharing/l10n/zh_CN.php @@ -1,5 +1,6 @@ "这是一个密码保护的共享", "The password is wrong. Try again." => "用户名或密码错误!请重试", "Password" => "密码", "Sorry, this link doesn’t seem to work anymore." => "抱歉,此链接已失效", @@ -8,11 +9,6 @@ $TRANSLATIONS = array( "the link expired" => "链接过期", "sharing is disabled" => "共享已禁用", "For more info, please ask the person who sent this link." => "欲知详情,请联系发给你链接的人。", -"%s shared the folder %s with you" => "%s与您共享了%s文件夹", -"%s shared the file %s with you" => "%s与您共享了%s文件", -"Download" => "下载", -"Upload" => "上传", -"Cancel upload" => "取消上传", -"No preview available for" => "没有预览" +"Direct link" => "直接链接" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_HK.php b/apps/files_sharing/l10n/zh_HK.php index 434420264e..5904309749 100644 --- a/apps/files_sharing/l10n/zh_HK.php +++ b/apps/files_sharing/l10n/zh_HK.php @@ -1,7 +1,5 @@ "密碼", -"Download" => "下載", -"Upload" => "上傳" +"Password" => "密碼" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_TW.php b/apps/files_sharing/l10n/zh_TW.php index 3854b7ae58..9e0ee80d45 100644 --- a/apps/files_sharing/l10n/zh_TW.php +++ b/apps/files_sharing/l10n/zh_TW.php @@ -8,12 +8,6 @@ $TRANSLATIONS = array( "the item was removed" => "項目已經移除", "the link expired" => "連結過期", "sharing is disabled" => "分享功能已停用", -"For more info, please ask the person who sent this link." => "請詢問告訴您此連結的人以瞭解更多", -"%s shared the folder %s with you" => "%s 和您分享了資料夾 %s ", -"%s shared the file %s with you" => "%s 和您分享了檔案 %s", -"Download" => "下載", -"Upload" => "上傳", -"Cancel upload" => "取消上傳", -"No preview available for" => "無法預覽" +"For more info, please ask the person who sent this link." => "請詢問告訴您此連結的人以瞭解更多" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/de_AT.php b/apps/files_trashbin/l10n/de_AT.php index 0acad00e8b..afa3eff001 100644 --- a/apps/files_trashbin/l10n/de_AT.php +++ b/apps/files_trashbin/l10n/de_AT.php @@ -1,6 +1,5 @@ array("",""), -"_%n file_::_%n files_" => array("","") +"Delete" => "Löschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/es_CL.php b/apps/files_trashbin/l10n/es_CL.php new file mode 100644 index 0000000000..45584ff7c4 --- /dev/null +++ b/apps/files_trashbin/l10n/es_CL.php @@ -0,0 +1,5 @@ + "Error" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/eu_ES.php b/apps/files_trashbin/l10n/eu_ES.php new file mode 100644 index 0000000000..8612c8609b --- /dev/null +++ b/apps/files_trashbin/l10n/eu_ES.php @@ -0,0 +1,5 @@ + "Ezabatu" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index d0bcb327d4..4569dea7a8 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "לא ניתן למחוק את %s לצמיתות", "Couldn't restore %s" => "לא ניתן לשחזר את %s", "Error" => "שגיאה", +"restored" => "שוחזר", "Nothing in here. Your trash bin is empty!" => "אין כאן שום דבר. סל המיחזור שלך ריק!", "Name" => "שם", "Restore" => "שחזור", diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index 8d896625b5..d45ca84790 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -1,7 +1,7 @@ "%s を完全に削除出来ませんでした", -"Couldn't restore %s" => "%s を復元出来ませんでした", +"Couldn't delete %s permanently" => "%s を完全に削除できませんでした", +"Couldn't restore %s" => "%s を復元できませんでした", "Error" => "エラー", "restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", diff --git a/apps/files_trashbin/l10n/km.php b/apps/files_trashbin/l10n/km.php index f7d9faa38c..1df805de2d 100644 --- a/apps/files_trashbin/l10n/km.php +++ b/apps/files_trashbin/l10n/km.php @@ -1,5 +1,8 @@ "កំហុស", +"Name" => "ឈ្មោះ", +"Restore" => "ស្ដារ​មក​វិញ", "Delete" => "លុប" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index eb917e3dde..c438bb441f 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -3,11 +3,12 @@ $TRANSLATIONS = array( "Couldn't delete %s permanently" => "Kunne ikke slette %s fullstendig", "Couldn't restore %s" => "Kunne ikke gjenopprette %s", "Error" => "Feil", +"restored" => "gjenopprettet", "Nothing in here. Your trash bin is empty!" => "Ingenting her. Søppelkassen din er tom!", "Name" => "Navn", "Restore" => "Gjenopprett", "Deleted" => "Slettet", "Delete" => "Slett", -"Deleted Files" => "Slettet filer" +"Deleted Files" => "Slettede filer" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index c5e899392b..4b3455dba4 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -1,8 +1,9 @@ "Không thể óa %s vĩnh viễn", +"Couldn't delete %s permanently" => "Không thể xóa %s vĩnh viễn", "Couldn't restore %s" => "Không thể khôi phục %s", "Error" => "Lỗi", +"restored" => "khôi phục", "Nothing in here. Your trash bin is empty!" => "Không có gì ở đây. Thùng rác của bạn rỗng!", "Name" => "Tên", "Restore" => "Khôi phục", diff --git a/apps/files_versions/l10n/km.php b/apps/files_versions/l10n/km.php new file mode 100644 index 0000000000..3673d002a7 --- /dev/null +++ b/apps/files_versions/l10n/km.php @@ -0,0 +1,10 @@ + "មិន​អាច​ត្រឡប់៖ %s", +"Versions" => "កំណែ", +"Failed to revert {file} to revision {timestamp}." => "មិន​អាច​ត្រឡប់ {file} ទៅ​កំណែ​សម្រួល {timestamp} បាន​ទេ។", +"More versions..." => "កំណែ​ច្រើន​ទៀត...", +"No other versions available" => "មិន​មាន​កំណែ​ផ្សេង​ទៀត​ទេ", +"Restore" => "ស្ដារ​មក​វិញ" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/nb_NO.php b/apps/files_versions/l10n/nb_NO.php index 2a0a6d8a76..4c0c8c65ba 100644 --- a/apps/files_versions/l10n/nb_NO.php +++ b/apps/files_versions/l10n/nb_NO.php @@ -1,6 +1,10 @@ "Klarte ikke å tilbakeføre: %s", "Versions" => "Versjoner", +"Failed to revert {file} to revision {timestamp}." => "Klarte ikke å tilbakeføre {file} til revisjon {timestamp}.", +"More versions..." => "Flere versjoner", +"No other versions available" => "Det finnes ingen andre versjoner", "Restore" => "Gjenopprett" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/sq.php b/apps/files_versions/l10n/sq.php index 5a7a23a217..e8a0e79748 100644 --- a/apps/files_versions/l10n/sq.php +++ b/apps/files_versions/l10n/sq.php @@ -1,5 +1,10 @@ "Nuk mund të ktheje: %s", +"Versions" => "Versioni", +"Failed to revert {file} to revision {timestamp}." => "Dështoi në ktheje {skedar} të rishikimit {kohëstampe}.", +"More versions..." => "Versione m'shumë...", +"No other versions available" => "Nuk ka versione të tjera në dispozicion", "Restore" => "Rivendos" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/vi.php b/apps/files_versions/l10n/vi.php index 9d72612c2a..a6f515ed0a 100644 --- a/apps/files_versions/l10n/vi.php +++ b/apps/files_versions/l10n/vi.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "Không thể khôi phục: %s", "Versions" => "Phiên bản", +"Failed to revert {file} to revision {timestamp}." => "Thất bại khi trở lại {file} khi sử đổi {timestamp}.", +"More versions..." => "Nhiều phiên bản ...", +"No other versions available" => "Không có các phiên bản khác có sẵn", "Restore" => "Khôi phục" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/zh_CN.php b/apps/files_versions/l10n/zh_CN.php index 767ca1cf64..279ec2eff8 100644 --- a/apps/files_versions/l10n/zh_CN.php +++ b/apps/files_versions/l10n/zh_CN.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "无法恢复: %s", "Versions" => "版本", +"Failed to revert {file} to revision {timestamp}." => "无法恢复 {file} 到 {timestamp} 的版本。", +"More versions..." => "更多版本...", +"No other versions available" => "无其他版本可用", "Restore" => "恢复" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 2ebaa7d7a5..0a012b78e9 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Desa", "Test Configuration" => "Comprovació de la configuració", "Help" => "Ajuda", -"Limit the access to %s to groups meeting this criteria:" => "Limita l'accés a %s grups que compleixin amb el criteri:", "only those object classes:" => "només aquestes classes d'objecte:", "only from those groups:" => "només d'aquests grups", "Edit raw filter instead" => "Edita filtre raw", "Raw LDAP filter" => "Filtre raw LDAP", "The filter specifies which LDAP groups shall have access to the %s instance." => "El filtre especifica quins grups LDAP haurien de tenir accés a la instància %s.", "groups found" => "grups trobats", -"What attribute shall be used as login name:" => "Quin atribut s'hauria d'utilitzar com a nom per a l'acreditació:", "LDAP Username:" => "Nom d'usuari LDAP:", "LDAP Email Address:" => "Adreça de correu electrònic LDAP:", "Other Attributes:" => "Altres atributs:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Per un accés anònim, deixeu la DN i la contrasenya en blanc.", "One Base DN per line" => "Una DN Base per línia", "You can specify Base DN for users and groups in the Advanced tab" => "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat", -"Limit the access to %s to users meeting this criteria:" => "Limita l'accés a %s usuaris que compleixin amb el criteri:", "The filter specifies which LDAP users shall have access to the %s instance." => "El filtre especifica quins usuaris LDAP haurien de tenir accés a la instància %s", "users found" => "usuaris trobats", "Back" => "Enrera", diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 6bcf364ab3..930a4b1064 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Uložit", "Test Configuration" => "Vyzkoušet nastavení", "Help" => "Nápověda", -"Limit the access to %s to groups meeting this criteria:" => "Omezit přístup k %s skupinám uživatelů splňujícím tyto podmínky:", "only those object classes:" => "pouze tyto objektové třídy:", "only from those groups:" => "pouze z těchto skupin:", "Edit raw filter instead" => "Edituj filtr přímo", "Raw LDAP filter" => "Původní filtr LDAP", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filtr určuje, kteří uživatelé LDAP mají mít přístup k instanci %s.", "groups found" => "nalezené skupiny", -"What attribute shall be used as login name:" => "Který atribut má být použit jako přihlašovací jméno:", "LDAP Username:" => "LDAP uživatelské jméno:", "LDAP Email Address:" => "LDAP e-mailová adresa:", "Other Attributes:" => "Další atributy:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Pro anonymní přístup ponechte údaje DN and heslo prázdné.", "One Base DN per line" => "Jedna základní DN na řádku", "You can specify Base DN for users and groups in the Advanced tab" => "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny", -"Limit the access to %s to users meeting this criteria:" => "Omezit přístup k %s uživatelům splňujícím tyto podmínky:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filtr určuje, kteří uživatelé LDAP mají mít přístup k instanci %s.", "users found" => "nalezení uživatelé", "Back" => "Zpět", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index 0c80ecfa85..8663777adb 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Speichern", "Test Configuration" => "Testkonfiguration", "Help" => "Hilfe", -"Limit the access to %s to groups meeting this criteria:" => "Beschränke den Zugriff auf %s auf Gruppen, die die folgenden Kriterien erfüllen:", "only those object classes:" => "Nur diese Objekt-Klassen:", "only from those groups:" => "Nur von diesen Gruppen:", "Edit raw filter instead" => "Original-Filter stattdessen bearbeiten", "Raw LDAP filter" => "Original LDAP-Filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Der Filter definiert welche LDAP-Gruppen Zugriff auf die %s Instanz haben sollen.", "groups found" => "Gruppen gefunden", -"What attribute shall be used as login name:" => "Welches Attribut soll als Login-Name verwendet werden:", "LDAP Username:" => "LDAP-Benutzername:", "LDAP Email Address:" => "LDAP E-Mail-Adresse:", "Other Attributes:" => "Andere Attribute:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Lasse die Felder DN und Passwort für anonymen Zugang leer.", "One Base DN per line" => "Ein Basis-DN pro Zeile", "You can specify Base DN for users and groups in the Advanced tab" => "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren", -"Limit the access to %s to users meeting this criteria:" => "Beschränke den Zugriff auf %s auf Benutzer, die die folgenden Kriterien erfüllen:", "The filter specifies which LDAP users shall have access to the %s instance." => "Der Filter definiert welche LDAP-Benutzer Zugriff auf die %s Instanz haben sollen.", "users found" => "Benutzer gefunden", "Back" => "Zurück", diff --git a/apps/user_ldap/l10n/de_AT.php b/apps/user_ldap/l10n/de_AT.php index 3a1e002311..a4e97dfcad 100644 --- a/apps/user_ldap/l10n/de_AT.php +++ b/apps/user_ldap/l10n/de_AT.php @@ -1,6 +1,9 @@ "Löschen fehlgeschlagen", "_%s group found_::_%s groups found_" => array("",""), -"_%s user found_::_%s users found_" => array("","") +"_%s user found_::_%s users found_" => array("",""), +"Save" => "Speichern", +"Password" => "Passwort" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 168f1fe059..62cdb21bb9 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Speichern", "Test Configuration" => "Testkonfiguration", "Help" => "Hilfe", -"Limit the access to %s to groups meeting this criteria:" => "Beschränke den Zugriff auf %s auf Gruppen, die die folgenden Kriterien erfüllen:", "only those object classes:" => "Nur diese Objekt-Klassen:", "only from those groups:" => "Nur von diesen Gruppen:", "Edit raw filter instead" => "Original-Filter stattdessen bearbeiten", "Raw LDAP filter" => "Original LDAP-Filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Der Filter definiert welche LDAP-Gruppen Zugriff auf die %s Instanz haben sollen.", "groups found" => "Gruppen gefunden", -"What attribute shall be used as login name:" => "Welches Attribut soll als Login-Name verwendet werden:", "LDAP Username:" => "LDAP-Benutzername:", "LDAP Email Address:" => "LDAP E-Mail-Adresse:", "Other Attributes:" => "Andere Attribute:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer.", "One Base DN per line" => "Ein Basis-DN pro Zeile", "You can specify Base DN for users and groups in the Advanced tab" => "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter konfigurieren", -"Limit the access to %s to users meeting this criteria:" => "Beschränke den Zugriff auf %s auf Benutzer, die die folgenden Kriterien erfüllen:", "The filter specifies which LDAP users shall have access to the %s instance." => "Der Filter definiert welche LDAP-Benutzer Zugriff auf die %s Instanz haben sollen.", "users found" => "Benutzer gefunden", "Back" => "Zurück", diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 8369dff489..1e97591195 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -8,6 +8,7 @@ $TRANSLATIONS = array( "No action specified" => "Καμμία εντολή δεν προσδιορίστηκε", "No configuration specified" => "Καμμία διαμόρφωση δεν προσδιορίστηκε", "No data specified" => "Δεν προσδιορίστηκαν δεδομένα", +" Could not set configuration %s" => "Αδυναμία ρύθμισης %s", "Deletion failed" => "Η διαγραφή απέτυχε", "Take over settings from recent server configuration?" => "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?", "Keep settings?" => "Διατήρηση ρυθμίσεων;", @@ -32,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Αποθήκευση", "Test Configuration" => "Δοκιμαστικες ρυθμισεις", "Help" => "Βοήθεια", -"Limit the access to %s to groups meeting this criteria:" => "Περιορισμός πρόσβασης %s σε ομάδες που ταιριάζουν αυτά τα κριτήρια:", "only those object classes:" => "μόνο αυτές οι κλάσεις αντικειμένων:", "only from those groups:" => "μόνο από αυτές τις ομάδες:", "Edit raw filter instead" => "Επεξεργασία πρωτογενούς φίλτρου αντί αυτού", "Raw LDAP filter" => "Πρωτογενές φίλτρο ", "The filter specifies which LDAP groups shall have access to the %s instance." => "Το φίλτρο καθορίζει ποιες ομάδες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s.", "groups found" => "ομάδες βρέθηκαν", -"What attribute shall be used as login name:" => "Ποια ιδιότητα θα χρησιμοποιηθεί ως όνομα σύνδεσης:", "LDAP Username:" => "Όνομα χρήστη LDAP:", "LDAP Email Address:" => "Διεύθυνση ηλ. ταχυδρομείου LDAP:", "Other Attributes:" => "Άλλες Ιδιότητες:", @@ -54,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Για ανώνυμη πρόσβαση, αφήστε κενά τα πεδία DN και Pasword.", "One Base DN per line" => "Ένα DN Βάσης ανά γραμμή ", "You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις", -"Limit the access to %s to users meeting this criteria:" => "Περιορισμός πρόσβασης %s σε χρήστες που ταιριάζουν αυτά τα κριτήρια:", "The filter specifies which LDAP users shall have access to the %s instance." => "Το φίλτρο καθορίζει ποιοι χρήστες LDAP θα έχουν πρόσβαση στην εγκατάσταση %s.", "users found" => "χρήστες βρέθηκαν", "Back" => "Επιστροφή", @@ -68,6 +66,7 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Δώστε μια προαιρετική εφεδρική υποδοχή. Πρέπει να είναι ένα αντίγραφο του κύριου LDAP / AD διακομιστη.", "Backup (Replica) Port" => "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη", "Disable Main Server" => "Απενεργοποιηση του κεντρικου διακομιστη", +"Only connect to the replica server." => "Σύνδεση μόνο με το διακομιστή-αντίγραφο.", "Case insensitve LDAP server (Windows)" => "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ", "Turn off SSL certificate validation." => "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Δεν προτείνεται, χρησιμοποιείστε το μόνο για δοκιμές! Εάν η σύνδεση λειτουργεί μόνο με αυτή την επιλογή, εισάγετε το πιστοποιητικό SSL του διακομιστή LDAP στο %s διακομιστή σας.", diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index b83229d5a5..3fda60c650 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Save", "Test Configuration" => "Test Configuration", "Help" => "Help", -"Limit the access to %s to groups meeting this criteria:" => "Limit the access to %s to groups meeting this criteria:", "only those object classes:" => "only those object classes:", "only from those groups:" => "only from those groups:", "Edit raw filter instead" => "Edit raw filter instead", "Raw LDAP filter" => "Raw LDAP filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "The filter specifies which LDAP groups shall have access to the %s instance.", "groups found" => "groups found", -"What attribute shall be used as login name:" => "What attribute should be used as login name:", "LDAP Username:" => "LDAP Username:", "LDAP Email Address:" => "LDAP Email Address:", "Other Attributes:" => "Other Attributes:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "For anonymous access, leave DN and Password empty.", "One Base DN per line" => "One Base DN per line", "You can specify Base DN for users and groups in the Advanced tab" => "You can specify Base DN for users and groups in the Advanced tab", -"Limit the access to %s to users meeting this criteria:" => "Limit the access to %s to users meeting this criteria:", "The filter specifies which LDAP users shall have access to the %s instance." => "The filter specifies which LDAP users shall have access to the %s instance.", "users found" => "users found", "Back" => "Back", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 3348003e3e..5ca2d41e69 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -16,7 +16,7 @@ $TRANSLATIONS = array( "mappings cleared" => "Asignaciones borradas", "Success" => "Éxito", "Error" => "Error", -"Configuration OK" => "Configuración OK", +"Configuration OK" => "Configuración Correcta", "Configuration incorrect" => "Configuración Incorrecta", "Configuration incomplete" => "Configuración incompleta", "Select groups" => "Seleccionar grupos", @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Guardar", "Test Configuration" => "Configuración de prueba", "Help" => "Ayuda", -"Limit the access to %s to groups meeting this criteria:" => "Limitar el acceso a %s a los grupos que cumplan este criterio:", "only those object classes:" => "solamente de estas clases de objeto:", "only from those groups:" => "solamente de estos grupos:", "Edit raw filter instead" => "Editar el filtro en bruto en su lugar", "Raw LDAP filter" => "Filtro LDAP en bruto", "The filter specifies which LDAP groups shall have access to the %s instance." => "El filtro especifica que grupos LDAP tendrán acceso a %s.", "groups found" => "grupos encontrados", -"What attribute shall be used as login name:" => "Que atributo debe ser usado como login:", "LDAP Username:" => "Nombre de usuario LDAP:", "LDAP Email Address:" => "Dirección e-mail LDAP:", "Other Attributes:" => "Otros atributos:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Para acceso anónimo, deje DN y contraseña vacíos.", "One Base DN per line" => "Un DN Base por línea", "You can specify Base DN for users and groups in the Advanced tab" => "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado", -"Limit the access to %s to users meeting this criteria:" => "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:", "The filter specifies which LDAP users shall have access to the %s instance." => "El filtro especifica que usuarios LDAP pueden tener acceso a %s.", "users found" => "usuarios encontrados", "Back" => "Atrás", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 3a8f42e2c9..6323fe0c4a 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -4,6 +4,11 @@ $TRANSLATIONS = array( "Failed to delete the server configuration" => "Fallo al borrar la configuración del servidor", "The configuration is valid and the connection could be established!" => "La configuración es válida y la conexión pudo ser establecida.", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuración es válida, pero el enlace falló. Por favor, comprobá la configuración del servidor y las credenciales.", +"The configuration is invalid. Please have a look at the logs for further details." => "La configuración es inválida. Por favor, verifique los logs para más detalles.", +"No action specified" => "No se ha especificado una acción", +"No configuration specified" => "No se ha especificado una configuración", +"No data specified" => "No se ha especificado datos", +" Could not set configuration %s" => "No se pudo asignar la configuración %s", "Deletion failed" => "Error al borrar", "Take over settings from recent server configuration?" => "Tomar los valores de la anterior configuración de servidor?", "Keep settings?" => "¿Mantener preferencias?", @@ -11,16 +16,32 @@ $TRANSLATIONS = array( "mappings cleared" => "Asignaciones borradas", "Success" => "Éxito", "Error" => "Error", +"Configuration OK" => "Configuración válida", +"Configuration incorrect" => "Configuración incorrecta", +"Configuration incomplete" => "Configuración incompleta", "Select groups" => "Seleccionar grupos", +"Select object classes" => "Seleccionar las clases de objetos", +"Select attributes" => "Seleccionar atributos", "Connection test succeeded" => "El este de conexión ha sido completado satisfactoriamente", "Connection test failed" => "Falló es test de conexión", "Do you really want to delete the current Server Configuration?" => "¿Realmente desea borrar la configuración actual del servidor?", "Confirm Deletion" => "Confirmar borrado", -"_%s group found_::_%s groups found_" => array("",""), -"_%s user found_::_%s users found_" => array("",""), +"_%s group found_::_%s groups found_" => array("%s grupo encontrado","%s grupos encontrados"), +"_%s user found_::_%s users found_" => array("%s usuario encontrado","%s usuarios encontrados"), +"Invalid Host" => "Host inválido", +"Could not find the desired feature" => "No se pudo encontrar la característica deseada", "Save" => "Guardar", "Test Configuration" => "Probar configuración", "Help" => "Ayuda", +"only those object classes:" => "solo estos objetos de clases:", +"only from those groups:" => "solo provenientes de estos grupos:", +"Edit raw filter instead" => "Editar filtro en bruto", +"Raw LDAP filter" => "Filtro LDAP en bruto", +"The filter specifies which LDAP groups shall have access to the %s instance." => "El filtro especifica qué grupos LDAP deben tener acceso a la instancia %s.", +"groups found" => "grupos encontrados", +"LDAP Username:" => "Nombre de usuario LDAP:", +"LDAP Email Address:" => "Correo electrónico LDAP:", +"Other Attributes:" => "Otros atributos:", "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Define el filtro a aplicar cuando se intenta ingresar. %%uid remplaza el nombre de usuario en el proceso de identificación. Por ejemplo: \"uid=%%uid\"", "Add Server Configuration" => "Añadir Configuración del Servidor", "Host" => "Servidor", @@ -32,7 +53,10 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Para acceso anónimo, dejá DN y contraseña vacíos.", "One Base DN per line" => "Una DN base por línea", "You can specify Base DN for users and groups in the Advanced tab" => "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"", +"The filter specifies which LDAP users shall have access to the %s instance." => "El filtro especifica cuáles usuarios LDAP deben tener acceso a la instancia %s.", +"users found" => "usuarios encontrados", "Back" => "Volver", +"Continue" => "Continuar", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede ser que experimentes comportamientos inesperados. Pedile al administrador que desactive uno de ellos.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Atención: El módulo PHP LDAP no está instalado, este elemento no va a funcionar. Por favor, pedile al administrador que lo instale.", "Connection Settings" => "Configuración de Conección", diff --git a/apps/user_ldap/l10n/es_CL.php b/apps/user_ldap/l10n/es_CL.php index b3522617b4..40fa5aad8e 100644 --- a/apps/user_ldap/l10n/es_CL.php +++ b/apps/user_ldap/l10n/es_CL.php @@ -1,5 +1,6 @@ "Error", "_%s group found_::_%s groups found_" => array("",""), "_%s user found_::_%s users found_" => array("",""), "Password" => "Clave" diff --git a/apps/user_ldap/l10n/es_MX.php b/apps/user_ldap/l10n/es_MX.php index 16aaa91fd5..09c99209a5 100644 --- a/apps/user_ldap/l10n/es_MX.php +++ b/apps/user_ldap/l10n/es_MX.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Guardar", "Test Configuration" => "Configuración de prueba", "Help" => "Ayuda", -"Limit the access to %s to groups meeting this criteria:" => "Limitar el acceso a %s a los grupos que cumplan este criterio:", "only those object classes:" => "solamente de estas clases de objeto:", "only from those groups:" => "solamente de estos grupos:", "Edit raw filter instead" => "Editar el filtro en bruto en su lugar", "Raw LDAP filter" => "Filtro LDAP en bruto", "The filter specifies which LDAP groups shall have access to the %s instance." => "El filtro especifica que grupos LDAP tendrán acceso a %s.", "groups found" => "grupos encontrados", -"What attribute shall be used as login name:" => "Que atributo debe ser usado como login:", "LDAP Username:" => "Nombre de usuario LDAP:", "LDAP Email Address:" => "Dirección e-mail LDAP:", "Other Attributes:" => "Otros atributos:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Para acceso anónimo, deje DN y contraseña vacíos.", "One Base DN per line" => "Un DN Base por línea", "You can specify Base DN for users and groups in the Advanced tab" => "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado", -"Limit the access to %s to users meeting this criteria:" => "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:", "The filter specifies which LDAP users shall have access to the %s instance." => "El filtro especifica que usuarios LDAP pueden tener acceso a %s.", "users found" => "usuarios encontrados", "Back" => "Atrás", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index 10f513c8b8..090accceda 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Salvesta", "Test Configuration" => "Testi seadistust", "Help" => "Abiinfo", -"Limit the access to %s to groups meeting this criteria:" => "Piira ligipääs %s grupile, mis sobivad kriteeriumiga:", "only those object classes:" => "ainult need objektiklassid:", "only from those groups:" => "ainult nendest gruppidest:", "Edit raw filter instead" => "Selle asemel muuda filtrit", "Raw LDAP filter" => "LDAP filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filter määrab millised LDAP grupid saavad ligipääsu sellele %s instantsile.", "groups found" => "gruppi leitud", -"What attribute shall be used as login name:" => "Mis atribuuti kasutada sisselogimise kasutajatunnusena:", "LDAP Username:" => "LDAP kasutajanimi:", "LDAP Email Address:" => "LDAP e-posti aadress:", "Other Attributes:" => "Muud atribuudid:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Anonüümseks ligipääsuks jäta DN ja parool tühjaks.", "One Base DN per line" => "Üks baas-DN rea kohta", "You can specify Base DN for users and groups in the Advanced tab" => "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt", -"Limit the access to %s to users meeting this criteria:" => "Piira ligipääs %s kasutajale, kes sobivad kriteeriumiga:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filter määrab millised LDAP kasutajad pääsevad ligi %s instantsile.", "users found" => "kasutajat leitud", "Back" => "Tagasi", diff --git a/apps/user_ldap/l10n/eu.php b/apps/user_ldap/l10n/eu.php index 1026e01715..a7bd52e50a 100644 --- a/apps/user_ldap/l10n/eu.php +++ b/apps/user_ldap/l10n/eu.php @@ -31,12 +31,10 @@ $TRANSLATIONS = array( "Save" => "Gorde", "Test Configuration" => "Egiaztatu Konfigurazioa", "Help" => "Laguntza", -"Limit the access to %s to groups meeting this criteria:" => "Mugatu sarrera baldintza hauek betetzen dituzten %s taldetara:", "only those object classes:" => "bakarrik objektu klase hauetakoak:", "only from those groups:" => "bakarrik talde hauetakoak:", "The filter specifies which LDAP groups shall have access to the %s instance." => "Iragazkiak zehazten du ze LDAP taldek izango duten sarrera %s instantziara:", "groups found" => "talde aurkituta", -"What attribute shall be used as login name:" => "Sarrera izen gisa erabiliko den atributua:", "LDAP Username:" => "LDAP Erabiltzaile izena:", "LDAP Email Address:" => "LDAP Eposta helbidea:", "Other Attributes:" => "Bestelako atributuak:", @@ -50,7 +48,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Sarrera anonimoak gaitzeko utzi DN eta Pasahitza hutsik.", "One Base DN per line" => "DN Oinarri bat lerroko", "You can specify Base DN for users and groups in the Advanced tab" => "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu fitxan", -"Limit the access to %s to users meeting this criteria:" => "Mugatu sarrera hurrengo baldintzak betetzen duten %s erabiltzaileei:", "The filter specifies which LDAP users shall have access to the %s instance." => "Iragazkiak zehazten du ze LDAP erabiltzailek izango duten sarrera %s instantziara:", "users found" => "erabiltzaile aurkituta", "Back" => "Atzera", diff --git a/apps/user_ldap/l10n/eu_ES.php b/apps/user_ldap/l10n/eu_ES.php new file mode 100644 index 0000000000..6dbfd1955d --- /dev/null +++ b/apps/user_ldap/l10n/eu_ES.php @@ -0,0 +1,7 @@ + array("",""), +"_%s user found_::_%s users found_" => array("",""), +"Save" => "Gorde" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index a5429130d6..fc6a0111a1 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Sauvegarder", "Test Configuration" => "Tester la configuration", "Help" => "Aide", -"Limit the access to %s to groups meeting this criteria:" => "Limiter l'accès à %s aux groupes respectant ce critère :", "only those object classes:" => "seulement ces classes d'objet :", "only from those groups:" => "seulement de ces groupes :", "Edit raw filter instead" => "Éditer le filtre raw à la place", "Raw LDAP filter" => "Filtre Raw LDAP", "The filter specifies which LDAP groups shall have access to the %s instance." => "Le filtre spécifie quels groupes LDAP doivent avoir accès à l'instance %s.", "groups found" => "groupes trouvés", -"What attribute shall be used as login name:" => "Quel attribut doit être utilisé comme nom de login:", "LDAP Username:" => "Nom d'utilisateur LDAP :", "LDAP Email Address:" => "Adresse email LDAP :", "Other Attributes:" => "Autres attributs :", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Pour un accès anonyme, laisser le DN utilisateur et le mot de passe vides.", "One Base DN per line" => "Un DN racine par ligne", "You can specify Base DN for users and groups in the Advanced tab" => "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via l'onglet Avancé", -"Limit the access to %s to users meeting this criteria:" => "Limiter l'accès à %s aux utilisateurs respectant ce critère :", "The filter specifies which LDAP users shall have access to the %s instance." => "Le filtre spécifie quels utilisateurs LDAP doivent avoir accès à l'instance %s.", "users found" => "utilisateurs trouvés", "Back" => "Retour", diff --git a/apps/user_ldap/l10n/gl.php b/apps/user_ldap/l10n/gl.php index 34e818ef95..99068e540d 100644 --- a/apps/user_ldap/l10n/gl.php +++ b/apps/user_ldap/l10n/gl.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Gardar", "Test Configuration" => "Probar a configuración", "Help" => "Axuda", -"Limit the access to %s to groups meeting this criteria:" => "Limitar o acceso a %s aos grupos que coincidan con estes criterios:", "only those object classes:" => "só as clases de obxecto:", "only from those groups:" => "só dos grupos:", "Edit raw filter instead" => "Editar, no seu canto, o filtro en bruto", "Raw LDAP filter" => "Filtro LDAP en bruto", "The filter specifies which LDAP groups shall have access to the %s instance." => "O filtro especifica que grupos LDAP teñen acceso á instancia %s.", "groups found" => "atopáronse grupos", -"What attribute shall be used as login name:" => "Atributo que utilizar como nome de usuario:", "LDAP Username:" => "Nome de usuario LDAP:", "LDAP Email Address:" => "Enderezo de correo LDAP:", "Other Attributes:" => "Outros atributos:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Para o acceso anónimo deixe o DN e o contrasinal baleiros.", "One Base DN per line" => "Un DN base por liña", "You can specify Base DN for users and groups in the Advanced tab" => "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzado»", -"Limit the access to %s to users meeting this criteria:" => "Limitar o acceso a %s aos usuarios que coincidan con estes criterios:", "The filter specifies which LDAP users shall have access to the %s instance." => "O filtro especifica que usuarios LDAP teñen acceso á instancia %s.", "users found" => "atopáronse usuarios", "Back" => "Atrás", diff --git a/apps/user_ldap/l10n/hu_HU.php b/apps/user_ldap/l10n/hu_HU.php index 2799d0407c..277ae96fcd 100644 --- a/apps/user_ldap/l10n/hu_HU.php +++ b/apps/user_ldap/l10n/hu_HU.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Mentés", "Test Configuration" => "A beállítások tesztelése", "Help" => "Súgó", -"Limit the access to %s to groups meeting this criteria:" => "Korlátozzuk %s elérését a következő feltételeknek megfelelő csoportokra:", "only those object classes:" => "csak ezek az objektumosztályok:", "only from those groups:" => "csak ezek a csoportok:", "Edit raw filter instead" => "Inkább közvetlenül megadom a szűrési kifejezést:", "Raw LDAP filter" => "Az LDAP szűrőkifejezés", "The filter specifies which LDAP groups shall have access to the %s instance." => "A szűrő meghatározza, hogy mely LDAP csoportok lesznek jogosultak %s elérésére.", "groups found" => "csoport van", -"What attribute shall be used as login name:" => "Melyik attribútumot használjuk login névként:", "LDAP Username:" => "LDAP felhasználónév:", "LDAP Email Address:" => "LDAP e-mail cím:", "Other Attributes:" => "Más attribútumok:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Bejelentkezés nélküli eléréshez ne töltse ki a DN és Jelszó mezőket!", "One Base DN per line" => "Soronként egy DN-gyökér", "You can specify Base DN for users and groups in the Advanced tab" => "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasználók és a csoportok számára", -"Limit the access to %s to users meeting this criteria:" => "Korlátozzuk %s elérését a következő feltételeknek megfelelő felhasználókra:", "The filter specifies which LDAP users shall have access to the %s instance." => "A szűrő meghatározza, hogy mely LDAP felhasználók lesznek jogosultak %s elérésére.", "users found" => "felhasználó van", "Back" => "Vissza", diff --git a/apps/user_ldap/l10n/it.php b/apps/user_ldap/l10n/it.php index f5e53bdbe9..851a3281d3 100644 --- a/apps/user_ldap/l10n/it.php +++ b/apps/user_ldap/l10n/it.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Salva", "Test Configuration" => "Prova configurazione", "Help" => "Aiuto", -"Limit the access to %s to groups meeting this criteria:" => "Limita l'accesso a %s ai gruppi che verificano questi criteri:", "only those object classes:" => "solo queste classi di oggetti:", "only from those groups:" => "solo da questi gruppi:", "Edit raw filter instead" => "Modifica invece il filtro grezzo", "Raw LDAP filter" => "Filtro LDAP grezzo", "The filter specifies which LDAP groups shall have access to the %s instance." => "Il filtro specifica quali gruppi LDAP devono avere accesso all'istanza %s.", "groups found" => "gruppi trovati", -"What attribute shall be used as login name:" => "Quale attributo deve essere usato come nome di accesso:", "LDAP Username:" => "Nome utente LDAP:", "LDAP Email Address:" => "Indirizzo email LDAP:", "Other Attributes:" => "Altri attributi:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Per l'accesso anonimo, lasciare vuoti i campi DN e Password", "One Base DN per line" => "Un DN base per riga", "You can specify Base DN for users and groups in the Advanced tab" => "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Avanzate", -"Limit the access to %s to users meeting this criteria:" => "Limita l'accesso a %s ai gruppi che verificano questi criteri:", "The filter specifies which LDAP users shall have access to the %s instance." => "Il filtro specifica quali utenti LDAP devono avere accesso all'istanza %s.", "users found" => "utenti trovati", "Back" => "Indietro", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 8e98e80370..9caa42c4e1 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -1,18 +1,18 @@ "マッピングのクリアに失敗しました。", -"Failed to delete the server configuration" => "サーバ設定の削除に失敗しました", +"Failed to delete the server configuration" => "サーバー設定の削除に失敗しました", "The configuration is valid and the connection could be established!" => "設定は有効であり、接続を確立しました!", -"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "設定は有効ですが、接続に失敗しました。サーバ設定と資格情報を確認して下さい。", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "設定は有効ですが、接続に失敗しました。サーバー設定と資格情報を確認してください。", "The configuration is invalid. Please have a look at the logs for further details." => "設定が無効です。詳細はログを確認してください。", "No action specified" => "アクションが指定されていません", "No configuration specified" => "構成が指定されていません", "No data specified" => "データが指定されていません", " Could not set configuration %s" => "構成 %s を設定できませんでした", "Deletion failed" => "削除に失敗しました", -"Take over settings from recent server configuration?" => "最近のサーバ設定から設定を引き継ぎますか?", +"Take over settings from recent server configuration?" => "最近のサーバー設定から設定を引き継ぎますか?", "Keep settings?" => "設定を保持しますか?", -"Cannot add server configuration" => "サーバ設定を追加できません", +"Cannot add server configuration" => "サーバー設定を追加できません", "mappings cleared" => "マッピングをクリアしました", "Success" => "成功", "Error" => "エラー", @@ -24,40 +24,37 @@ $TRANSLATIONS = array( "Select attributes" => "属性を選択", "Connection test succeeded" => "接続テストに成功しました", "Connection test failed" => "接続テストに失敗しました", -"Do you really want to delete the current Server Configuration?" => "現在のサーバ設定を本当に削除してもよろしいですか?", +"Do you really want to delete the current Server Configuration?" => "現在のサーバー設定を本当に削除してもよろしいですか?", "Confirm Deletion" => "削除の確認", "_%s group found_::_%s groups found_" => array("%s グループが見つかりました"), -"_%s user found_::_%s users found_" => array("%s ユーザが見つかりました"), +"_%s user found_::_%s users found_" => array("%s ユーザーが見つかりました"), "Invalid Host" => "無効なホスト", "Could not find the desired feature" => "望ましい機能は見つかりませんでした", "Save" => "保存", "Test Configuration" => "設定をテスト", "Help" => "ヘルプ", -"Limit the access to %s to groups meeting this criteria:" => "この基準に合致するグループに %s へのアクセスを制限:", "only those object classes:" => "それらのオブジェクトクラスのみ:", "only from those groups:" => "それらのグループからのみ:", "Edit raw filter instead" => "フィルタを編集", "Raw LDAP filter" => "LDAP フィルタ", "The filter specifies which LDAP groups shall have access to the %s instance." => "フィルタは、どの LDAP グループが %s にアクセスするかを指定します。", "groups found" => "グループが見つかりました", -"What attribute shall be used as login name:" => "ログイン名として利用する属性:", -"LDAP Username:" => "LDAP ユーザ名:", +"LDAP Username:" => "LDAP ユーザー名:", "LDAP Email Address:" => "LDAP メールアドレス:", "Other Attributes:" => "他の属性:", -"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "ログイン実行時に適用するフィルタを定義します。%%uid にはログイン操作におけるユーザ名が入ります。例: \"uid=%%uid\"", -"Add Server Configuration" => "サーバ設定を追加", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "ログイン実行時に適用するフィルタを定義します。%%uid にはログイン操作におけるユーザー名が入ります。例: \"uid=%%uid\"", +"Add Server Configuration" => "サーバー設定を追加", "Host" => "ホスト", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。", "Port" => "ポート", -"User DN" => "ユーザDN", +"User DN" => "ユーザーDN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。", "Password" => "パスワード", "For anonymous access, leave DN and Password empty." => "匿名アクセスの場合は、DNとパスワードを空にしてください。", "One Base DN per line" => "1行に1つのベースDN", -"You can specify Base DN for users and groups in the Advanced tab" => "拡張タブでユーザとグループのベースDNを指定することができます。", -"Limit the access to %s to users meeting this criteria:" => "この基準に合致するユーザに %s へのアクセスを制限:", -"The filter specifies which LDAP users shall have access to the %s instance." => "フィルタは、どの LDAP ユーザが %s にアクセスするかを指定します。", -"users found" => "ユーザが見つかりました", +"You can specify Base DN for users and groups in the Advanced tab" => "拡張タブでユーザーとグループのベースDNを指定することができます。", +"The filter specifies which LDAP users shall have access to the %s instance." => "フィルタは、どのLDAPユーザーが %s にアクセスするかを指定します。", +"users found" => "ユーザーが見つかりました", "Back" => "戻る", "Continue" => "続ける", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。", @@ -66,21 +63,21 @@ $TRANSLATIONS = array( "Configuration Active" => "設定はアクティブです", "When unchecked, this configuration will be skipped." => "チェックを外すと、この設定はスキップされます。", "Backup (Replica) Host" => "バックアップ(レプリカ)ホスト", -"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバのレプリカである必要があります。", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバーのレプリカである必要があります。", "Backup (Replica) Port" => "バックアップ(レプリカ)ポート", -"Disable Main Server" => "メインサーバを無効にする", +"Disable Main Server" => "メインサーバーを無効にする", "Only connect to the replica server." => "レプリカサーバーにのみ接続します。", -"Case insensitve LDAP server (Windows)" => "大文字/小文字を区別しないLDAPサーバ(Windows)", +"Case insensitve LDAP server (Windows)" => "大文字/小文字を区別しないLDAPサーバー(Windows)", "Turn off SSL certificate validation." => "SSL証明書の確認を無効にする。", -"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "推奨されません、テストにおいてのみ使用してください!このオプションでのみ接続が動作する場合は、LDAP サーバのSSL証明書を %s サーバにインポートしてください。", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "推奨されません、テストにおいてのみ使用してください!このオプションでのみ接続が動作する場合は、LDAP サーバーのSSL証明書を %s サーバーにインポートしてください。", "Cache Time-To-Live" => "キャッシュのTTL", "in seconds. A change empties the cache." => "秒。変更後にキャッシュがクリアされます。", "Directory Settings" => "ディレクトリ設定", -"User Display Name Field" => "ユーザ表示名のフィールド", -"The LDAP attribute to use to generate the user's display name." => "ユーザの表示名の生成に利用するLDAP属性", -"Base User Tree" => "ベースユーザツリー", -"One User Base DN per line" => "1行に1つのユーザベースDN", -"User Search Attributes" => "ユーザ検索属性", +"User Display Name Field" => "ユーザー表示名のフィールド", +"The LDAP attribute to use to generate the user's display name." => "ユーザーの表示名の生成に利用するLDAP属性", +"Base User Tree" => "ベースユーザーツリー", +"One User Base DN per line" => "1行に1つのユーザーベースDN", +"User Search Attributes" => "ユーザー検索属性", "Optional; one attribute per line" => "オプション:1行に1属性", "Group Display Name Field" => "グループ表示名のフィールド", "The LDAP attribute to use to generate the groups's display name." => "ユーザのグループ表示名の生成に利用するLDAP属性", @@ -93,18 +90,18 @@ $TRANSLATIONS = array( "Quota Default" => "クォータのデフォルト", "in bytes" => "バイト", "Email Field" => "メールフィールド", -"User Home Folder Naming Rule" => "ユーザのホームフォルダ命名規則", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください。", -"Internal Username" => "内部ユーザ名", -"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "デフォルトでは、内部ユーザ名はUUID属性から作成されます。これにより、ユーザ名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザ名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザ名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダ名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザ表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザにおいてのみ有効となります。", -"Internal Username Attribute:" => "内部ユーザ名属性:", +"User Home Folder Naming Rule" => "ユーザーのホームフォルダー命名規則", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ユーザー名を空のままにしてください(デフォルト)。もしくは、LDAPもしくはADの属性を指定してください。", +"Internal Username" => "内部ユーザー名", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "デフォルトでは、内部ユーザー名はUUID属性から作成されます。これにより、ユーザー名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザー名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザー名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダー名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザー表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザーにおいてのみ有効となります。", +"Internal Username Attribute:" => "内部ユーザー名属性:", "Override UUID detection" => "UUID検出を再定義する", -"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。", -"UUID Attribute for Users:" => "ユーザの UUID 属性:", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザーとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザー名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザーとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザーとLDAPグループに対してのみ有効となります。", +"UUID Attribute for Users:" => "ユーザーの UUID 属性:", "UUID Attribute for Groups:" => "グループの UUID 属性:", -"Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピング", -"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", -"Clear Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピングをクリアする", +"Username-LDAP User Mapping" => "ユーザー名とLDAPユーザのマッピング", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ユーザー名は(メタ)データの保存と割り当てに使用されます。ユーザーを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザー名からLDAPユーザーへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", +"Clear Username-LDAP User Mapping" => "ユーザー名とLDAPユーザーのマッピングをクリアする", "Clear Groupname-LDAP Group Mapping" => "グループ名とLDAPグループのマッピングをクリアする" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/km.php b/apps/user_ldap/l10n/km.php index bba52d53a1..ad3cc4882c 100644 --- a/apps/user_ldap/l10n/km.php +++ b/apps/user_ldap/l10n/km.php @@ -1,6 +1,20 @@ "លុប​ការ​កំណត់​រចនា​សម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ មិន​បាន​សម្រេច", +"Deletion failed" => "លុប​មិន​បាន​សម្រេច", +"Keep settings?" => "រក្សា​ទុក​ការ​កំណត់?", +"Cannot add server configuration" => "មិន​អាច​បន្ថែម​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ", +"Error" => "កំហុស", +"Connection test succeeded" => "សាក​ល្បង​ការ​ត​ភ្ជាប់ បាន​ជោគជ័យ", +"Connection test failed" => "សាកល្បង​ការ​តភ្ជាប់ មិន​បាន​សម្រេច", +"Do you really want to delete the current Server Configuration?" => "តើ​អ្នក​ពិត​ជា​ចង់​លុប​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ​បច្ចុប្បន្ន​មែន​ទេ?", +"Confirm Deletion" => "បញ្ជាក់​ការ​លុប", "_%s group found_::_%s groups found_" => array(""), -"_%s user found_::_%s users found_" => array("") +"_%s user found_::_%s users found_" => array(""), +"Save" => "រក្សាទុក", +"Help" => "ជំនួយ", +"Add Server Configuration" => "បន្ថែម​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ", +"Host" => "ម៉ាស៊ីន​ផ្ទុក", +"Password" => "ពាក្យសម្ងាត់" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/ko.php b/apps/user_ldap/l10n/ko.php index 2d861f27ba..5dd2151a41 100644 --- a/apps/user_ldap/l10n/ko.php +++ b/apps/user_ldap/l10n/ko.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "저장", "Test Configuration" => "설정 시험", "Help" => "도움말", -"Limit the access to %s to groups meeting this criteria:" => "다음 조건을 만족하는 그룹만 %s 접근 허용:", "only those object classes:" => "다음 객체 클래스만:", "only from those groups:" => "다음 그룹에서만:", "Edit raw filter instead" => "필터 직접 편집", "Raw LDAP filter" => "LDAP 필터", "The filter specifies which LDAP groups shall have access to the %s instance." => "이 필터는 %s에 접근할 수 있는 LDAP 그룹을 설정합니다.", "groups found" => "그룹 찾음", -"What attribute shall be used as login name:" => "로그인 이름으로 사용할 속성:", "LDAP Username:" => "LDAP 사용자 이름:", "LDAP Email Address:" => "LDAP 이메일 주소:", "Other Attributes:" => "기타 속성:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "익명 접근을 허용하려면 DN과 암호를 비워 두십시오.", "One Base DN per line" => "기본 DN을 한 줄에 하나씩 입력하십시오", "You can specify Base DN for users and groups in the Advanced tab" => "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 수 있습니다.", -"Limit the access to %s to users meeting this criteria:" => "다음 조건을 만족하는 사용자만 %s 접근 허용:", "The filter specifies which LDAP users shall have access to the %s instance." => "이 필터는 %s에 접근할 수 있는 LDAP 사용자를 설정합니다.", "users found" => "사용자 찾음", "Back" => "뒤로", diff --git a/apps/user_ldap/l10n/ml.php b/apps/user_ldap/l10n/ml.php new file mode 100644 index 0000000000..3a1e002311 --- /dev/null +++ b/apps/user_ldap/l10n/ml.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/mn.php b/apps/user_ldap/l10n/mn.php new file mode 100644 index 0000000000..3a1e002311 --- /dev/null +++ b/apps/user_ldap/l10n/mn.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/nb_NO.php b/apps/user_ldap/l10n/nb_NO.php index 625ec79d76..0b60752e9d 100644 --- a/apps/user_ldap/l10n/nb_NO.php +++ b/apps/user_ldap/l10n/nb_NO.php @@ -1,23 +1,48 @@ "Klarte ikke å nullstille tilknytningene.", "Failed to delete the server configuration" => "Klarte ikke å slette tjener-konfigurasjonen.", "The configuration is valid and the connection could be established!" => "Konfigurasjonen er i orden og tilkoblingen skal være etablert!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfigurasjonen er i orden, men Bind mislyktes. Vennligst sjekk tjener-konfigurasjonen og påloggingsinformasjonen.", +"The configuration is invalid. Please have a look at the logs for further details." => "Konfigurasjonen er ikke gyldig. Sjekk loggene for flere detaljer.", +"No action specified" => "Ingen handling spesifisert", +"No configuration specified" => "Ingen konfigurasjon spesifisert", +"No data specified" => "Ingen data spesifisert", +" Could not set configuration %s" => "Klarte ikke å sette konfigurasjon %s", "Deletion failed" => "Sletting mislyktes", "Take over settings from recent server configuration?" => "Hent innstillinger fra tidligere tjener-konfigurasjon?", "Keep settings?" => "Behold innstillinger?", "Cannot add server configuration" => "Kan ikke legge til tjener-konfigurasjon", +"mappings cleared" => "tilknytninger nullstilt", "Success" => "Suksess", "Error" => "Feil", +"Configuration OK" => "Konfigurasjon OK", +"Configuration incorrect" => "Konfigurasjon feil", +"Configuration incomplete" => "Konfigurasjon ufullstendig", "Select groups" => "Velg grupper", +"Select object classes" => "Velg objektklasser", +"Select attributes" => "Velg attributter", "Connection test succeeded" => "Tilkoblingstest lyktes", "Connection test failed" => "Tilkoblingstest mislyktes", "Do you really want to delete the current Server Configuration?" => "Er du sikker på at du vil slette aktiv tjener-konfigurasjon?", "Confirm Deletion" => "Bekreft sletting", -"_%s group found_::_%s groups found_" => array("",""), -"_%s user found_::_%s users found_" => array("",""), +"_%s group found_::_%s groups found_" => array("%s gruppe funnet","%s grupper funnet"), +"_%s user found_::_%s users found_" => array("%s bruker funnet","%s brukere funnet"), +"Invalid Host" => "Ugyldig tjener", +"Could not find the desired feature" => "Fant ikke den ønskede funksjonaliteten", "Save" => "Lagre", +"Test Configuration" => "Test konfigurasjonen", "Help" => "Hjelp", +"only those object classes:" => "kun de objektklassene:", +"only from those groups:" => "kun fra de gruppene:", +"Edit raw filter instead" => "Rediger ubearbeidet filter i stedet", +"Raw LDAP filter" => "Ubearbeidet LDAP-filter", +"The filter specifies which LDAP groups shall have access to the %s instance." => "Filteret spesifiserer hvilke LDAP-grupper som skal ha tilgang til %s-instansen.", +"groups found" => "grupper funnet", +"LDAP Username:" => "LDAP-brukernavn:", +"LDAP Email Address:" => "LDAP-epostadresse:", +"Other Attributes:" => "Andre attributter:", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Definerer filteret som skal brukes når innlogging forsøkes. %%uid erstatter brukernavnet i innloggingshandlingen. Eksempel: \"uid=%%uid\"", "Add Server Configuration" => "Legg til tjener-konfigurasjon", "Host" => "Tjener", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kan utelate protokollen, men du er påkrevd å bruke SSL. Deretter starte med ldaps://", @@ -28,23 +53,55 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "For anonym tilgang, la DN- og passord-feltet stå tomt.", "One Base DN per line" => "En hoved DN pr. linje", "You can specify Base DN for users and groups in the Advanced tab" => "Du kan spesifisere Base DN for brukere og grupper under Avansert fanen", +"The filter specifies which LDAP users shall have access to the %s instance." => "Filteret spesifiserer hvilke LDAP-brukere som skal ha tilgang til %s-instansen.", +"users found" => "brukere funnet", "Back" => "Tilbake", "Continue" => "Fortsett", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Advarsel: Appene user_ldap og user_webdavauth er ikke kompatible med hverandre. Uventet oppførsel kan forekomme. Be systemadministratoren om å deaktivere en av dem.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Warning: PHP LDAP modulen er ikke installert, hjelperen vil ikke virke. Vennligst be din system-administrator om å installere den.", +"Connection Settings" => "Innstillinger for tilkobling", "Configuration Active" => "Konfigurasjon aktiv", "When unchecked, this configuration will be skipped." => "Når ikke huket av så vil denne konfigurasjonen bli hoppet over.", "Backup (Replica) Host" => "Sikkerhetskopierings (Replica) vert", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Oppgi en valgfri reservetjener. Den må være en replika av hovedtjeneren for LDAP/AD.", +"Backup (Replica) Port" => "Reserve (Replika) Port", +"Disable Main Server" => "Deaktiver hovedtjeneren", +"Only connect to the replica server." => "Koble til bare replika-tjeneren.", "Case insensitve LDAP server (Windows)" => "Case-insensitiv LDAP tjener (Windows)", "Turn off SSL certificate validation." => "Slå av SSL-sertifikat validering", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Ikke anbefalt, bruk kun for testing! Hvis tilkobling bare virker med dette valget, importer LDAP-tjenerens SSL-sertifikat i %s-serveren din.", +"Cache Time-To-Live" => "Levetid i mellomlager", "in seconds. A change empties the cache." => "i sekunder. En endring tømmer bufferen.", +"Directory Settings" => "Innstillinger for Katalog", "User Display Name Field" => "Vis brukerens navnfelt", +"The LDAP attribute to use to generate the user's display name." => "LDAP-attributten som skal brukes til å generere brukerens visningsnavn.", "Base User Tree" => "Hovedbruker tre", "One User Base DN per line" => "En Bruker Base DN pr. linje", +"User Search Attributes" => "Attributter for brukersøk", +"Optional; one attribute per line" => "Valgfritt, en attributt pr. linje", "Group Display Name Field" => "Vis gruppens navnfelt", +"The LDAP attribute to use to generate the groups's display name." => "LDAP-attributten som skal brukes til å generere gruppens visningsnavn.", "Base Group Tree" => "Hovedgruppe tre", "One Group Base DN per line" => "En gruppe hoved-DN pr. linje", +"Group Search Attributes" => "Attributter for gruppesøk", "Group-Member association" => "gruppe-medlem assosiasjon", +"Special Attributes" => "Spesielle attributter", +"Quota Field" => "Felt med lagringskvote", +"Quota Default" => "Standard lagringskvote", "in bytes" => "i bytes", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "La stå tom for brukernavn (standard). Ellers, spesifiser en LDAP/AD attributt." +"Email Field" => "Felt med e-postadresse", +"User Home Folder Naming Rule" => "Navneregel for brukers hjemmemappe", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "La stå tom for brukernavn (standard). Ellers, spesifiser en LDAP/AD attributt.", +"Internal Username" => "Internt brukernavn", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "Som standard vil det interne brukernavnet bli laget utifra UUID-attributten. Dette sikrer at brukernavnet er unikt og at det ikke er nødvendig å konvertere tegn. Det interne brukernavnet har den begrensningen at bare disse tegnene er tillatt: [ a-zA-Z0-9_.@- ]. Andre tegn erstattes av tilsvarende ASCII-tegn eller blir ganske enkelt utelatt. Ved kollisjon blir et nummer lagt til / øket. Det interne brukernavnet brukes til å identifisere en bruker internt. Det er også standardnavnet på brukerens hjemmemappe. Det er også med i fjern-URL-er, for eksempel for alle *DAV-tjenester. Med denne innstillingen kan standard oppførsel overstyres. For å få en oppførsel som likner oppførselen før ownCloud 5, legg inn attributten for brukerens visningsnavn i dette feltet. La feltet stå tomt for standard oppførsel. Endringer vil kun påvirke nylig tilknyttede (opprettede) LDAP-brukere.", +"Internal Username Attribute:" => "Attributt for internt brukernavn:", +"Override UUID detection" => "Overstyr UUID-oppdaging", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Som standard blir UUID-attributten oppdaget automatisk. UUID-attributten brukes til å identifisere LDAP-brukere og -grupper uten tvil. Det interne brukernavnet vil også bli laget basert på UUID, hvis ikke annet er spesifisert ovenfor. Du kan overstyre innstillingen og oppgi den attributten du ønsker. Du må forsikre det om at din valgte attributt kan hentes ut både for brukere og for grupper og at den er unik. La stå tomt for standard oppførsel. Endringer vil kun påvirke nylig tilknyttede (opprettede) LDAP-brukere og -grupper.", +"UUID Attribute for Users:" => "UUID-attributt for brukere:", +"UUID Attribute for Groups:" => "UUID-attributt for grupper:", +"Username-LDAP User Mapping" => "Tilknytning av brukernavn til LDAP-bruker", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Brukernavn brukes til å lagre og tilordne (meta)data. For at brukere skal identifiseres og gjenkjennes presist, vil hver LDAP-bruker ha et internt brukernavn. Dette krever en tilknytning fra brukernavn til LDAP-bruker. Brukernavn som opprettes blir knyttet til LDAP-brukerens UUID. I tillegg mellomlagres DN for å redusere LDAP-kommunikasjon, men det brukes ikke til identifisering. Hvis DN endres vil endringene bli oppdaget. Det interne brukernavnet brukes alle steder. Nullstilling av tilknytningene vil etterlate seg rester overalt. Nullstilling av tilknytningene skjer ikke pr. konfigurasjon, det påvirker alle LDAP-konfigurasjoner! Nullstill aldri tilknytningene i et produksjonsmiljø, kun ved testing eller eksperimentering.", +"Clear Username-LDAP User Mapping" => "Nullstill tilknytning av brukernavn til LDAP-bruker", +"Clear Groupname-LDAP Group Mapping" => "Nullstill tilknytning av gruppenavn til LDAP-gruppe" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index bfe96f4268..d1d379aa9e 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Bewaren", "Test Configuration" => "Test configuratie", "Help" => "Help", -"Limit the access to %s to groups meeting this criteria:" => "Beperk toegang tot %s tot groepen die voldoen aan deze criteria:", "only those object classes:" => "alleen deze objectklassen", "only from those groups:" => "alleen van deze groepen:", "Edit raw filter instead" => "Bewerk raw filter", "Raw LDAP filter" => "Raw LDAP filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Dit filter geeft aan welke LDAP groepen toegang hebben tot %s.", "groups found" => "groepen gevonden", -"What attribute shall be used as login name:" => "Welk attribuut moet worden gebruikt als inlognaam:", "LDAP Username:" => "LDAP Username:", "LDAP Email Address:" => "LDAP e-mailadres:", "Other Attributes:" => "Overige attributen:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Voor anonieme toegang, laat de DN en het wachtwoord leeg.", "One Base DN per line" => "Een Base DN per regel", "You can specify Base DN for users and groups in the Advanced tab" => "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab Geavanceerd.", -"Limit the access to %s to users meeting this criteria:" => "Beperk toegang tot %s tot gebruikers die voldoen aan deze criteria:", "The filter specifies which LDAP users shall have access to the %s instance." => "Dit filter geeft aan welke LDAP gebruikers toegang hebben tot %s.", "users found" => "gebruikers gevonden", "Back" => "Terug", diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 056718a027..08b5350a1b 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -4,6 +4,11 @@ $TRANSLATIONS = array( "Failed to delete the server configuration" => "Nie można usunąć konfiguracji serwera", "The configuration is valid and the connection could be established!" => "Konfiguracja jest prawidłowa i można ustanowić połączenie!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Konfiguracja jest prawidłowa, ale Bind nie. Sprawdź ustawienia serwera i poświadczenia.", +"The configuration is invalid. Please have a look at the logs for further details." => "Konfiguracja jest nieprawidłowa. Proszę rzucić okiem na dzienniki dalszych szczegółów.", +"No action specified" => "Nie określono akcji", +"No configuration specified" => "Nie określono konfiguracji", +"No data specified" => "Nie określono danych", +" Could not set configuration %s" => "Nie można ustawić konfiguracji %s", "Deletion failed" => "Usunięcie nie powiodło się", "Take over settings from recent server configuration?" => "Przejmij ustawienia z ostatnich konfiguracji serwera?", "Keep settings?" => "Zachować ustawienia?", @@ -11,16 +16,33 @@ $TRANSLATIONS = array( "mappings cleared" => "Mapoanie wyczyszczone", "Success" => "Sukces", "Error" => "Błąd", +"Configuration OK" => "Konfiguracja poprawna", +"Configuration incorrect" => "Konfiguracja niepoprawna", +"Configuration incomplete" => "Konfiguracja niekompletna", "Select groups" => "Wybierz grupy", +"Select object classes" => "Wybierz obiekty klas", +"Select attributes" => "Wybierz atrybuty", "Connection test succeeded" => "Test połączenia udany", "Connection test failed" => "Test połączenia nie udany", "Do you really want to delete the current Server Configuration?" => "Czy chcesz usunąć bieżącą konfigurację serwera?", "Confirm Deletion" => "Potwierdź usunięcie", -"_%s group found_::_%s groups found_" => array("","",""), -"_%s user found_::_%s users found_" => array("","",""), +"_%s group found_::_%s groups found_" => array("%s znaleziona grupa","%s znalezionych grup","%s znalezionych grup"), +"_%s user found_::_%s users found_" => array("%s znaleziony użytkownik","%s znalezionych użytkowników","%s znalezionych użytkowników"), +"Invalid Host" => "Niepoprawny Host", +"Could not find the desired feature" => "Nie można znaleźć żądanej funkcji", "Save" => "Zapisz", "Test Configuration" => "Konfiguracja testowa", "Help" => "Pomoc", +"only those object classes:" => "tylko te klasy obiektów:", +"only from those groups:" => "tylko z tych grup:", +"Edit raw filter instead" => "Edytuj zamiast tego czysty filtr", +"Raw LDAP filter" => "Czysty filtr LDAP", +"The filter specifies which LDAP groups shall have access to the %s instance." => "Filtr określa, które grupy LDAP powinny mieć dostęp do instancji %s.", +"groups found" => "grup znaleziono", +"LDAP Username:" => "Nazwa użytkownika LDAP:", +"LDAP Email Address:" => "LDAP Adres Email:", +"Other Attributes:" => "Inne atrybuty:", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Określa jakiego filtru użyć podczas próby zalogowania. %%uid zastępuje nazwę użytkownika w procesie logowania. Przykład: \"uid=%%uid\"", "Add Server Configuration" => "Dodaj konfigurację servera", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://", @@ -31,8 +53,11 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Dla dostępu anonimowego pozostawić DN i hasło puste.", "One Base DN per line" => "Jedna baza DN na linię", "You can specify Base DN for users and groups in the Advanced tab" => "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowane", +"The filter specifies which LDAP users shall have access to the %s instance." => "Filtr określa, którzy użytkownicy LDAP powinni mieć dostęp do instancji %s.", +"users found" => "użytkownicy znalezieni", "Back" => "Wróć", "Continue" => "Kontynuuj ", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Ostrzeżenie: Moduł PHP LDAP nie jest zainstalowany i nie będzie działał. Poproś administratora o włączenie go.", "Connection Settings" => "Konfiguracja połączeń", "Configuration Active" => "Konfiguracja archiwum", @@ -44,15 +69,18 @@ $TRANSLATIONS = array( "Only connect to the replica server." => "Połącz tylko do repliki serwera.", "Case insensitve LDAP server (Windows)" => "Wielkość liter serwera LDAP (Windows)", "Turn off SSL certificate validation." => "Wyłączyć sprawdzanie poprawności certyfikatu SSL.", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Nie polecane, używać tylko w celu testowania! Jeśli połączenie działa tylko z tą opcją, zaimportuj certyfikat SSL serwera LDAP na swój %s.", "Cache Time-To-Live" => "Przechowuj czas życia", "in seconds. A change empties the cache." => "w sekundach. Zmiana opróżnia pamięć podręczną.", "Directory Settings" => "Ustawienia katalogów", "User Display Name Field" => "Pole wyświetlanej nazwy użytkownika", +"The LDAP attribute to use to generate the user's display name." => "Atrybut LDAP służący do generowania wyświetlanej nazwy użytkownika ownCloud.", "Base User Tree" => "Drzewo bazy użytkowników", "One User Base DN per line" => "Jeden użytkownik Bazy DN na linię", "User Search Attributes" => "Szukaj atrybutów", "Optional; one attribute per line" => "Opcjonalnie; jeden atrybut w wierszu", "Group Display Name Field" => "Pole wyświetlanej nazwy grupy", +"The LDAP attribute to use to generate the groups's display name." => "Atrybut LDAP służący do generowania wyświetlanej nazwy grupy ownCloud.", "Base Group Tree" => "Drzewo bazy grup", "One Group Base DN per line" => "Jedna grupa bazy DN na linię", "Group Search Attributes" => "Grupa atrybutów wyszukaj", @@ -65,11 +93,14 @@ $TRANSLATIONS = array( "User Home Folder Naming Rule" => "Reguły nazewnictwa folderu domowego użytkownika", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Pozostaw puste dla user name (domyślnie). W przeciwnym razie podaj atrybut LDAP/AD.", "Internal Username" => "Wewnętrzna nazwa użytkownika", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "Domyślnie, wewnętrzna nazwa użytkownika zostanie utworzona z atrybutu UUID, ang. Universally unique identifier - Unikalny identyfikator użytkownika. To daje pewność, że nazwa użytkownika jest niepowtarzalna, a znaki nie muszą być konwertowane. Wewnętrzna nazwa użytkownika dopuszcza jedynie znaki: [ a-zA-Z0-9_.@- ]. Pozostałe znaki zamieniane są na ich odpowiedniki ASCII lub po prostu pomijane. W przypadku, gdy nazwa się powtarza na końcu jest dodawana / zwiększana cyfra. Wewnętrzna nazwa użytkownika służy do wewnętrznej identyfikacji użytkownika. Jest to również domyślna nazwa folderu domowego użytkownika. Jest to również część zdalnego adresu URL, na przykład dla wszystkich usług *DAV. Dzięki temu ustawieniu można nadpisywać domyślne zachowanie aplikacji. Aby osiągnąć podobny efekt jak przed ownCloud 5 wpisz atrybut nazwy użytkownika w poniższym polu. Pozostaw puste dla domyślnego zachowania. Zmiany będą miały wpływ tylko na nowo przypisanych (dodanych) użytkowników LDAP.", "Internal Username Attribute:" => "Wewnętrzny atrybut nazwy uzżytkownika:", "Override UUID detection" => "Zastąp wykrywanie UUID", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Domyślnie, atrybut UUID jest wykrywany automatycznie. Atrybut UUID jest używany do niepodważalnej identyfikacji użytkowników i grup LDAP. Również wewnętrzna nazwa użytkownika zostanie stworzona na bazie UUID, jeśli nie zostanie podana powyżej. Możesz nadpisać to ustawienie i użyć atrybutu wedle uznania. Musisz się jednak upewnić, że atrybut ten może zostać pobrany zarówno dla użytkowników, jak i grup i jest unikalny. Pozostaw puste dla domyślnego zachowania. Zmiany będą miały wpływ tylko na nowo przypisanych (dodanych) użytkowników i grupy LDAP.", "UUID Attribute for Users:" => "Atrybuty UUID dla użytkowników:", "UUID Attribute for Groups:" => "Atrybuty UUID dla grup:", "Username-LDAP User Mapping" => "Mapowanie użytkownika LDAP", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Nazwy użytkowników są używane w celu przechowywania i przypisywania (meta) danych. Aby dokładnie zidentyfikować i rozpoznać użytkowników, każdy użytkownik LDAP będzie miał wewnętrzną nazwę. To wymaga utworzenia przypisania nazwy użytkownika do użytkownika LDAP. Utworzona nazwa użytkownika jet przypisywana do UUID użytkownika LDAP. Dodatkowo DN jest również buforowany aby zmniejszyć interakcję z LDAP, ale nie jest używany do identyfikacji. Jeśli DN się zmieni, zmiany zostaną odnalezione. Wewnętrzny użytkownik jest używany we wszystkich przypadkach. Wyczyszczenie mapowań spowoduje pozostawienie wszędzie resztek informacji. Wyczyszczenie mapowań nie jest wrażliwe na konfigurację, wpływa ono na wszystkie konfiguracje LDAP! Nigdy nie czyść mapowań w środowisku produkcyjnym, tylko podczas testów lub w fazie eksperymentalnej. ", "Clear Username-LDAP User Mapping" => "Czyść Mapowanie użytkownika LDAP", "Clear Groupname-LDAP Group Mapping" => "Czyść Mapowanie nazwy grupy LDAP" ); diff --git a/apps/user_ldap/l10n/pt_BR.php b/apps/user_ldap/l10n/pt_BR.php index 559dc949bd..2305f34ee3 100644 --- a/apps/user_ldap/l10n/pt_BR.php +++ b/apps/user_ldap/l10n/pt_BR.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Guardar", "Test Configuration" => "Teste de Configuração", "Help" => "Ajuda", -"Limit the access to %s to groups meeting this criteria:" => "Limitar o acesso a %s para grupos que coincidam com estes critérios:", "only those object classes:" => "apenas essas classes de objetos:", "only from those groups:" => "apenas a partir dos grupos:", "Edit raw filter instead" => "Editar filtro raw ao invéz", "Raw LDAP filter" => "Filtro LDAP Raw", "The filter specifies which LDAP groups shall have access to the %s instance." => "O filtro especifica quais grupos LDAP devem ter acesso à instância do %s.", "groups found" => "grupos encontrados", -"What attribute shall be used as login name:" => "O atributo deve ser usado como nome de login:", "LDAP Username:" => "Usuário LDAP:", "LDAP Email Address:" => "LDAP Endereço de E-mail:", "Other Attributes:" => "Outros atributos:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Para acesso anônimo, deixe DN e Senha vazios.", "One Base DN per line" => "Uma base DN por linha", "You can specify Base DN for users and groups in the Advanced tab" => "Você pode especificar DN Base para usuários e grupos na guia Avançada", -"Limit the access to %s to users meeting this criteria:" => "Limitar o acesso a %s para usuários que coincidam com estes critérios:", "The filter specifies which LDAP users shall have access to the %s instance." => "O filtro especifica quais usuários LDAP devem ter acesso à instância do %s.", "users found" => "usuários encontrados", "Back" => "Voltar", diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 89c37358b6..37142c8175 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -1,9 +1,13 @@ "Falhou a limpar os mapas", -"Failed to delete the server configuration" => "Erro ao eliminar as configurações do servidor", +"Failed to delete the server configuration" => "Erro ao eliminar a configuração do servidor", "The configuration is valid and the connection could be established!" => "A configuração está correcta e foi possível estabelecer a ligação!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "A configuração está correcta, mas não foi possível estabelecer o \"laço\", por favor, verifique as configurações do servidor e as credenciais.", +"No action specified" => "Nenhuma acção especificada", +"No configuration specified" => "Nenhuma configuração especificada", +"No data specified" => "Nenhuma data especificada", +" Could not set configuration %s" => "Não foi possível definir a configuração %s", "Deletion failed" => "Erro ao apagar", "Take over settings from recent server configuration?" => "Assumir as configurações da configuração do servidor mais recente?", "Keep settings?" => "Manter as definições?", @@ -11,16 +15,33 @@ $TRANSLATIONS = array( "mappings cleared" => "Mapas limpos", "Success" => "Sucesso", "Error" => "Erro", +"Configuration OK" => "Configuração OK", +"Configuration incorrect" => "Configuração incorreta", +"Configuration incomplete" => "Configuração incompleta", "Select groups" => "Seleccionar grupos", +"Select object classes" => "Selecionar classes de objetos", +"Select attributes" => "Selecionar atributos", "Connection test succeeded" => "Teste de conecção passado com sucesso.", "Connection test failed" => "Erro no teste de conecção.", "Do you really want to delete the current Server Configuration?" => "Deseja realmente apagar as configurações de servidor actuais?", "Confirm Deletion" => "Confirmar a operação de apagar", -"_%s group found_::_%s groups found_" => array("",""), -"_%s user found_::_%s users found_" => array("",""), +"_%s group found_::_%s groups found_" => array("%s grupo encontrado","%s grupos encontrados"), +"_%s user found_::_%s users found_" => array("%s utilizador encontrado","%s utilizadores encontrados"), +"Invalid Host" => "Hospedeiro Inválido", +"Could not find the desired feature" => "Não se encontrou a função desejada", "Save" => "Guardar", "Test Configuration" => "Testar a configuração", "Help" => "Ajuda", +"only those object classes:" => "apenas essas classes de objetos:", +"only from those groups:" => "apenas desses grupos:", +"Edit raw filter instead" => "Editar filtro raw em vez disso", +"Raw LDAP filter" => "Filtro LDAP Raw", +"The filter specifies which LDAP groups shall have access to the %s instance." => "O filtro especifica quais grupos LDAP devem ter acesso à instância %s.", +"groups found" => "grupos encontrados", +"LDAP Username:" => "Nome de utilizador LDAP:", +"LDAP Email Address:" => "Endereço de correio eletrónico LDAP:", +"Other Attributes:" => "Outros Atributos:", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Define o filtro a aplicar, quando se tenta uma sessão. %%uid substitui o nome de utilizador na ação de início de sessão. Exemplo: \"uid=%%uid\"", "Add Server Configuration" => "Adicionar configurações do servidor", "Host" => "Anfitrião", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://", @@ -31,8 +52,10 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Para acesso anónimo, deixe DN e a Palavra-passe vazios.", "One Base DN per line" => "Uma base DN por linho", "You can specify Base DN for users and groups in the Advanced tab" => "Pode especificar o ND Base para utilizadores e grupos no separador Avançado", +"users found" => "utilizadores encontrados", "Back" => "Voltar", "Continue" => "Continuar", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Aviso: A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Aviso: O módulo PHP LDAP não está instalado, logo não irá funcionar. Por favor peça ao administrador para o instalar.", "Connection Settings" => "Definições de ligação", "Configuration Active" => "Configuração activa", @@ -41,17 +64,20 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Forneça um servidor (anfitrião) de backup. Deve ser uma réplica do servidor principal de LDAP/AD ", "Backup (Replica) Port" => "Porta do servidor de backup (Replica)", "Disable Main Server" => "Desactivar servidor principal", +"Only connect to the replica server." => "Ligar apenas ao servidor de réplicas.", "Case insensitve LDAP server (Windows)" => "Servidor LDAP (Windows) não sensível a maiúsculas.", "Turn off SSL certificate validation." => "Desligar a validação de certificado SSL.", "Cache Time-To-Live" => "Cache do tempo de vida dos objetos no servidor", "in seconds. A change empties the cache." => "em segundos. Uma alteração esvazia a cache.", "Directory Settings" => "Definições de directorias", "User Display Name Field" => "Mostrador do nome de utilizador.", +"The LDAP attribute to use to generate the user's display name." => "Atributo LDAP para gerar o nome de utilizador do ownCloud.", "Base User Tree" => "Base da árvore de utilizadores.", "One User Base DN per line" => "Uma base de utilizador DN por linha", "User Search Attributes" => "Utilizar atributos de pesquisa", "Optional; one attribute per line" => "Opcional; Um atributo por linha", "Group Display Name Field" => "Mostrador do nome do grupo.", +"The LDAP attribute to use to generate the groups's display name." => "Atributo LDAP para gerar o nome do grupo do ownCloud.", "Base Group Tree" => "Base da árvore de grupos.", "One Group Base DN per line" => "Uma base de grupo DN por linha", "Group Search Attributes" => "Atributos de pesquisa de grupo", @@ -64,8 +90,11 @@ $TRANSLATIONS = array( "User Home Folder Naming Rule" => "Regra da pasta inicial do utilizador", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD.", "Internal Username" => "Nome de utilizador interno", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "Por padrão o nome de utilizador interno vai ser criado através do atributo UUID. Desta forma é assegurado que o nome é único e os caracteres não necessitam de serem convertidos. O nome interno tem a restrição de que apenas estes caracteres são permitidos: [ a-zA-Z0-9_.@- ]. Outros caracteres são substituídos pela sua correspondência ASCII ou simplesmente omitidos. Mesmo assim, quando for detetado uma colisão irá ser acrescentado um número. O nome interno é usado para identificar o utilizador internamente. É também o nome utilizado para a pasta inicial no ownCloud. É também parte de URLs remotos, como por exemplo os serviços *DAV. Com esta definição, o comportamento padrão é pode ser sobreposto. Para obter o mesmo comportamento antes do ownCloud 5 introduza o atributo do nome no campo seguinte. Deixe vazio para obter o comportamento padrão. As alterações apenas serão feitas para utilizadores mapeados (adicionados) LDAP.", "Internal Username Attribute:" => "Atributo do nome de utilizador interno", "Override UUID detection" => "Passar a detecção do UUID", +"UUID Attribute for Users:" => "Atributo UUID para utilizadores:", +"UUID Attribute for Groups:" => "Atributo UUID para grupos:", "Username-LDAP User Mapping" => "Mapeamento do utilizador LDAP", "Clear Username-LDAP User Mapping" => "Limpar mapeamento do utilizador-LDAP", "Clear Groupname-LDAP Group Mapping" => "Limpar o mapeamento do nome de grupo LDAP" diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index 7b9cf8ceb5..d9685368cb 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Сохранить", "Test Configuration" => "Проверить конфигурацию", "Help" => "Помощь", -"Limit the access to %s to groups meeting this criteria:" => "Ограничить доступ к %s группам, удовлетворяющим этому критерию:", "only those object classes:" => "только эти объектные классы", "only from those groups:" => "только из этих групп", "Edit raw filter instead" => "Редактировать исходный фильтр", "Raw LDAP filter" => "Исходный LDAP фильтр", "The filter specifies which LDAP groups shall have access to the %s instance." => "Этот фильтр определяет, какие LDAP группы должны иметь доступ к %s.", "groups found" => "групп найдено", -"What attribute shall be used as login name:" => "Какой атрибут должен быть использован для логина:", "LDAP Username:" => "Имя пользователя LDAP", "LDAP Email Address:" => "LDAP адрес электронной почты:", "Other Attributes:" => "Другие атрибуты:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Для анонимного доступа оставьте DN и пароль пустыми.", "One Base DN per line" => "По одной базе поиска (Base DN) в строке.", "You can specify Base DN for users and groups in the Advanced tab" => "Вы можете задать Base DN для пользователей и групп на вкладке \"Расширенное\"", -"Limit the access to %s to users meeting this criteria:" => "Ограничить доступ к %s пользователям, удовлетворяющим этому критерию:", "The filter specifies which LDAP users shall have access to the %s instance." => "Этот фильтр указывает, какие пользователи LDAP должны иметь доступ к %s.", "users found" => "пользователей найдено", "Back" => "Назад", @@ -99,7 +96,7 @@ $TRANSLATIONS = array( "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "По умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Таким образом имя пользователя становится уникальным и не требует конвертации символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено или увеличено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по умолчанию для папки пользователя в ownCloud. Оно также является частью URL, к примеру, для всех сервисов *DAV. С помощью данной настройки можно изменить поведение по умолчанию. Чтобы достичь поведения, как было до ownCloud 5, введите атрибут отображаемого имени пользователя в этом поле. Оставьте его пустым для режима по умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP.", "Internal Username Attribute:" => "Атрибут для внутреннего имени:", "Override UUID detection" => "Переопределить нахождение UUID", -"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По умолчанию ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По умолчанию ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно идентифицировать пользователей и группы LDAP. Также на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.", "UUID Attribute for Users:" => "UUID-атрибуты для пользователей:", "UUID Attribute for Groups:" => "UUID-атрибуты для групп:", "Username-LDAP User Mapping" => "Соответствия Имя-Пользователь LDAP", diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index 850fce24c4..460064593e 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -16,7 +16,7 @@ $TRANSLATIONS = array( "mappings cleared" => "mapovanie vymazané", "Success" => "Úspešné", "Error" => "Chyba", -"Configuration OK" => "Konfigurácia je vporiadku", +"Configuration OK" => "Konfigurácia je v poriadku", "Configuration incorrect" => "Nesprávna konfigurácia", "Configuration incomplete" => "Nekompletná konfigurácia", "Select groups" => "Vybrať skupinu", @@ -33,21 +33,19 @@ $TRANSLATIONS = array( "Save" => "Uložiť", "Test Configuration" => "Test nastavenia", "Help" => "Pomoc", -"Limit the access to %s to groups meeting this criteria:" => "Obmedziť prístup %s do skupiny, ktoré spĺňajú tieto kritériá:", "only those object classes:" => "len tieto triedy objektov:", "only from those groups:" => "len z týchto skupín:", "Edit raw filter instead" => "Miesto pre úpravu raw filtra", "Raw LDAP filter" => "Raw LDAP filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Tento filter LDAP určuje, ktoré skupiny budú mať prístup k %s inštancii.", "groups found" => "nájdené skupiny", -"What attribute shall be used as login name:" => "Ako prihlasovacie meno použiť atribút:", "LDAP Username:" => "LDAP používateľské meno:", "LDAP Email Address:" => "LDAP emailová adresa:", "Other Attributes:" => "Iné atribúty:", -"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Určuje použitý filter, pri pokuse o prihlásenie. %%uid nahradzuje používateľské meno v činnosti prihlásenia. Napríklad: \"uid=%%uid\"", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "Určuje použitý filter, pri pokuse o prihlásenie. %%uid nahrádza používateľské meno v činnosti prihlásenia. Napríklad: \"uid=%%uid\"", "Add Server Configuration" => "Pridať nastavenia servera.", "Host" => "Hostiteľ", -"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Môžete vynechať protokol, s výnimkou požadovania SSL. Vtedy začnite s ldaps://", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "Môžete vynechať protokol, okrem prípadu, kedy sa vyžaduje SSL. Vtedy začnite s ldaps://", "Port" => "Port", "User DN" => "Používateľské DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "DN klientského používateľa, ku ktorému tvoríte väzbu, napr. uid=agent,dc=example,dc=com. Pre anonymný prístup ponechajte údaje DN a Heslo prázdne.", @@ -55,13 +53,12 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Pre anonymný prístup ponechajte údaje DN a Heslo prázdne.", "One Base DN per line" => "Jedno základné DN na riadok", "You can specify Base DN for users and groups in the Advanced tab" => "V rozšírenom nastavení môžete zadať základné DN pre používateľov a skupiny", -"Limit the access to %s to users meeting this criteria:" => "Obmedziť prístup k %s na používateľov, ktorí spĺňajú tieto kritériá:", "The filter specifies which LDAP users shall have access to the %s instance." => "Tento filter LDAP určuje, ktorí používatelia majú prístup k %s inštancii.", "users found" => "nájdení používatelia", "Back" => "Späť", "Continue" => "Pokračovať", "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich.", -"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Upozornenie: nie je nainštalovaný LDAP modul pre PHP, backend vrstva nebude fungovať. Požádejte administrátora systému aby ho nainštaloval.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Upozornenie: nie je nainštalovaný LDAP modul pre PHP, backend vrstva nebude fungovať. Požiadajte administrátora systému, aby ho nainštaloval.", "Connection Settings" => "Nastavenie pripojenia", "Configuration Active" => "Nastavenia sú aktívne ", "When unchecked, this configuration will be skipped." => "Ak nie je zaškrtnuté, nastavenie bude preskočené.", @@ -73,10 +70,10 @@ $TRANSLATIONS = array( "Case insensitve LDAP server (Windows)" => "LDAP server nerozlišuje veľkosť znakov (Windows)", "Turn off SSL certificate validation." => "Vypnúť overovanie SSL certifikátu.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Neodporúčané, použite iba pri testovaní! Pokiaľ spojenie funguje iba z daným nastavením, importujte SSL certifikát LDAP servera do vášho %s servera.", -"Cache Time-To-Live" => "Životnosť objektov v medzipamäti", +"Cache Time-To-Live" => "Životnosť objektov vo vyrovnávacej pamäti", "in seconds. A change empties the cache." => "v sekundách. Zmena vyprázdni vyrovnávaciu pamäť.", -"Directory Settings" => "Nastavenie priečinka", -"User Display Name Field" => "Pole pre zobrazenie mena používateľa", +"Directory Settings" => "Nastavenia priečinka", +"User Display Name Field" => "Pole pre zobrazované meno používateľa", "The LDAP attribute to use to generate the user's display name." => "Atribút LDAP použitý na vygenerovanie zobrazovaného mena používateľa. ", "Base User Tree" => "Základný používateľský strom", "One User Base DN per line" => "Jedna používateľská základná DN na riadok", @@ -94,16 +91,16 @@ $TRANSLATIONS = array( "in bytes" => "v bajtoch", "Email Field" => "Pole emailu", "User Home Folder Naming Rule" => "Pravidlo pre nastavenie názvu používateľského priečinka dát", -"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Nechajte prázdne pre používateľské meno (predvolené). Inak uveďte atribút LDAP/AD.", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Nechajte prázdne pre používateľské meno (predvolené). Inak uveďte atribút z LDAP/AD.", "Internal Username" => "Interné používateľské meno", -"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách používateľských mien bude číslo pridané / odobrané. Interné používateľské meno sa používa na internú identifikáciu používateľa. Je tiež predvoleným názvom používateľského domovského priečinka v ownCloud. Je tiež súčasťou URL pre vzdialený prístup, napríklad pre všetky služby * DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred verziou ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo namapovaných (pridaných) LDAP používateľov.", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách používateľských mien bude číslo pridané / odobrané. Interné používateľské meno sa používa na internú identifikáciu používateľa. Je tiež predvoleným názvom používateľského domovského priečinka v ownCloud. Je tiež súčasťou URL pre vzdialený prístup, napríklad pre všetky služby *DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred verziou ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo namapovaných (pridaných) LDAP používateľov.", "Internal Username Attribute:" => "Atribút interného používateľského mena:", "Override UUID detection" => "Prepísať UUID detekciu", -"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP.", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné používateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri používateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP.", "UUID Attribute for Users:" => "UUID atribút pre používateľov:", "UUID Attribute for Groups:" => "UUID atribút pre skupiny:", "Username-LDAP User Mapping" => "Mapovanie názvov LDAP používateľských mien", -"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "Používateľské mená sa používajú pre uchovávanie a priraďovanie (meta) dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapovaní vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.", "Clear Username-LDAP User Mapping" => "Zrušiť mapovanie LDAP používateľských mien", "Clear Groupname-LDAP Group Mapping" => "Zrušiť mapovanie názvov LDAP skupín" ); diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index b51c5bc7bb..b2a21b6e02 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Shrani", "Test Configuration" => "Preizkusne nastavitve", "Help" => "Pomoč", -"Limit the access to %s to groups meeting this criteria:" => "Omeji dostop %s do skupin glede na kriterij:", "only those object classes:" => "le razredi predmeta:", "only from those groups:" => "le iz skupin:", "Edit raw filter instead" => "Uredi surov filter", "Raw LDAP filter" => "Surovi filter LDAP", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filter določa, katere skupine LDAP bodo imele dostop do %s.", "groups found" => "najdenih skupin", -"What attribute shall be used as login name:" => "Kateri atribut naj bo uporabljen kot prijavno ime:", "LDAP Username:" => "Uporabniško ime LDAP:", "LDAP Email Address:" => "Elektronski naslov LDAP:", "Other Attributes:" => "Drugi atributi:", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Za brezimni dostop naj bosta polji imena in gesla prazni.", "One Base DN per line" => "Eno osnovno enolično ime na vrstico", "You can specify Base DN for users and groups in the Advanced tab" => "Osnovno enolično ime za uporabnike in skupine lahko določite v zavihku naprednih možnosti.", -"Limit the access to %s to users meeting this criteria:" => "Omeji dostop do %s uporabnikom, za katere velja kriterij:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filter določa, kateri uporabniki LDAP bodo imeli dostop do %s.", "users found" => "najdenih uporabnikov", "Back" => "Nazaj", diff --git a/apps/user_ldap/l10n/su.php b/apps/user_ldap/l10n/su.php new file mode 100644 index 0000000000..bba52d53a1 --- /dev/null +++ b/apps/user_ldap/l10n/su.php @@ -0,0 +1,6 @@ + array(""), +"_%s user found_::_%s users found_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 62beec274e..0108cfcb0e 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -33,12 +33,12 @@ $TRANSLATIONS = array( "Save" => "Spara", "Test Configuration" => "Testa konfigurationen", "Help" => "Hjälp", -"Limit the access to %s to groups meeting this criteria:" => "Begränsa åtkomsten till %s till grupper som möter följande kriterie:", "only those object classes:" => "Endast de objekt-klasserna:", "only from those groups:" => "endast ifrån de här grupperna:", +"Edit raw filter instead" => "Redigera rått filter istället", +"Raw LDAP filter" => "Rått LDAP-filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filtret specifierar vilka LDAD-grupper som ska ha åtkomst till %s instans", "groups found" => "grupper hittade", -"What attribute shall be used as login name:" => "Vilket attribut ska användas som login namn:", "LDAP Username:" => "LDAP användarnamn:", "LDAP Email Address:" => "LDAP e-postadress:", "Other Attributes:" => "Övriga attribut:", @@ -53,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "För anonym åtkomst, lämna DN och lösenord tomt.", "One Base DN per line" => "Ett Start DN per rad", "You can specify Base DN for users and groups in the Advanced tab" => "Du kan ange start DN för användare och grupper under fliken Avancerat", -"Limit the access to %s to users meeting this criteria:" => "Begränsa åtkomsten till %s till användare som möter följande kriterie:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filtret specifierar vilka LDAP-användare som skall ha åtkomst till %s instans", "users found" => "användare funna", "Back" => "Tillbaka", diff --git a/apps/user_ldap/l10n/te.php b/apps/user_ldap/l10n/te.php index ad3ffb1c5e..e154c06873 100644 --- a/apps/user_ldap/l10n/te.php +++ b/apps/user_ldap/l10n/te.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "_%s user found_::_%s users found_" => array("",""), "Save" => "భద్రపరచు", "Help" => "సహాయం", -"Password" => "సంకేతపదం" +"Password" => "సంకేతపదం", +"Continue" => "కొనసాగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index 8299c5feca..eaeee1ebf1 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -33,14 +33,12 @@ $TRANSLATIONS = array( "Save" => "Kaydet", "Test Configuration" => "Test Yapılandırması", "Help" => "Yardım", -"Limit the access to %s to groups meeting this criteria:" => "%s erişimini, şu kriterle eşleşen gruplara sınırla:", "only those object classes:" => "sadece bu nesne sınıflarına:", "only from those groups:" => "sadece bu gruplardan:", "Edit raw filter instead" => "Bunun yerine ham filtreyi düzenle", "Raw LDAP filter" => "Ham LDAP filtresi", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filtre, %s örneğine erişmesi gereken LDAP gruplarını belirtir.", "groups found" => "grup bulundu", -"What attribute shall be used as login name:" => "Oturum ismi olarak hangi nitelik kullanılmalı:", "LDAP Username:" => "LDAP Kullanıcı Adı:", "LDAP Email Address:" => "LDAP E-posta Adresi:", "Other Attributes:" => "Diğer Nitelikler", @@ -55,7 +53,6 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Anonim erişim için DN ve Parola alanlarını boş bırakın.", "One Base DN per line" => "Bir Tabani DN herbir dizi. ", "You can specify Base DN for users and groups in the Advanced tab" => "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. ", -"Limit the access to %s to users meeting this criteria:" => "%s erişimini, şu kriterle eşleşen kullanıcılara sınırla:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filtre, %s örneğine erişmesi gereken LDAP kullanıcılarını belirtir.", "users found" => "kullanıcı bulundu", "Back" => "Geri", diff --git a/apps/user_ldap/l10n/vi.php b/apps/user_ldap/l10n/vi.php index f1f069cc4d..84d001cb59 100644 --- a/apps/user_ldap/l10n/vi.php +++ b/apps/user_ldap/l10n/vi.php @@ -17,6 +17,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Cho phép truy cập nặc danh , DN và mật khẩu trống.", "You can specify Base DN for users and groups in the Advanced tab" => "Bạn có thể chỉ định DN cơ bản cho người dùng và các nhóm trong tab Advanced", "Back" => "Trở lại", +"Continue" => "Tiếp tục", "Connection Settings" => "Connection Settings", "Backup (Replica) Port" => "Cổng sao lưu (Replica)", "Disable Main Server" => "Tắt máy chủ chính", diff --git a/apps/user_ldap/l10n/zh_CN.php b/apps/user_ldap/l10n/zh_CN.php index f1a3625bf3..aae100ef9a 100644 --- a/apps/user_ldap/l10n/zh_CN.php +++ b/apps/user_ldap/l10n/zh_CN.php @@ -32,6 +32,7 @@ $TRANSLATIONS = array( "One Base DN per line" => "每行一个基本判别名", "You can specify Base DN for users and groups in the Advanced tab" => "您可以在高级选项卡里为用户和组指定Base DN", "Back" => "返回", +"Continue" => "继续", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "警告: PHP LDAP 模块未安装,后端将无法工作。请请求您的系统管理员安装该模块。", "Connection Settings" => "连接设置", "Configuration Active" => "现行配置", @@ -40,6 +41,7 @@ $TRANSLATIONS = array( "Give an optional backup host. It must be a replica of the main LDAP/AD server." => "给出一个可选的备份主机。它必须为主 LDAP/AD 服务器的一个镜像。", "Backup (Replica) Port" => "备份 (镜像) 端口", "Disable Main Server" => "禁用主服务器", +"Only connect to the replica server." => "只能连接到复制服务器", "Case insensitve LDAP server (Windows)" => "大小写敏感LDAP服务器(Windows)", "Turn off SSL certificate validation." => "关闭SSL证书验证", "Cache Time-To-Live" => "缓存存活时间", diff --git a/apps/user_webdavauth/l10n/id.php b/apps/user_webdavauth/l10n/id.php index 278055ce8c..50084bf7f2 100644 --- a/apps/user_webdavauth/l10n/id.php +++ b/apps/user_webdavauth/l10n/id.php @@ -1,5 +1,7 @@ "Otentikasi WebDAV" +"WebDAV Authentication" => "Otentikasi WebDAV", +"Address: " => "Alamat:", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Kredensial pengguna akan dikirim ke alamat ini. Pengaya ini memeriksa respon dan akan menafsirkan kode status HTTP 401 dan 403 sebagai kredensial yang tidak valid, dan semua tanggapan lain akan dianggap sebagai kredensial yang valid." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/km.php b/apps/user_webdavauth/l10n/km.php new file mode 100644 index 0000000000..74e61861a9 --- /dev/null +++ b/apps/user_webdavauth/l10n/km.php @@ -0,0 +1,7 @@ + "ការ​ផ្ទៀង​ផ្ទាត់​ភាព​ត្រឹម​ត្រូវ WebDAV", +"Address: " => "អាសយដ្ឋាន៖", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "អត្តសញ្ញាណ​អ្នក​ប្រើ​នឹង​ត្រូវ​ផ្ញើ​ទៅ​អាសយដ្ឋាន​នេះ។ កម្មវិធី​បន្ថែម​នេះ​ពិនិត្យ​ចម្លើយ​តប ហើយ​នឹង​បក​ស្រាយ​កូដ​ស្ថានភាព HTTP ដូច​ជា 401 និង 403 ថា​ជា​អត្តសញ្ញាណ​មិន​ត្រឹម​ត្រូវ ហើយ​និង​ចម្លើយ​តប​ផ្សេងៗ​ថា​ត្រឹម​ត្រូវ។" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_webdavauth/l10n/nb_NO.php b/apps/user_webdavauth/l10n/nb_NO.php index e7ee8ae56b..c472270388 100644 --- a/apps/user_webdavauth/l10n/nb_NO.php +++ b/apps/user_webdavauth/l10n/nb_NO.php @@ -1,5 +1,7 @@ "Adresse:" +"WebDAV Authentication" => "WebDAV-autentisering", +"Address: " => "Adresse:", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Brukerens påloggingsinformasjon vil bli sendt til denne adressen. Denne utvidelsen sjekker svaret og vil tolke HTTP-statuskodene 401 og 403 som ugyldig bruker eller passord, og alle andre svar tolkes som gyldig påloggings." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/vi.php b/apps/user_webdavauth/l10n/vi.php index 1ab4687922..0ba38cc26f 100644 --- a/apps/user_webdavauth/l10n/vi.php +++ b/apps/user_webdavauth/l10n/vi.php @@ -1,5 +1,7 @@ "Xác thực WebDAV" +"WebDAV Authentication" => "Xác thực WebDAV", +"Address: " => "Địa chỉ :", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "Các thông tin người dùng sẽ được gửi đến địa chỉ này. Plugin này sẽ kiểm tra các phản hồi và các statuscodes HTTP 401 và 403 không hợp lệ, và tất cả những phản h khác như thông tin hợp lệ." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index e0a564a509..94df818420 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Help" => "Hulp", "Cloud not found" => "Wolk nie gevind", "Create an admin account" => "Skep `n admin-rekening", -"Advanced" => "Gevorderd", "Configure the database" => "Stel databasis op", "will be used" => "sal gebruik word", "Database user" => "Databasis-gebruiker", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index b3c43a96cb..ebc9ff537f 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -45,6 +45,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل", "Shared with you and the group {group} by {owner}" => "شورك معك ومع المجموعة {group} من قبل {owner}", "Shared with you by {owner}" => "شورك معك من قبل {owner}", +"Share link" => "شارك الرابط", "Password protect" => "حماية كلمة السر", "Password" => "كلمة المرور", "Email link to person" => "ارسل الرابط بالبريد الى صديق", @@ -96,7 +97,6 @@ $TRANSLATIONS = array( "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "بدون وجود مولد أرقام عشوائية آمن قد يتمكن المهاجم من التنبؤ بكلمات اعادة ضبط كلمة المرور والتمكن من السيطرة على حسابك", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "مجلدات البيانات والملفات الخاصة قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت وذلك بسبب ان ملف .htaccess لا يعمل بشكل صحيح.", "Create an admin account" => "أضف مستخدم رئيسي ", -"Advanced" => "تعديلات متقدمه", "Data folder" => "مجلد المعلومات", "Configure the database" => "أسس قاعدة البيانات", "will be used" => "سيتم استخدمه", diff --git a/core/l10n/be.php b/core/l10n/be.php index 19d330a44d..56f08cccc3 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("","","",""), "Error" => "Памылка", "The object type is not specified." => "Тып аб'екта не ўдакладняецца.", -"Advanced" => "Дасведчаны", "Finish setup" => "Завяршыць ўстаноўку." ); $PLURAL_FORMS = "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index dbed3e2063..118f4f62dd 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -28,18 +28,47 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "последният месец", "_%n month ago_::_%n months ago_" => array("",""), +"months ago" => "Преди месеци", "last year" => "последната година", "years ago" => "последните години", +"Choose" => "Избери", "Yes" => "Да", "No" => "Не", "Ok" => "Добре", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "Отказ", +"Shared" => "Споделено", "Share" => "Споделяне", "Error" => "Грешка", +"Error while sharing" => "Грешка при споделяне", +"Error while unsharing" => "Грепка докато се премахва споделянето", +"Error while changing permissions" => "Грешка при промяна на достъпност", +"Shared with you and the group {group} by {owner}" => "Споделено с тебе и група {group} от {owner}", +"Shared with you by {owner}" => "Споделено с тебе от {owner}", +"Password protect" => "Защитено с парола", "Password" => "Парола", +"Email link to person" => "Изпрати връзка до пощата на някои", +"Send" => "Изпрати", +"Set expiration date" => "Посочи дата на изтичане", +"Expiration date" => "Дата на изтичане", +"Share via email:" => "сподели по поща:", +"No people found" => "Не са открити хора", +"Resharing is not allowed" => "Допълнително споделяне не е разрешено", +"Shared in {item} with {user}" => "Споделено в {item} с {user}", +"Unshare" => "Премахни споделяне", +"can edit" => "може да променя", +"access control" => "контрол на достъпа", "create" => "създаване", +"update" => "Обновяване", +"delete" => "Изтриване", +"share" => "Споделяне", +"Password protected" => "Защитено с парола", +"Error unsetting expiration date" => "Грешка при премахване на дата за изтичане", +"Error setting expiration date" => "Грепка при поставяне на дата за изтичане", +"Sending ..." => "Изпращам ...", +"Email sent" => "Пощата е изпратена", "Warning" => "Внимание", +"The object type is not specified." => "Видът на обекта не е избран", "Delete" => "Изтриване", "Add" => "Добавяне", "You will receive a link to reset your password via Email." => "Ще получите връзка за нулиране на паролата Ви.", @@ -55,7 +84,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Достъпът е забранен", "Cloud not found" => "облакът не намерен", "Create an admin account" => "Създаване на админ профил", -"Advanced" => "Разширено", "Data folder" => "Директория за данни", "Configure the database" => "Конфигуриране на базата", "will be used" => "ще се ползва", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index d9de954152..86067cfaf1 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -87,7 +87,6 @@ $TRANSLATIONS = array( "Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", "Security Warning" => "নিরাপত্তাজনিত সতর্কতা", "Create an admin account" => "প্রশাসক একাউন্ট তৈরী করুন", -"Advanced" => "সুচারু", "Data folder" => "ডাটা ফোল্ডার ", "Configure the database" => "ডাটাবেচ কনফিগার করুন", "will be used" => "ব্যবহৃত হবে", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index d8076172ce..dce34926e4 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -1,6 +1,5 @@ "%s ha compartit »%s« amb tu", "Couldn't send mail to following users: %s " => "No s'ha pogut enviar correu als usuaris següents: %s", "Turned on maintenance mode" => "Activat el mode de manteniment", "Turned off maintenance mode" => "Desactivat el mode de manteniment", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "La carpeta de dades i els seus fitxers probablement són accessibles des d'internet perquè el fitxer .htaccess no funciona.", "For information how to properly configure your server, please see the documentation." => "Per informació de com configurar el servidor, comproveu la documentació.", "Create an admin account" => "Crea un compte d'administrador", -"Advanced" => "Avançat", "Data folder" => "Carpeta de dades", "Configure the database" => "Configura la base de dades", "will be used" => "s'usarà", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "recorda'm", "Log in" => "Inici de sessió", "Alternative Logins" => "Acreditacions alternatives", -"Hey there,

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

" => "Ei,

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

", "This ownCloud instance is currently in single user mode." => "La instància ownCloud està en mode d'usuari únic.", "This means only administrators can use the instance." => "Això significa que només els administradors poden usar la instància.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Contacteu amb l'administrador del sistema si aquest missatge persisteix o apareix inesperadament.", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 38825aaeea..59e98aaed8 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,6 +1,5 @@ "%s s vámi sdílí »%s«", "Couldn't send mail to following users: %s " => "Nebylo možné odeslat e-mail následujícím uživatelům: %s", "Turned on maintenance mode" => "Zapnut režim údržby", "Turned off maintenance mode" => "Vypnut režim údržby", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje.", "For information how to properly configure your server, please see the documentation." => "Pro informace, jak správně nastavit váš server, se podívejte do dokumentace.", "Create an admin account" => "Vytvořit účet správce", -"Advanced" => "Pokročilé", "Data folder" => "Složka s daty", "Configure the database" => "Nastavit databázi", "will be used" => "bude použito", @@ -154,7 +152,7 @@ $TRANSLATIONS = array( "Database host" => "Hostitel databáze", "Finish setup" => "Dokončit nastavení", "Finishing …" => "Dokončuji...", -"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Tato aplikace potřebuje pro svou správnou funkčnost mít povolený javascript. Prosím povolte JavaScript a znovu načtěte toto rozhraní.", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Tato aplikace vyžaduje pro svou správnou funkčnost povolený JavaScript. Prosím povolte JavaScript a znovu načtěte toto rozhraní.", "%s is available. Get more information on how to update." => "%s je dostupná. Získejte více informací k postupu aktualizace.", "Log out" => "Odhlásit se", "Automatic logon rejected!" => "Automatické přihlášení odmítnuto!", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "zapamatovat", "Log in" => "Přihlásit", "Alternative Logins" => "Alternativní přihlášení", -"Hey there,

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

" => "Hej ty tam,

jen ti chci dát vědět, že %s sdílel »%s« s tebou.
Zobrazit!

", "This ownCloud instance is currently in single user mode." => "Tato instalace ownCloudu je momentálně v jednouživatelském módu.", "This means only administrators can use the instance." => "To znamená, že pouze správci systému mohou aplikaci používat.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktujte, prosím, správce systému, pokud se tato zpráva objevuje opakovaně nebo nečekaně.", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index aa10715d0a..40f4ba6fcd 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -96,7 +96,6 @@ $TRANSLATIONS = array( "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Mwy na thebyg fod modd cyrraedd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. ", "Create an admin account" => "Crewch gyfrif gweinyddol", -"Advanced" => "Uwch", "Data folder" => "Plygell data", "Configure the database" => "Cyflunio'r gronfa ddata", "will be used" => "ddefnyddir", diff --git a/core/l10n/da.php b/core/l10n/da.php index 9c7fdc889f..9b1fd2f33a 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -1,6 +1,5 @@ "%s delte »%s« med sig", "Couldn't send mail to following users: %s " => "Kunne ikke sende mail til følgende brugere: %s", "Turned on maintenance mode" => "Startede vedligeholdelsestilstand", "Turned off maintenance mode" => "standsede vedligeholdelsestilstand", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet fordi .htaccess filen ikke virker.", "For information how to properly configure your server, please see the documentation." => "For information om, hvordan du konfigurerer din server korrekt se dokumentationen.", "Create an admin account" => "Opret en administratorkonto", -"Advanced" => "Avanceret", "Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", "will be used" => "vil blive brugt", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "husk", "Log in" => "Log ind", "Alternative Logins" => "Alternative logins", -"Hey there,

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

" => "Hej med dig,

Dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
Se det her!

Hej", "This ownCloud instance is currently in single user mode." => "Denne ownCloud instans er lige nu i enkeltbruger tilstand.", "This means only administrators can use the instance." => "Det betyder at det kun er administrator, som kan benytte ownCloud.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakt systemadministratoren, hvis denne meddelelse fortsætter eller optrådte uventet.", diff --git a/core/l10n/de.php b/core/l10n/de.php index 9904aeb803..35cb75d078 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,6 +1,5 @@ "%s teilte »%s« mit Dir", "Couldn't send mail to following users: %s " => "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dein Datenverzeichnis und Deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert.", "For information how to properly configure your server, please see the documentation." => "Für Informationen, wie Du Deinen Server richtig konfigurierst, lies bitte die Dokumentation.", "Create an admin account" => "Administrator-Konto anlegen", -"Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", "Configure the database" => "Datenbank einrichten", "will be used" => "wird verwendet", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "merken", "Log in" => "Einloggen", "Alternative Logins" => "Alternative Logins", -"Hey there,

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

" => "Hallo,

wollte Dich nur kurz informieren, dass %s gerade %s mit Dir geteilt hat.
Schau es Dir an.

", "This ownCloud instance is currently in single user mode." => "Diese ownClound-Instanz befindet sich derzeit im Einzelbenutzermodus.", "This means only administrators can use the instance." => "Dies bedeutet, dass diese Instanz nur von Administratoren genutzt werden kann.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktiere Deinen Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint.", diff --git a/core/l10n/de_AT.php b/core/l10n/de_AT.php index ffcdde48d4..54c3946342 100644 --- a/core/l10n/de_AT.php +++ b/core/l10n/de_AT.php @@ -1,9 +1,37 @@ "Sonntag", +"Monday" => "Montag", +"Tuesday" => "Dienstag", +"Wednesday" => "Mittwoch", +"Thursday" => "Donnerstag", +"Friday" => "Freitag", +"Saturday" => "Samstag", +"January" => "Januar", +"February" => "Februar", +"March" => "März", +"April" => "April", +"May" => "Mai", +"June" => "Juni", +"July" => "Juli", +"August" => "August", +"September" => "September", +"October" => "Oktober", +"November" => "November", +"December" => "Dezember", +"Settings" => "Einstellungen", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), "_%n day ago_::_%n days ago_" => array("",""), "_%n month ago_::_%n months ago_" => array("",""), -"_{count} file conflict_::_{count} file conflicts_" => array("","") +"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Cancel" => "Abbrechen", +"Share" => "Freigeben", +"Password" => "Passwort", +"group" => "Gruppe", +"Unshare" => "Teilung zurücknehmen", +"can edit" => "kann bearbeiten", +"Delete" => "Löschen", +"Personal" => "Persönlich" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index cdd9343823..316f27cb6b 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -1,6 +1,5 @@ "%s teilt »%s« mit Ihnen", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", "Updated database" => "Datenbank aktualisiert", @@ -109,7 +108,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert.", "For information how to properly configure your server, please see the documentation." => "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie bitte die Dokumentation.", "Create an admin account" => "Administrator-Konto anlegen", -"Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", "Configure the database" => "Datenbank einrichten", "will be used" => "wird verwendet", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index e9abf57a00..7078638dbf 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,6 +1,5 @@ "%s hat »%s« mit Ihnen geteilt", "Couldn't send mail to following users: %s " => "An folgende Benutzer konnte keine E-Mail gesendet werden: %s", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet ", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", @@ -141,9 +140,8 @@ $TRANSLATIONS = array( "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert.", -"For information how to properly configure your server, please see the documentation." => "Bitte lesen Sie die Dokumentation, um zu erfahren, wie Sie Ihr Server richtig konfigurieren können.", +"For information how to properly configure your server, please see the documentation." => "Bitte lesen Sie die Dokumentation, um zu erfahren, wie Sie Ihren Server richtig konfigurieren können.", "Create an admin account" => "Administrator-Konto anlegen", -"Advanced" => "Fortgeschritten", "Data folder" => "Datenverzeichnis", "Configure the database" => "Datenbank einrichten", "will be used" => "wird verwendet", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "merken", "Log in" => "Einloggen", "Alternative Logins" => "Alternative Logins", -"Hey there,

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

" => "Hallo,

%s hat %s mit Ihnen geteilt.
Schauen Sie es sich an!

", "This ownCloud instance is currently in single user mode." => "Diese ownClound-Instanz befindet sich derzeit im Einzelbenutzermodus.", "This means only administrators can use the instance." => "Dies bedeutet, dass diese Instanz nur von Administratoren genutzt werden kann.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktieren Sie Ihren Systemadministrator, wenn diese Meldung dauerhaft oder unerwartet erscheint.", diff --git a/core/l10n/el.php b/core/l10n/el.php index f726a232f0..a6f408e3bf 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,6 +1,5 @@ "Ο %s διαμοιράστηκε μαζί σας το »%s«", "Couldn't send mail to following users: %s " => "Αδυναμία αποστολής μηνύματος στους ακόλουθους χρήστες: %s", "Turned on maintenance mode" => "Η κατάσταση συντήρησης ενεργοποιήθηκε", "Turned off maintenance mode" => "Η κατάσταση συντήρησης απενεργοποιήθηκε", @@ -142,7 +141,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανό προσβάσιμα από το internet γιατί δεν δουλεύει το αρχείο .htaccess.", "For information how to properly configure your server, please see the documentation." => "Για πληροφορίες πως να ρυθμίσετε ορθά τον διακομιστή σας, παρακαλώ δείτε την τεκμηρίωση.", "Create an admin account" => "Δημιουργήστε έναν λογαριασμό διαχειριστή", -"Advanced" => "Για προχωρημένους", "Data folder" => "Φάκελος δεδομένων", "Configure the database" => "Ρύθμιση της βάσης δεδομένων", "will be used" => "θα χρησιμοποιηθούν", @@ -165,12 +163,12 @@ $TRANSLATIONS = array( "remember" => "απομνημόνευση", "Log in" => "Είσοδος", "Alternative Logins" => "Εναλλακτικές Συνδέσεις", -"Hey there,

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

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

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

", "This ownCloud instance is currently in single user mode." => "Αυτή η εγκατάσταση ownCloud είναι τώρα σε κατάσταση ενός χρήστη.", "This means only administrators can use the instance." => "Αυτό σημαίνει ότι μόνο διαχειριστές μπορούν να χρησιμοποιήσουν την εγκατάσταση.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Επικοινωνήστε με το διαχειριστή του συστήματος αν αυτό το μήνυμα συνεχίζει να εμφανίζεται ή εμφανίστηκε απρόσμενα.", "Thank you for your patience." => "Σας ευχαριστούμε για την υπομονή σας.", "Updating ownCloud to version %s, this may take a while." => "Ενημερώνοντας το ownCloud στην έκδοση %s,μπορεί να πάρει λίγο χρόνο.", +"This ownCloud instance is currently being updated, which may take a while." => "Αυτή η εγκατάσταση ownCloud ενημερώνεται, το οποίο μπορεί να πάρει κάποιο χρόνο.", "Please reload this page after a short time to continue using ownCloud." => "Παρακαλώ ανανεώστε αυτή τη σελίδα μετά από ένα σύντομο χρονικό διάστημα ώστε να συνεχίσετε να χρησιμοποιείτε το ownCloud." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index dc8b5b11fd..37abde042e 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -1,6 +1,5 @@ "%s shared \"%s\" with you", "Couldn't send mail to following users: %s " => "Couldn't send mail to following users: %s ", "Turned on maintenance mode" => "Turned on maintenance mode", "Turned off maintenance mode" => "Turned off maintenance mode", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Your data directory and files are probably accessible from the internet because the .htaccess file does not work.", "For information how to properly configure your server, please see the documentation." => "For information how to properly configure your server, please see the documentation.", "Create an admin account" => "Create an admin account", -"Advanced" => "Advanced", "Data folder" => "Data folder", "Configure the database" => "Configure the database", "will be used" => "will be used", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "remember", "Log in" => "Log in", "Alternative Logins" => "Alternative Logins", -"Hey there,

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

" => "Hey there,

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

", "This ownCloud instance is currently in single user mode." => "This ownCloud instance is currently in single user mode.", "This means only administrators can use the instance." => "This means only administrators can use the instance.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Contact your system administrator if this message persists or appeared unexpectedly.", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 2f779a551b..c2da11c3aa 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -1,6 +1,11 @@ "%s kunhavigis “%s” kun vi", +"Updated database" => "Ĝisdatiĝis datumbazo", +"Updating filecache, this may take really long..." => "Ĝisdatigante la dosierkaŝmemoron, ĉi tio povas daŭri tro longe...", +"Updated filecache" => "Ĝisdatiĝis dosierkaŝmemoro", +"... %d%% done ..." => "... %d%% plenumiĝis ...", +"Unknown filetype" => "Ne konatas dosiertipo", +"Invalid image" => "Ne validas bildo", "Sunday" => "dimanĉo", "Monday" => "lundo", "Tuesday" => "mardo", @@ -22,13 +27,13 @@ $TRANSLATIONS = array( "December" => "Decembro", "Settings" => "Agordo", "seconds ago" => "sekundoj antaŭe", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("antaŭ %n minuto","antaŭ %n minutoj"), +"_%n hour ago_::_%n hours ago_" => array("antaŭ %n horo","antaŭ %n horoj"), "today" => "hodiaŭ", "yesterday" => "hieraŭ", -"_%n day ago_::_%n days ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("antaŭ %n tago","antaŭ %n tagoj"), "last month" => "lastamonate", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("antaŭ %n monato","antaŭ %n monatoj"), "months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", @@ -36,8 +41,13 @@ $TRANSLATIONS = array( "Yes" => "Jes", "No" => "Ne", "Ok" => "Akcepti", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("{count} dosierkonflikto","{count} dosierkonfliktoj"), +"One file conflict" => "Unu dosierkonflikto", +"Which files do you want to keep?" => "Kiujn dosierojn vi volas konservi?", +"If you select both versions, the copied file will have a number added to its name." => "Se vi elektos ambaŭ eldonojn, la kopiota dosiero havos numeron aldonitan al sia nomo.", "Cancel" => "Nuligi", +"(all selected)" => "(ĉiuj elektitas)", +"({count} selected)" => "({count} elektitas)", "Shared" => "Dividita", "Share" => "Kunhavigi", "Error" => "Eraro", @@ -46,6 +56,8 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Eraro dum ŝanĝo de permesoj", "Shared with you and the group {group} by {owner}" => "Kunhavigita kun vi kaj la grupo {group} de {owner}", "Shared with you by {owner}" => "Kunhavigita kun vi de {owner}", +"Share with user or group …" => "Kunhavigi kun uzanto aŭ grupo...", +"Share link" => "Konhavigi ligilon", "Password protect" => "Protekti per pasvorto", "Password" => "Pasvorto", "Email link to person" => "Retpoŝti la ligilon al ulo", @@ -58,6 +70,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Rekunhavigo ne permesatas", "Shared in {item} with {user}" => "Kunhavigita en {item} kun {user}", "Unshare" => "Malkunhavigi", +"notify by email" => "avizi per retpoŝto", "can edit" => "povas redakti", "access control" => "alirkontrolo", "create" => "krei", @@ -71,8 +84,12 @@ $TRANSLATIONS = array( "Email sent" => "La retpoŝtaĵo sendiĝis", "Warning" => "Averto", "The object type is not specified." => "Ne indikiĝis tipo de la objekto.", +"Enter new" => "Enigu novan", "Delete" => "Forigi", "Add" => "Aldoni", +"Edit tags" => "Redakti etikedojn", +"No tags selected for deletion." => "Neniu etikedo elektitas por forigo.", +"Please reload the page." => "Bonvolu reŝargi la paĝon.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la ownClouda komunumo.", "The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", @@ -89,13 +106,18 @@ $TRANSLATIONS = array( "Apps" => "Aplikaĵoj", "Admin" => "Administranto", "Help" => "Helpo", +"Error loading tags" => "Eraris ŝargo de etikedoj", +"Tag already exists" => "La etikedo jam ekzistas", +"Error deleting tag(s)" => "Eraris forigo de etikedo(j)", +"Error tagging" => "Eraris etikedado", +"Error untagging" => "Eraris maletikedado", "Access forbidden" => "Aliro estas malpermesata", "Cloud not found" => "La nubo ne estas trovita", "Security Warning" => "Sekureca averto", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Bonvolu ĝisdatigi vian PHP-instalon por uzi %s sekure.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ne disponeblas sekura generilo de hazardaj numeroj; bonvolu kapabligi la OpenSSL-kromaĵon por PHP.", "Create an admin account" => "Krei administran konton", -"Advanced" => "Progresinta", "Data folder" => "Datuma dosierujo", "Configure the database" => "Agordi la datumbazon", "will be used" => "estos uzata", @@ -105,15 +127,18 @@ $TRANSLATIONS = array( "Database tablespace" => "Datumbaza tabelospaco", "Database host" => "Datumbaza gastigo", "Finish setup" => "Fini la instalon", +"Finishing …" => "Finante...", "%s is available. Get more information on how to update." => "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi.", "Log out" => "Elsaluti", "Automatic logon rejected!" => "La aŭtomata ensaluto malakceptiĝis!", "If you did not change your password recently, your account may be compromised!" => "Se vi ne ŝanĝis vian pasvorton lastatempe, via konto eble kompromitas!", "Please change your password to secure your account again." => "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree.", +"Please contact your administrator." => "Bonvolu kontakti vian administranton.", "Lost your password?" => "Ĉu vi perdis vian pasvorton?", "remember" => "memori", "Log in" => "Ensaluti", "Alternative Logins" => "Alternativaj ensalutoj", +"Thank you for your patience." => "Dankon pro via pacienco.", "Updating ownCloud to version %s, this may take a while." => "ownCloud ĝisdatiĝas al eldono %s, tio ĉi povas daŭri je iom da tempo." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es.php b/core/l10n/es.php index 6bee4fabaf..56550277fc 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,6 +1,5 @@ "%s ha compatido »%s« contigo", "Couldn't send mail to following users: %s " => "No se pudo enviar el mensaje a los siguientes usuarios: %s", "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", @@ -82,7 +81,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "No se permite compartir de nuevo", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Dejar de compartir", -"notify by email" => "notificar al usuario por correo electrónico", +"notify by email" => "notificar por correo electrónico", "can edit" => "puede editar", "access control" => "control de acceso", "create" => "crear", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona.", "For information how to properly configure your server, please see the documentation." => "Para información de cómo configurar apropiadamente su servidor, por favor vea la documentación.", "Create an admin account" => "Crear una cuenta de administrador", -"Advanced" => "Avanzado", "Data folder" => "Directorio de datos", "Configure the database" => "Configurar la base de datos", "will be used" => "se utilizarán", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "recordar", "Log in" => "Entrar", "Alternative Logins" => "Inicios de sesión alternativos", -"Hey there,

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

" => "Hola:

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

", "This ownCloud instance is currently in single user mode." => "Esta instalación de ownCloud se encuentra en modo de usuario único.", "This means only administrators can use the instance." => "Esto quiere decir que solo un administrador puede usarla.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada.", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 3b77aa71e2..b016a05400 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -1,14 +1,17 @@ "%s compartió \"%s\" con vos", +"Couldn't send mail to following users: %s " => "No se pudieron mandar correos a los siguientes usuarios: %s", "Turned on maintenance mode" => "Modo de mantenimiento activado", "Turned off maintenance mode" => "Modo de mantenimiento desactivado", "Updated database" => "Base de datos actualizada", "Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar mucho tiempo...", "Updated filecache" => "Caché de archivos actualizada", "... %d%% done ..." => "... %d%% hecho ...", +"No image or file provided" => "No se ha proveído de una imágen o archivo.", "Unknown filetype" => "Tipo de archivo desconocido", "Invalid image" => "Imagen inválida", +"No temporary profile picture available, try again" => "No hay una imágen temporal del perfil disponible, intente de nuevo", +"No crop data provided" => "No se proveyeron datos de recorte", "Sunday" => "Domingo", "Monday" => "Lunes", "Tuesday" => "Martes", @@ -41,11 +44,20 @@ $TRANSLATIONS = array( "last year" => "el año pasado", "years ago" => "años atrás", "Choose" => "Elegir", +"Error loading file picker template: {error}" => "Error cargando la plantilla del selector de archivo: {error}", "Yes" => "Sí", "No" => "No", "Ok" => "Aceptar", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Error loading message template: {error}" => "Error cargando la plantilla del mensaje: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("un archivo en conflicto","{count} archivos en conflicto"), +"One file conflict" => "Un archivo en conflicto", +"Which files do you want to keep?" => "¿Qué archivos deseas retener?", +"If you select both versions, the copied file will have a number added to its name." => "Si tu seleccionas ambas versiones, el archivo copiado tendrá un número agregado a su nombre.", "Cancel" => "Cancelar", +"Continue" => "Continuar", +"(all selected)" => "(todos están seleccionados)", +"({count} selected)" => "({count} seleccionados)", +"Error loading file exists template" => "Error cargando la plantilla de archivo existente", "Shared" => "Compartido", "Share" => "Compartir", "Error" => "Error", @@ -54,6 +66,8 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Error al cambiar permisos", "Shared with you and the group {group} by {owner}" => "Compartido con vos y el grupo {group} por {owner}", "Shared with you by {owner}" => "Compartido con vos por {owner}", +"Share with user or group …" => "Compartir con usuario o grupo ...", +"Share link" => "Compartir vínculo", "Password protect" => "Proteger con contraseña ", "Password" => "Contraseña", "Allow Public Upload" => "Permitir Subida Pública", @@ -67,6 +81,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "No se permite volver a compartir", "Shared in {item} with {user}" => "Compartido en {item} con {user}", "Unshare" => "Dejar de compartir", +"notify by email" => "notificar por correo", "can edit" => "podés editar", "access control" => "control de acceso", "create" => "crear", @@ -80,8 +95,13 @@ $TRANSLATIONS = array( "Email sent" => "e-mail mandado", "Warning" => "Atención", "The object type is not specified." => "El tipo de objeto no está especificado. ", +"Enter new" => "Entrar nuevo", "Delete" => "Borrar", "Add" => "Agregar", +"Edit tags" => "Editar etiquetas", +"Error loading dialog template: {error}" => "Error cargando la plantilla de dialogo: {error}", +"No tags selected for deletion." => "No se han seleccionado etiquetas para eliminar.", +"Please reload the page." => "Por favor, recargue la página.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.", "%s password reset" => "%s restablecer contraseña", @@ -102,8 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Apps", "Admin" => "Administración", "Help" => "Ayuda", +"Error loading tags" => "Error cargando las etiquetas", +"Tag already exists" => "La etiqueta ya existe", +"Error deleting tag(s)" => "Error borrando etiquetas(s)", +"Error tagging" => "Error al etiquetar", +"Error untagging" => "Error al sacar la etiqueta", +"Error favoriting" => "Error al favorecer", +"Error unfavoriting" => "Error al desfavorecer", "Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encontró ownCloud", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "¡Hola!\n\nsólo te quería decir que %s acaba de compartir %s contigo.\nVerlo: %s\n\n", +"The share will expire on %s." => "El compartir expirará en %s.", +"Cheers!" => "¡Saludos!", "Security Warning" => "Advertencia de seguridad", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Por favor, actualizá tu instalación PHP para poder usar %s de manera segura.", @@ -112,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Tu directorio de datos y tus archivos probablemente son accesibles a través de internet, ya que el archivo .htaccess no está funcionando.", "For information how to properly configure your server, please see the documentation." => "Para información sobre cómo configurar apropiadamente tu servidor, por favor mirá la documentación.", "Create an admin account" => "Crear una cuenta de administrador", -"Advanced" => "Avanzado", "Data folder" => "Directorio de almacenamiento", "Configure the database" => "Configurar la base de datos", "will be used" => "se usarán", @@ -122,15 +151,25 @@ $TRANSLATIONS = array( "Database tablespace" => "Espacio de tablas de la base de datos", "Database host" => "Huésped de la base de datos", "Finish setup" => "Completar la instalación", +"Finishing …" => "Finalizando...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Esta aplicación requiere de JavaScript para su correcto funcionamiento. Por favor habilite JavaScript y recargue.", "%s is available. Get more information on how to update." => "%s está disponible. Obtené más información sobre cómo actualizar.", "Log out" => "Cerrar la sesión", "Automatic logon rejected!" => "¡El inicio de sesión automático fue rechazado!", "If you did not change your password recently, your account may be compromised!" => "¡Si no cambiaste tu contraseña recientemente, puede ser que tu cuenta esté comprometida!", "Please change your password to secure your account again." => "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cuenta.", +"Server side authentication failed!" => "¡Falló la autenticación del servidor!", +"Please contact your administrator." => "Por favor, contacte a su administrador.", "Lost your password?" => "¿Perdiste tu contraseña?", "remember" => "recordame", "Log in" => "Iniciar sesión", "Alternative Logins" => "Nombre alternativos de usuarios", -"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede demorar un rato." +"This ownCloud instance is currently in single user mode." => "Esta instancia de ownCloud está en modo de usuario único.", +"This means only administrators can use the instance." => "Esto significa que solo administradores pueden usar esta instancia.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte su administrador de sistema si este mensaje persiste o aparece inesperadamente.", +"Thank you for your patience." => "Gracias por su paciencia.", +"Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, puede demorar un rato.", +"This ownCloud instance is currently being updated, which may take a while." => "Esta instancia de ownClod está siendo actualizada, puede tardar un momento.", +"Please reload this page after a short time to continue using ownCloud." => "Por favor, recargue esta página después de un tiempo para continuar usando ownCloud." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_CL.php b/core/l10n/es_CL.php index 819cc68a1c..b89e6575c5 100644 --- a/core/l10n/es_CL.php +++ b/core/l10n/es_CL.php @@ -1,12 +1,50 @@ "Domingo", +"Monday" => "Lunes", +"Tuesday" => "Martes", +"Wednesday" => "Miércoles", +"Thursday" => "Jueves", +"Friday" => "Viernes", +"Saturday" => "Sábado", +"January" => "Enero", +"February" => "Febrero", +"March" => "Marzo", +"April" => "Abril", +"May" => "Mayo", +"June" => "Junio", +"July" => "Julio", +"August" => "Agosto", +"September" => "Septiembre", +"October" => "Octubre", +"November" => "Noviembre", +"December" => "Diciembre", "Settings" => "Configuración", +"seconds ago" => "segundos antes", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), +"today" => "hoy", +"yesterday" => "ayer", "_%n day ago_::_%n days ago_" => array("",""), +"last month" => "mes anterior", "_%n month ago_::_%n months ago_" => array("",""), +"months ago" => "meses antes", +"last year" => "último año", +"years ago" => "años anteriores", +"Choose" => "Choose", +"Yes" => "Si", +"No" => "No", +"Ok" => "Ok", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Cancel" => "Cancelar", +"Shared" => "Compartido", +"Share" => "Compartir", +"Error" => "Error", +"Error while sharing" => "Ocurrió un error mientras compartía", +"Error while unsharing" => "Ocurrió un error mientras dejaba de compartir", +"Error while changing permissions" => "Ocurrió un error mientras se cambiaban los permisos", "Password" => "Clave", +"The object type is not specified." => "El tipo de objeto no está especificado.", "Username" => "Usuario" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_MX.php b/core/l10n/es_MX.php index 776233c1ab..54c4829958 100644 --- a/core/l10n/es_MX.php +++ b/core/l10n/es_MX.php @@ -1,6 +1,5 @@ "%s ha compartido »%s« contigo", "Couldn't send mail to following users: %s " => "No se pudo enviar el mensaje a los siguientes usuarios: %s", "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona.", "For information how to properly configure your server, please see the documentation." => "Para información de cómo configurar apropiadamente su servidor, por favor vea la documentación.", "Create an admin account" => "Crear una cuenta de administrador", -"Advanced" => "Avanzado", "Data folder" => "Directorio de datos", "Configure the database" => "Configurar la base de datos", "will be used" => "se utilizarán", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "recordar", "Log in" => "Entrar", "Alternative Logins" => "Accesos Alternativos", -"Hey there,

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

" => "Hola:

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

", "This ownCloud instance is currently in single user mode." => "Esta instalación de ownCloud se encuentra en modo de usuario único.", "This means only administrators can use the instance." => "Esto quiere decir que solo un administrador puede usarla.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte con su administrador de sistemas si este mensaje persiste o aparece de forma inesperada.", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 53928510e1..21cd8fbfd5 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,6 +1,5 @@ "%s jagas sinuga »%s«", "Couldn't send mail to following users: %s " => "Kirja saatmine järgnevatele kasutajatele ebaõnnestus: %s ", "Turned on maintenance mode" => "Haldusrežiimis sisse lülitatud", "Turned off maintenance mode" => "Haldusrežiimis välja lülitatud", @@ -132,7 +131,7 @@ $TRANSLATIONS = array( "Error unfavoriting" => "Viga lemmikutest eemaldamisel", "Access forbidden" => "Ligipääs on keelatud", "Cloud not found" => "Pilve ei leitud", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Tere,\n\n%s jagas sulle välja %s.\nVaata siit: %s\n\n", "The share will expire on %s." => "Jagamine aegub %s.", "Cheers!" => "Terekest!", "Security Warning" => "Turvahoiatus", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su andmete kataloog ja failid on tõenäoliselt internetist vabalt saadaval kuna .htaccess fail ei toimi.", "For information how to properly configure your server, please see the documentation." => "Serveri korrektseks seadistuseks palun tutvu dokumentatsiooniga.", "Create an admin account" => "Loo admini konto", -"Advanced" => "Täpsem", "Data folder" => "Andmete kaust", "Configure the database" => "Seadista andmebaasi", "will be used" => "kasutatakse", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "pea meeles", "Log in" => "Logi sisse", "Alternative Logins" => "Alternatiivsed sisselogimisviisid", -"Hey there,

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

" => "Hei,

lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.
Vaata seda!

", "This ownCloud instance is currently in single user mode." => "See ownCloud on momendil seadistatud ühe kasutaja jaoks.", "This means only administrators can use the instance." => "See tähendab, et seda saavad kasutada ainult administraatorid.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakteeru oma süsteemihalduriga, kui see teade püsib või on tekkinud ootamatult.", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index ff74606545..658aff3c44 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -1,6 +1,5 @@ "%s-ek »%s« zurekin partekatu du", "Couldn't send mail to following users: %s " => "Ezin izan da posta bidali hurrengo erabiltzaileei: %s", "Turned on maintenance mode" => "Mantenu modua gaitu da", "Turned off maintenance mode" => "Mantenu modua desgaitu da", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Zure data karpeta eta fitxategiak interneten bidez eskuragarri egon daitezke .htaccess fitxategia ez delako funtzionatzen ari.", "For information how to properly configure your server, please see the documentation." => "Zure zerbitrzaria ongi konfiguratzeko, mezedez dokumentazioa ikusi.", "Create an admin account" => "Sortu kudeatzaile kontu bat", -"Advanced" => "Aurreratua", "Data folder" => "Datuen karpeta", "Configure the database" => "Konfiguratu datu basea", "will be used" => "erabiliko da", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "gogoratu", "Log in" => "Hasi saioa", "Alternative Logins" => "Beste erabiltzaile izenak", -"Hey there,

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

" => "Kaixo

%s-ek %s zurekin partekatu duela jakin dezazun.
\nIkusi ezazu

", "This ownCloud instance is currently in single user mode." => "ownCloud instantzia hau erabiltzaile bakar moduan dago.", "This means only administrators can use the instance." => "Honek administradoreak bakarrik erabili dezakeela esan nahi du.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Jarri harremanetan zure sistema administratzailearekin mezu hau irauten badu edo bat-batean agertu bada.", diff --git a/core/l10n/eu_ES.php b/core/l10n/eu_ES.php new file mode 100644 index 0000000000..3606866bf7 --- /dev/null +++ b/core/l10n/eu_ES.php @@ -0,0 +1,12 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Cancel" => "Ezeztatu", +"Delete" => "Ezabatu", +"Personal" => "Pertsonala" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/fa.php b/core/l10n/fa.php index bcb8bf2576..8146fcd3dc 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -1,6 +1,5 @@ "%s به اشتراک گذاشته شده است »%s« توسط شما", "Sunday" => "یکشنبه", "Monday" => "دوشنبه", "Tuesday" => "سه شنبه", @@ -46,6 +45,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "خطا در حال تغییر مجوز", "Shared with you and the group {group} by {owner}" => "به اشتراک گذاشته شده با شما و گروه {گروه} توسط {دارنده}", "Shared with you by {owner}" => "به اشتراک گذاشته شده با شما توسط { دارنده}", +"Share link" => "اشتراک گذاشتن لینک", "Password protect" => "نگهداری کردن رمز عبور", "Password" => "گذرواژه", "Allow Public Upload" => "اجازه آپلود عمومی", @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "بدون وجود یک تولید کننده اعداد تصادفی امن ، یک مهاجم ممکن است این قابلیت را داشته باشد که پیشگویی کند پسوورد های راه انداز گرفته شده و کنترلی روی حساب کاربری شما داشته باشد .", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند.", "Create an admin account" => "لطفا یک شناسه برای مدیر بسازید", -"Advanced" => "پیشرفته", "Data folder" => "پوشه اطلاعاتی", "Configure the database" => "پایگاه داده برنامه ریزی شدند", "will be used" => "استفاده خواهد شد", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 4109ea8e89..c97c2e254f 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,6 +1,5 @@ "%s jakoi kohteen »%s« kanssasi", "Couldn't send mail to following users: %s " => "Sähköpostin lähetys seuraaville käyttäjille epäonnistui: %s", "Turned on maintenance mode" => "Siirrytty ylläpitotilaan", "Turned off maintenance mode" => "Ylläpitotila laitettu pois päältä", @@ -12,6 +11,7 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tuntematon tiedostotyyppi", "Invalid image" => "Virhellinen kuva", "No temporary profile picture available, try again" => "Väliaikaista profiilikuvaa ei ole käytettävissä, yritä uudelleen", +"No crop data provided" => "Puutteellinen tieto", "Sunday" => "sunnuntai", "Monday" => "maanantai", "Tuesday" => "tiistai", @@ -44,6 +44,7 @@ $TRANSLATIONS = array( "last year" => "viime vuonna", "years ago" => "vuotta sitten", "Choose" => "Valitse", +"Error loading file picker template: {error}" => "Virhe ladatessa tiedostopohjia: {error}", "Yes" => "Kyllä", "No" => "Ei", "Ok" => "Ok", @@ -56,6 +57,7 @@ $TRANSLATIONS = array( "Continue" => "Jatka", "(all selected)" => "(kaikki valittu)", "({count} selected)" => "({count} valittu)", +"Error loading file exists template" => "Virhe ladatessa mallipohjaa", "Shared" => "Jaettu", "Share" => "Jaa", "Error" => "Virhe", @@ -92,10 +94,12 @@ $TRANSLATIONS = array( "Sending ..." => "Lähetetään...", "Email sent" => "Sähköposti lähetetty", "Warning" => "Varoitus", +"The object type is not specified." => "The object type is not specified.", "Enter new" => "Kirjoita uusi", "Delete" => "Poista", "Add" => "Lisää", "Edit tags" => "Muokkaa tunnisteita", +"Error loading dialog template: {error}" => "Virhe ladatessa keskustelupohja: {error}", "No tags selected for deletion." => "Tunnisteita ei valittu poistettavaksi.", "Please reload the page." => "Päivitä sivu.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Päivitys epäonnistui. Ilmoita ongelmasta ownCloud-yhteisölle.", @@ -121,18 +125,23 @@ $TRANSLATIONS = array( "Error loading tags" => "Virhe tunnisteita ladattaessa", "Tag already exists" => "Tunniste on jo olemassa", "Error deleting tag(s)" => "Virhe tunnisteita poistaessa", +"Error tagging" => "Tunnisteiden kirjoitusvirhe", +"Error untagging" => "Tunisteiden poisto virhe", +"Error favoriting" => "Suosituksen kirjoitusvirhe", +"Error unfavoriting" => "Suosituksen poisto virhe", "Access forbidden" => "Pääsy estetty", "Cloud not found" => "Pilveä ei löydy", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei sinä!\n\n%s jakoi kohteen %s kanssasi.\nTutustu siihen: %s\n\n", "The share will expire on %s." => "Jakaminen päättyy %s.", +"Cheers!" => "Kippis!", "Security Warning" => "Turvallisuusvaroitus", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-asennuksesi on haavoittuvainen NULL Byte -hyökkäykselle (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Päivitä PHP-asennus varmistaaksesi, että %s on turvallinen käyttää.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Turvallista satunnaislukugeneraattoria ei ole käytettävissä, ota käyttöön PHP:n OpenSSL-laajennus", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ilman turvallinen satunnaislukugeneraattori, hyökkääjä saattaa pystyä ennustamaan salasanan tunnuksineen ja ottaa tilisi.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Datakansiosi ja tiedostosi ovat mitä luultavimmin muiden saavutettavissa internetistä, koska .htaccess-tiedosto ei toimi.", "For information how to properly configure your server, please see the documentation." => "Lisätietoja palvelimen asetuksien määrittämisestä on saatavilla dokumentaatiosta.", "Create an admin account" => "Luo ylläpitäjän tunnus", -"Advanced" => "Lisäasetukset", "Data folder" => "Datakansio", "Configure the database" => "Muokkaa tietokantaa", "will be used" => "käytetään", @@ -155,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "muista", "Log in" => "Kirjaudu sisään", "Alternative Logins" => "Vaihtoehtoiset kirjautumiset", -"Hey there,

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

" => "Hei sinä!

%s jakoi kohteen »%s« kanssasi.
Tutustu siihen!

", "This ownCloud instance is currently in single user mode." => "Tämä ownCloud-asennus on parhaillaan single user -tilassa.", "This means only administrators can use the instance." => "Se tarkoittaa, että vain ylläpitäjät voivat nyt käyttää tätä ownCloudia.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Ota yhteys järjestelmän ylläpitäjään, jos tämä viesti ilmenee uudelleen tai odottamatta.", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index d73355a4e2..37bca37a34 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,6 +1,5 @@ "%s partagé »%s« avec vous", "Couldn't send mail to following users: %s " => "Impossible d'envoyer un mail aux utilisateurs suivant : %s", "Turned on maintenance mode" => "Basculé en mode maintenance", "Turned off maintenance mode" => "Basculé en mode production (non maintenance)", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Votre répertoire data est certainement accessible depuis l'internet car le fichier .htaccess ne semble pas fonctionner", "For information how to properly configure your server, please see the documentation." => "Pour les informations de configuration de votre serveur, veuillez lire la documentation.", "Create an admin account" => "Créer un compte administrateur", -"Advanced" => "Avancé", "Data folder" => "Répertoire des données", "Configure the database" => "Configurer la base de données", "will be used" => "sera utilisé", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "se souvenir de moi", "Log in" => "Connexion", "Alternative Logins" => "Logins alternatifs", -"Hey there,

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

" => "Bonjour,

Nous vous informons que %s a partagé »%s« avec vous.
Consultez-le !

", "This ownCloud instance is currently in single user mode." => "Cette instance de ownCloud est actuellement en mode utilisateur unique.", "This means only administrators can use the instance." => "Cela signifie que uniquement les administrateurs peuvent utiliser l'instance.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Contactez votre administrateur système si ce message persiste ou apparaît de façon innatendue.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 7303807e51..b7a7abac04 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,6 +1,5 @@ "%s compartiu «%s» con vostede", "Couldn't send mail to following users: %s " => "Non é posíbel enviar correo aos usuarios seguintes: %s", "Turned on maintenance mode" => "Modo de mantemento activado", "Turned off maintenance mode" => "Modo de mantemento desactivado", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "O seu directorio de datos e os ficheiros probabelmente sexan accesíbeis desde a Internet xa que o ficheiro .htaccess non está a traballar.", "For information how to properly configure your server, please see the documentation." => "Para obter información sobre como como configurar axeitadamente o seu servidor, vexa a documentación.", "Create an admin account" => "Crear unha contra de administrador", -"Advanced" => "Avanzado", "Data folder" => "Cartafol de datos", "Configure the database" => "Configurar a base de datos", "will be used" => "vai ser utilizado", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "lembrar", "Log in" => "Conectar", "Alternative Logins" => "Accesos alternativos", -"Hey there,

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

" => "Ola,

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

", "This ownCloud instance is currently in single user mode." => "Esta instancia do ownCloud está actualmente en modo de usuario único.", "This means only administrators can use the instance." => "Isto significa que só os administradores poden utilizar a instancia.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Póñase en contacto co administrador do sistema se persiste esta mensaxe ou se aparece de forma inesperada.", diff --git a/core/l10n/he.php b/core/l10n/he.php index c8012b5362..99b22f95ad 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -1,6 +1,5 @@ "%s שיתף/שיתפה איתך את »%s«", "Sunday" => "יום ראשון", "Monday" => "יום שני", "Tuesday" => "יום שלישי", @@ -99,7 +98,6 @@ $TRANSLATIONS = array( "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ללא מחולל מספרים אקראיים מאובטח תוקף יכול לנבא את מחרוזות איפוס הססמה ולהשתלט על החשבון שלך.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "תיקיית וקבצי המידע שלך כנראה נגישים מהאינטרנט מכיוון שקובץ ה.htaccess לא עובד.", "Create an admin account" => "יצירת חשבון מנהל", -"Advanced" => "מתקדם", "Data folder" => "תיקיית נתונים", "Configure the database" => "הגדרת מסד הנתונים", "will be used" => "ינוצלו", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index b841628f28..3fad334f70 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -46,7 +46,6 @@ $TRANSLATIONS = array( "Cloud not found" => "क्लौड नहीं मिला ", "Security Warning" => "सुरक्षा चेतावनी ", "Create an admin account" => "व्यवस्थापक खाता बनाएँ", -"Advanced" => "उन्नत", "Data folder" => "डाटा फोल्डर", "Configure the database" => "डेटाबेस कॉन्फ़िगर करें ", "will be used" => "उपयोग होगा", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index e3d157a513..8cbe95a489 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Pristup zabranjen", "Cloud not found" => "Cloud nije pronađen", "Create an admin account" => "Stvori administratorski račun", -"Advanced" => "Napredno", "Data folder" => "Mapa baze podataka", "Configure the database" => "Konfiguriraj bazu podataka", "will be used" => "će se koristiti", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index b0b5588dfc..fa8c3bd1a2 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -1,6 +1,5 @@ "%s megosztotta Önnel ezt: »%s«", "Couldn't send mail to following users: %s " => "Nem sikerült e-mailt küldeni a következő felhasználóknak: %s", "Turned on maintenance mode" => "A karbantartási mód bekapcsolva", "Turned off maintenance mode" => "A karbantartási mód kikapcsolva", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Az adatkönyvtár és a benne levő állományok valószínűleg közvetlenül is elérhetők az internetről, mert a .htaccess állomány nem érvényesül.", "For information how to properly configure your server, please see the documentation." => "A kiszolgáló megfelelő beállításához kérjük olvassa el a dokumentációt.", "Create an admin account" => "Rendszergazdai belépés létrehozása", -"Advanced" => "Haladó", "Data folder" => "Adatkönyvtár", "Configure the database" => "Adatbázis konfigurálása", "will be used" => "adatbázist fogunk használni", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "emlékezzen", "Log in" => "Bejelentkezés", "Alternative Logins" => "Alternatív bejelentkezés", -"Hey there,

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

" => "Szia!

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

", "This ownCloud instance is currently in single user mode." => "Az Owncloud frissítés elezdődött egy felhasználós módban.", "This means only administrators can use the instance." => "Ez azt jelenti, hogy csak az adminisztrátor használhatja ezt a példányt", "Contact your system administrator if this message persists or appeared unexpectedly." => "Ha ezt az üzenetet már többször látod akkor keresd meg a rendszer adminját.", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index de929650f0..cff33a8ff9 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -48,7 +48,6 @@ $TRANSLATIONS = array( "Access forbidden" => "Accesso prohibite", "Cloud not found" => "Nube non trovate", "Create an admin account" => "Crear un conto de administration", -"Advanced" => "Avantiate", "Data folder" => "Dossier de datos", "Configure the database" => "Configurar le base de datos", "will be used" => "essera usate", diff --git a/core/l10n/id.php b/core/l10n/id.php index 2fa7ae8e3c..9ae9e435c6 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,6 +1,5 @@ "%s membagikan »%s« dengan anda", "Couldn't send mail to following users: %s " => "Tidak dapat mengirim Email ke pengguna berikut: %s", "Turned on maintenance mode" => "Hidupkan mode perawatan", "Turned off maintenance mode" => "Matikan mode perawatan", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Kemungkinan direktori data dan berkas anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi.", "For information how to properly configure your server, please see the documentation." => "Untuk informasi cara mengkonfigurasi server anda dengan benar, silakan lihat dokumentasi.", "Create an admin account" => "Buat sebuah akun admin", -"Advanced" => "Lanjutan", "Data folder" => "Folder data", "Configure the database" => "Konfigurasikan basis data", "will be used" => "akan digunakan", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "selalu masuk", "Log in" => "Masuk", "Alternative Logins" => "Cara Alternatif untuk Masuk", -"Hey there,

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

" => "Hai,

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

", "This ownCloud instance is currently in single user mode." => "ownCloud ini sedang dalam mode pengguna tunggal.", "This means only administrators can use the instance." => "Ini berarti hanya administrator yang dapat menggunakan ownCloud.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Hubungi administrator sistem anda jika pesan ini terus muncul atau muncul tiba-tiba.", diff --git a/core/l10n/is.php b/core/l10n/is.php index d90669ac8d..e76fd4b15f 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Enginn traustur slembitölugjafi í boði, vinsamlegast virkjaðu PHP OpenSSL viðbótina.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Án öruggs slembitölugjafa er mögulegt að sjá fyrir öryggis auðkenni til að endursetja lykilorð og komast inn á aðganginn þinn.", "Create an admin account" => "Útbúa vefstjóra aðgang", -"Advanced" => "Ítarlegt", "Data folder" => "Gagnamappa", "Configure the database" => "Stilla gagnagrunn", "will be used" => "verður notað", diff --git a/core/l10n/it.php b/core/l10n/it.php index 444d7ed250..d94c83a990 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,6 +1,5 @@ "%s ha condiviso «%s» con te", "Couldn't send mail to following users: %s " => "Impossibile inviare email ai seguenti utenti: %s", "Turned on maintenance mode" => "Modalità di manutenzione attivata", "Turned off maintenance mode" => "Modalità di manutenzione disattivata", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "La cartella dei dati e i file sono probabilmente accessibili da Internet poiché il file .htaccess non funziona.", "For information how to properly configure your server, please see the documentation." => "Per informazioni su come configurare correttamente il tuo server, vedi la documentazione.", "Create an admin account" => "Crea un account amministratore", -"Advanced" => "Avanzat", "Data folder" => "Cartella dati", "Configure the database" => "Configura il database", "will be used" => "sarà utilizzato", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "ricorda", "Log in" => "Accedi", "Alternative Logins" => "Accessi alternativi", -"Hey there,

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

" => "Ciao,

volevo informarti che %s ha condiviso %s con te.
Vedi!

", "This ownCloud instance is currently in single user mode." => "Questa istanza di ownCloud è in modalità utente singolo.", "This means only administrators can use the instance." => "Ciò significa che solo gli amministratori possono utilizzare l'istanza.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Contatta il tuo amministratore di sistema se questo messaggio persiste o appare inaspettatamente.", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index aa737a71d0..44ddd98c3e 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -1,7 +1,6 @@ "%sが あなたと »%s«を共有しました", -"Couldn't send mail to following users: %s " => "次のユーザにメールを送信できませんでした: %s", +"Couldn't send mail to following users: %s " => "次のユーザーにメールを送信できませんでした: %s", "Turned on maintenance mode" => "メンテナンスモードがオンになりました", "Turned off maintenance mode" => "メンテナンスモードがオフになりました", "Updated database" => "データベース更新完了", @@ -11,7 +10,7 @@ $TRANSLATIONS = array( "No image or file provided" => "画像もしくはファイルが提供されていません", "Unknown filetype" => "不明なファイルタイプ", "Invalid image" => "無効な画像", -"No temporary profile picture available, try again" => "一時的なプロファイル用画像が利用できません。もう一度試して下さい", +"No temporary profile picture available, try again" => "一時的なプロファイル用画像が利用できません。もう一度試してください", "No crop data provided" => "クロップデータは提供されません", "Sunday" => "日", "Monday" => "月", @@ -38,11 +37,11 @@ $TRANSLATIONS = array( "_%n hour ago_::_%n hours ago_" => array("%n 時間前"), "today" => "今日", "yesterday" => "昨日", -"_%n day ago_::_%n days ago_" => array("%n 日前"), -"last month" => "一月前", -"_%n month ago_::_%n months ago_" => array("%n ヶ月前"), +"_%n day ago_::_%n days ago_" => array("%n日前"), +"last month" => "1ヶ月前", +"_%n month ago_::_%n months ago_" => array("%nヶ月前"), "months ago" => "数ヶ月前", -"last year" => "一年前", +"last year" => "1年前", "years ago" => "数年前", "Choose" => "選択", "Error loading file picker template: {error}" => "ファイル選択テンプレートの読み込みエラー: {error}", @@ -67,7 +66,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "権限変更でエラー発生", "Shared with you and the group {group} by {owner}" => "あなたと {owner} のグループ {group} で共有中", "Shared with you by {owner}" => "{owner} と共有中", -"Share with user or group …" => "ユーザもしくはグループと共有 ...", +"Share with user or group …" => "ユーザーもしくはグループと共有 ...", "Share link" => "URLで共有", "Password protect" => "パスワード保護", "Password" => "パスワード", @@ -86,7 +85,7 @@ $TRANSLATIONS = array( "can edit" => "編集を許可", "access control" => "アクセス権限", "create" => "作成", -"update" => "更新", +"update" => "アップデート", "delete" => "削除", "share" => "共有", "Password protected" => "パスワード保護", @@ -95,7 +94,7 @@ $TRANSLATIONS = array( "Sending ..." => "送信中...", "Email sent" => "メールを送信しました", "Warning" => "警告", -"The object type is not specified." => "オブジェクタイプが指定されていません。", +"The object type is not specified." => "オブジェクトタイプが指定されていません。", "Enter new" => "新規に入力", "Delete" => "削除", "Add" => "追加", @@ -103,15 +102,15 @@ $TRANSLATIONS = array( "Error loading dialog template: {error}" => "メッセージテンプレートの読み込みエラー: {error}", "No tags selected for deletion." => "削除するタグが選択されていません。", "Please reload the page." => "ページをリロードしてください。", -"The update was unsuccessful. Please report this issue to the ownCloud community." => "更新に成功しました。この問題を ownCloud community にレポートしてください。", -"The update was successful. Redirecting you to ownCloud now." => "更新に成功しました。今すぐownCloudにリダイレクトします。", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "アップデートに失敗しました。この問題を ownCloud community にレポートしてください。", +"The update was successful. Redirecting you to ownCloud now." => "アップデートに成功しました。今すぐownCloudにリダイレクトします。", "%s password reset" => "%s パスワードリセット", -"Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}", -"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信出来ない場合は、スパム/迷惑メールフォルダを確認して下さい。
もしそこにもない場合は、管理者に問い合わせてください。", -"Request failed!
Did you make sure your email/username was right?" => "リクエストに失敗しました!
あなたのメール/ユーザ名が正しいことを確認しましたか?", +"Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックしてください: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信できない場合は、スパム/迷惑メールフォルダーを確認してください。
もしそこにもない場合は、管理者に問い合わせてください。", +"Request failed!
Did you make sure your email/username was right?" => "リクエストに失敗しました!
あなたのメール/ユーザー名が正しいことを確認しましたか?", "You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。", "Username" => "ユーザー名", -"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "ファイルが暗号化されています。復旧キーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "ファイルが暗号化されています。リカバリキーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?", "Yes, I really want to reset my password now" => "はい、今すぐパスワードをリセットします。", "Reset" => "リセット", "Your password was reset" => "あなたのパスワードはリセットされました。", @@ -119,7 +118,7 @@ $TRANSLATIONS = array( "New password" => "新しいパスワードを入力", "Reset password" => "パスワードをリセット", "Personal" => "個人", -"Users" => "ユーザ", +"Users" => "ユーザー", "Apps" => "アプリ", "Admin" => "管理", "Help" => "ヘルプ", @@ -137,42 +136,40 @@ $TRANSLATIONS = array( "Cheers!" => "それでは!", "Security Warning" => "セキュリティ警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。", -"Please update your PHP installation to use %s securely." => "%s を安全に利用する為に インストールされているPHPをアップデートしてください。", -"No secure random number generator is available, please enable the PHP OpenSSL extension." => "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にして下さい。", +"Please update your PHP installation to use %s securely." => "%s を安全に利用するため、インストールされているPHPをアップデートしてください。", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にしてください。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "セキュアな乱数生成器が無い場合、攻撃者がパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。", "For information how to properly configure your server, please see the documentation." => "サーバーを適正に設定する情報は、こちらのドキュメントを参照してください。", "Create an admin account" => "管理者アカウントを作成してください", -"Advanced" => "詳細設定", -"Data folder" => "データフォルダ", +"Data folder" => "データフォルダー", "Configure the database" => "データベースを設定してください", "will be used" => "が使用されます", -"Database user" => "データベースのユーザ名", +"Database user" => "データベースのユーザー名", "Database password" => "データベースのパスワード", "Database name" => "データベース名", "Database tablespace" => "データベースの表領域", "Database host" => "データベースのホスト名", "Finish setup" => "セットアップを完了します", -"Finishing …" => "終了しています ...", -"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "このアプリケーションは使用する為、JavaScriptが必要です。\nJavaScriptを有効にし、インターフェースを更新してください。 ", -"%s is available. Get more information on how to update." => "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。", +"Finishing …" => "作業を完了しています ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "このアプリケーションを使用するにはJavaScriptが必要です。\nJavaScriptを有効にし、インターフェースを更新してください。 ", +"%s is available. Get more information on how to update." => "%s が利用可能です。アップデート方法について詳細情報を確認してください。", "Log out" => "ログアウト", "Automatic logon rejected!" => "自動ログインは拒否されました!", -"If you did not change your password recently, your account may be compromised!" => "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。", -"Please change your password to secure your account again." => "アカウント保護の為、パスワードを再度の変更をお願いいたします。", -"Server side authentication failed!" => "サーバサイドの認証に失敗しました!", +"If you did not change your password recently, your account may be compromised!" => "最近パスワードを変更していない場合、あなたのアカウントが危険にさらされている可能性があります!", +"Please change your password to secure your account again." => "アカウント保護のため、パスワードを再度変更してください。", +"Server side authentication failed!" => "サーバーサイドの認証に失敗しました!", "Please contact your administrator." => "管理者に問い合わせてください。", "Lost your password?" => "パスワードを忘れましたか?", -"remember" => "自動ログインする", +"remember" => "パスワードを保存", "Log in" => "ログイン", "Alternative Logins" => "代替ログイン", -"Hey there,

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

" => "こんにちは、

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

", -"This ownCloud instance is currently in single user mode." => "この ownCloud インスタンスは、現在シングルユーザモードです。", +"This ownCloud instance is currently in single user mode." => "このownCloudインスタンスは、現在シングルユーザーモードです。", "This means only administrators can use the instance." => "これは、管理者のみがインスタンスを利用できることを意味しています。", "Contact your system administrator if this message persists or appeared unexpectedly." => "このメッセージが引き続きもしくは予期せず現れる場合は、システム管理者に連絡してください。", "Thank you for your patience." => "しばらくお待ちください。", -"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。", -"This ownCloud instance is currently being updated, which may take a while." => "この ownCloud インスタンスは現在更新中であり、しばらく時間がかかります。", +"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ちください。", +"This ownCloud instance is currently being updated, which may take a while." => "この ownCloud インスタンスは現在アップデート中のため、しばらく時間がかかります。", "Please reload this page after a short time to continue using ownCloud." => "ownCloud を続けて利用するには、しばらくした後でページをリロードしてください。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 38f4f9536d..65fae80f73 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -94,7 +94,6 @@ $TRANSLATIONS = array( "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "შემთხვევითი სიმბოლოების გენერატორის გარეშე, შემტევმა შეიძლება ამოიცნოს თქვენი პაროლი შეგიცვალოთ ის და დაეუფლოს თქვენს ექაუნთს.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "თქვენი data დირექტორია და ფაილები დაშვებადია ინტერნეტში რადგან .htaccess ფაილი არ მუშაობს.", "Create an admin account" => "შექმენი ადმინ ექაუნტი", -"Advanced" => "დამატებითი ფუნქციები", "Data folder" => "მონაცემთა საქაღალდე", "Configure the database" => "მონაცემთა ბაზის კონფიგურირება", "will be used" => "გამოყენებული იქნება", diff --git a/core/l10n/km.php b/core/l10n/km.php index 86faa16f73..31e06efa2d 100644 --- a/core/l10n/km.php +++ b/core/l10n/km.php @@ -1,10 +1,88 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), +"Unknown filetype" => "មិន​ស្គាល់​ប្រភេទ​ឯកសារ", +"Invalid image" => "រូបភាព​មិន​ត្រឹម​ត្រូវ", +"Sunday" => "ថ្ងៃអាទិត្យ", +"Monday" => "ថ្ងៃចន្ទ", +"Tuesday" => "ថ្ងៃអង្គារ", +"Wednesday" => "ថ្ងៃពុធ", +"Thursday" => "ថ្ងៃព្រហស្បតិ៍", +"Friday" => "ថ្ងៃសុក្រ", +"Saturday" => "ថ្ងៃសៅរ៍", +"January" => "ខែមករា", +"February" => "ខែកុម្ភៈ", +"March" => "ខែមីនា", +"April" => "ខែមេសា", +"May" => "ខែឧសភា", +"June" => "ខែមិថុនា", +"July" => "ខែកក្កដា", +"August" => "ខែសីហា", +"September" => "ខែកញ្ញា", +"October" => "ខែតុលា", +"November" => "ខែវិច្ឆិកា", +"December" => "ខែធ្នូ", +"Settings" => "ការកំណត់", +"seconds ago" => "វិនាទី​មុន", +"_%n minute ago_::_%n minutes ago_" => array("%n នាទី​មុន"), +"_%n hour ago_::_%n hours ago_" => array("%n ម៉ោង​មុន"), +"today" => "ថ្ងៃនេះ", +"yesterday" => "ម្សិលមិញ", +"_%n day ago_::_%n days ago_" => array("%n ថ្ងៃ​មុន"), +"last month" => "ខែមុន", +"_%n month ago_::_%n months ago_" => array("%n ខែ​មុន"), +"months ago" => "ខែ​មុន", +"last year" => "ឆ្នាំ​មុន", +"years ago" => "ឆ្នាំ​មុន", +"Choose" => "ជ្រើស", +"Yes" => "ព្រម", +"No" => "ទេ", +"Ok" => "ព្រម", "_{count} file conflict_::_{count} file conflicts_" => array(""), -"Delete" => "លុប" +"Cancel" => "លើកលែង", +"Shared" => "បាន​ចែក​រំលែក", +"Share" => "ចែក​រំលែក", +"Error" => "កំហុស", +"Error while sharing" => "កំហុស​ពេល​ចែក​រំលែក", +"Error while unsharing" => "កំពុង​ពេល​លែង​ចែក​រំលែក", +"Error while changing permissions" => "មាន​កំហុស​នៅ​ពេល​ប្ដូរ​សិទ្ធិ", +"Shared with you and the group {group} by {owner}" => "បាន​ចែក​រំលែក​ជាមួយ​អ្នក និង​ក្រុម {group} ដោយ {owner}", +"Shared with you by {owner}" => "បាន​ចែក​រំលែក​ជាមួយ​អ្នក​ដោយ {owner}", +"Password protect" => "ការ​ពារ​ដោយ​ពាក្យ​សម្ងាត់", +"Password" => "ពាក្យសម្ងាត់", +"Send" => "ផ្ញើ", +"Set expiration date" => "កំណត់​ពេល​ផុត​កំណត់", +"Expiration date" => "ពេល​ផុត​កំណត់", +"Share via email:" => "ចែក​រំលែក​តាម​អ៊ីមែល៖", +"No people found" => "រក​មិន​ឃើញ​មនុស្ស​ណា​ម្នាក់", +"group" => "ក្រុម", +"Resharing is not allowed" => "មិន​អនុញ្ញាត​ឲ្យ​មាន​ការ​ចែក​រំលែក​ឡើង​វិញ", +"Shared in {item} with {user}" => "បាន​ចែក​រំលែក​ក្នុង {item} ជាមួយ {user}", +"Unshare" => "លែង​ចែក​រំលែក", +"can edit" => "អាច​កែប្រែ", +"access control" => "សិទ្ធិ​បញ្ជា", +"create" => "បង្កើត", +"update" => "ធ្វើ​បច្ចុប្បន្នភាព", +"delete" => "លុប", +"share" => "ចែក​រំលែក", +"Password protected" => "បាន​ការ​ពារ​ដោយ​ពាក្យ​សម្ងាត់", +"Sending ..." => "កំពុង​ផ្ញើ ...", +"Email sent" => "បាន​ផ្ញើ​អ៊ីមែល", +"Warning" => "បម្រាម", +"The object type is not specified." => "មិន​បាន​កំណត់​ប្រភេទ​វត្ថុ។", +"Delete" => "លុប", +"Add" => "បញ្ចូល", +"Username" => "ឈ្មោះ​អ្នកប្រើ", +"Your password was reset" => "ពាក្យ​សម្ងាត់​របស់​អ្នក​ត្រូវ​បាន​កំណត់​ឡើង​វិញ", +"To login page" => "ទៅ​ទំព័រ​ចូល", +"New password" => "ពាក្យ​សម្ងាត់​ថ្មី", +"Reset password" => "កំណត់​ពាក្យ​សម្ងាត់​ម្ដង​ទៀត", +"Personal" => "ផ្ទាល់​ខ្លួន", +"Users" => "អ្នកប្រើ", +"Apps" => "កម្មវិធី", +"Admin" => "អ្នក​គ្រប់​គ្រង", +"Help" => "ជំនួយ", +"Access forbidden" => "បាន​ហាមឃាត់​ការ​ចូល", +"Cloud not found" => "រក​មិន​ឃើញ Cloud", +"Security Warning" => "បម្រាម​សុវត្ថិភាព" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ko.php b/core/l10n/ko.php index dc7cb8d3e7..518977c805 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -1,6 +1,5 @@ "%s 님이 %s을(를) 공유하였습니다", "Couldn't send mail to following users: %s " => "%s 님에게 메일을 보낼 수 없습니다.", "Turned on maintenance mode" => "유지 보수 모드 켜짐", "Turned off maintenance mode" => "유지 보수 모드 꺼짐", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => ".htaccess 파일이 처리되지 않아서 데이터 디렉터리와 파일을 인터넷에서 접근할 수 없을 수도 있습니다.", "For information how to properly configure your server, please see the documentation." => "올바른 서버 설정을 위한 정보는 문서를 참조하십시오.", "Create an admin account" => "관리자 계정 만들기", -"Advanced" => "고급", "Data folder" => "데이터 폴더", "Configure the database" => "데이터베이스 설정", "will be used" => "사용될 예정", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "기억하기", "Log in" => "로그인", "Alternative Logins" => "대체 로그인", -"Hey there,

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

" => "안녕하세요,

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

", "This ownCloud instance is currently in single user mode." => "ownCloud 인스턴스가 현재 단일 사용자 모드로 동작 중입니다.", "This means only administrators can use the instance." => "현재 시스템 관리자만 인스턴스를 사용할 수 있습니다.", "Contact your system administrator if this message persists or appeared unexpectedly." => "이 메시지가 계속 표시되거나, 예상하지 못하였을 때 표시된다면 시스템 관리자에게 연락하십시오", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index b809c64317..6d33bcfe2f 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -5,7 +5,10 @@ $TRANSLATIONS = array( "_%n hour ago_::_%n hours ago_" => array("",""), "_%n day ago_::_%n days ago_" => array("",""), "_%n month ago_::_%n months ago_" => array("",""), +"Yes" => "بەڵێ", +"No" => "نەخێر", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Cancel" => "لابردن", "Share" => "هاوبەشی کردن", "Error" => "هه‌ڵه", "Password" => "وشەی تێپەربو", @@ -19,7 +22,6 @@ $TRANSLATIONS = array( "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", "Help" => "یارمەتی", "Cloud not found" => "هیچ نه‌دۆزرایه‌وه‌", -"Advanced" => "هه‌ڵبژاردنی پیشكه‌وتوو", "Data folder" => "زانیاری فۆڵده‌ر", "Database user" => "به‌كارهێنه‌ری داتابه‌یس", "Database password" => "وشه‌ی نهێنی داتا به‌یس", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 920e109bc6..7bb5b6f0c0 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -1,6 +1,5 @@ "Den/D' %s huet »%s« mat dir gedeelt", "Turned on maintenance mode" => "Maintenance Modus ass un", "Turned off maintenance mode" => "Maintenance Modus ass aus", "Updated database" => "Datebank ass geupdate ginn", @@ -123,7 +122,6 @@ $TRANSLATIONS = array( "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ouni e sécheren Zoufallsgenerator kann en Ugräifer d'Passwuert-Zrécksetzungs-Schlësselen viraussoen an en Account iwwerhuelen.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Däin Daten-Dossier an deng Fichieren si wahrscheinlech iwwert den Internet accessibel well den .htaccess-Fichier net funktionnéiert.", "Create an admin account" => "En Admin-Account uleeën", -"Advanced" => "Avancéiert", "Data folder" => "Daten-Dossier", "Configure the database" => "D'Datebank konfiguréieren", "will be used" => "wärt benotzt ginn", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 02852e37d4..00c1b76ac2 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -1,6 +1,5 @@ "%s pasidalino »%s« su tavimi", "Couldn't send mail to following users: %s " => "Nepavyko nusiųsti el. pašto šiems naudotojams: %s ", "Turned on maintenance mode" => "Įjungta priežiūros veiksena", "Turned off maintenance mode" => "Išjungta priežiūros veiksena", @@ -102,6 +101,7 @@ $TRANSLATIONS = array( "Edit tags" => "Redaguoti žymes", "Error loading dialog template: {error}" => "Klaida įkeliant dialogo ruošinį: {error}", "No tags selected for deletion." => "Trynimui nepasirinkta jokia žymė.", +"Please reload the page." => "Prašome perkrauti puslapį.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the ownCloud bendruomenei.", "The update was successful. Redirecting you to ownCloud now." => "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud.", "%s password reset" => "%s slaptažodžio atnaujinimas", @@ -112,6 +112,7 @@ $TRANSLATIONS = array( "Username" => "Prisijungimo vardas", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Jūsų failai yra užšifruoti. Jei neįjungėte atstatymo rakto, nebus galimybės atstatyti duomenų po slaptažodžio atstatymo. Jei nesate tikri ką daryti, prašome susisiekti su administratoriumi prie tęsiant. Ar tikrai tęsti?", "Yes, I really want to reset my password now" => "Taip, aš tikrai noriu atnaujinti slaptažodį", +"Reset" => "Atstatyti", "Your password was reset" => "Jūsų slaptažodis buvo nustatytas iš naujo", "To login page" => "Į prisijungimo puslapį", "New password" => "Naujas slaptažodis", @@ -126,9 +127,12 @@ $TRANSLATIONS = array( "Error deleting tag(s)" => "Klaida trinant žymę(-es)", "Error tagging" => "Klaida pridedant žymę", "Error untagging" => "Klaida šalinant žymę", +"Error favoriting" => "Klaida įtraukiant į mėgstamus.", +"Error unfavoriting" => "Klaida pašalinant iš mėgstamų.", "Access forbidden" => "Priėjimas draudžiamas", "Cloud not found" => "Negalima rasti", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai: %s\n", +"The share will expire on %s." => "Bendrinimo laikas baigsis %s.", "Cheers!" => "Sveikinimai!", "Security Warning" => "Saugumo pranešimas", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Jūsų PHP versija yra pažeidžiama prieš NULL Byte ataką (CVE-2006-7243)", @@ -138,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Jūsų failai yra tikriausiai prieinami per internetą nes .htaccess failas neveikia.", "For information how to properly configure your server, please see the documentation." => "Kad gauti informaciją apie tai kaip tinkamai sukonfigūruoti savo serverį, prašome skaityti dokumentaciją.", "Create an admin account" => "Sukurti administratoriaus paskyrą", -"Advanced" => "Išplėstiniai", "Data folder" => "Duomenų katalogas", "Configure the database" => "Nustatyti duomenų bazę", "will be used" => "bus naudojama", @@ -149,6 +152,7 @@ $TRANSLATIONS = array( "Database host" => "Duomenų bazės serveris", "Finish setup" => "Baigti diegimą", "Finishing …" => "Baigiama ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Šiai programai reikia įjungti JavaScript, kad ji veiktų tvarkingai. Prašome įjungti JavaScript ir perkrauti šią sąsają.", "%s is available. Get more information on how to update." => "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą.", "Log out" => "Atsijungti", "Automatic logon rejected!" => "Automatinis prisijungimas atmestas!", @@ -160,7 +164,8 @@ $TRANSLATIONS = array( "remember" => "prisiminti", "Log in" => "Prisijungti", "Alternative Logins" => "Alternatyvūs prisijungimai", -"Hey there,

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

" => "Labas,

tik informuojame, kad %s pasidalino su Jumis »%s«.
Peržiūrėk!

", +"This ownCloud instance is currently in single user mode." => "Ši ownCloud sistema yra vieno naudotojo veiksenoje.", +"This means only administrators can use the instance." => "Tai reiškia, kad tik administratorius gali naudotis sistema.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Susisiekite su savo sistemos administratoriumi jei šis pranešimas nedingsta arba jei jis pasirodė netikėtai.", "Thank you for your patience." => "Dėkojame už jūsų kantrumą.", "Updating ownCloud to version %s, this may take a while." => "Atnaujinama ownCloud į %s versiją. tai gali šiek tiek užtrukti.", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index ed0d1d1ac4..2250cfa4af 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -1,6 +1,5 @@ "%s kopīgots »%s« ar jums", "Sunday" => "Svētdiena", "Monday" => "Pirmdiena", "Tuesday" => "Otrdiena", @@ -103,7 +102,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Visticamāk, jūsu datu direktorija un datnes ir pieejamas no interneta, jo .htaccess datne nedarbojas.", "For information how to properly configure your server, please see the documentation." => "Vairāk informācijai kā konfigurēt serveri, lūdzu skatiet dokumentāciju.", "Create an admin account" => "Izveidot administratora kontu", -"Advanced" => "Paplašināti", "Data folder" => "Datu mape", "Configure the database" => "Konfigurēt datubāzi", "will be used" => "tiks izmantots", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 7ec7fe8b75..2a5df8534d 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -122,7 +122,6 @@ $TRANSLATIONS = array( "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без сигурен генератор на случајни броеви напаѓач може да ги предвиди жетоните за ресетирање на лозинка и да преземе контрола врз Вашата сметка. ", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Вашиот директориум со податоци и датотеки се веројатно достапни преку интенернт поради што .htaccess датотеката не функционира.", "Create an admin account" => "Направете администраторска сметка", -"Advanced" => "Напредно", "Data folder" => "Фолдер со податоци", "Configure the database" => "Конфигурирај ја базата", "will be used" => "ќе биде користено", diff --git a/core/l10n/ml.php b/core/l10n/ml.php new file mode 100644 index 0000000000..ffcdde48d4 --- /dev/null +++ b/core/l10n/ml.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/mn.php b/core/l10n/mn.php new file mode 100644 index 0000000000..ffcdde48d4 --- /dev/null +++ b/core/l10n/mn.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index c0a50be4f2..3963f28e2f 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -51,7 +51,6 @@ $TRANSLATIONS = array( "Cloud not found" => "Awan tidak dijumpai", "Security Warning" => "Amaran keselamatan", "Create an admin account" => "buat akaun admin", -"Advanced" => "Maju", "Data folder" => "Fail data", "Configure the database" => "Konfigurasi pangkalan data", "will be used" => "akan digunakan", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 464e52d6d1..4ccf19b186 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -51,7 +51,6 @@ $TRANSLATIONS = array( "Cloud not found" => "မတွေ့ရှိမိပါ", "Security Warning" => "လုံခြုံရေးသတိပေးချက်", "Create an admin account" => "အက်ဒမင်အကောင့်တစ်ခုဖန်တီးမည်", -"Advanced" => "အဆင့်မြင့်", "Data folder" => "အချက်အလက်ဖိုလ်ဒါလ်", "Database user" => "Database သုံးစွဲသူ", "Database password" => "Database စကားဝှက်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index ad682e46ff..52aeca0043 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -1,8 +1,17 @@ "%s delte »%s« med deg", +"Couldn't send mail to following users: %s " => "Klarte ikke å sende mail til følgende brukere: %s", +"Turned on maintenance mode" => "Slo på vedlikeholdsmodus", +"Turned off maintenance mode" => "Slo av vedlikeholdsmodus", +"Updated database" => "Oppdaterte databasen", +"Updating filecache, this may take really long..." => "Oppdaterer fil-cache. Dette kan ta veldig lang tid...", +"Updated filecache" => "Oppdaterte fil-cache", +"... %d%% done ..." => "... %d%% ferdig ...", +"No image or file provided" => "Bilde eller fil ikke angitt", "Unknown filetype" => "Ukjent filtype", "Invalid image" => "Ugyldig bilde", +"No temporary profile picture available, try again" => "Foreløpig profilbilde ikke tilgjengelig. Prøv igjen", +"No crop data provided" => "Ingen beskjæringsinformasjon angitt", "Sunday" => "Søndag", "Monday" => "Mandag", "Tuesday" => "Tirsdag", @@ -32,29 +41,47 @@ $TRANSLATIONS = array( "last month" => "forrige måned", "_%n month ago_::_%n months ago_" => array("%n dag siden","%n dager siden"), "months ago" => "måneder siden", -"last year" => "forrige år", +"last year" => "i fjor", "years ago" => "år siden", "Choose" => "Velg", +"Error loading file picker template: {error}" => "Feil ved lasting av filvelger-mal: {error}", "Yes" => "Ja", "No" => "Nei", "Ok" => "Ok", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Error loading message template: {error}" => "Feil ved lasting av meldingsmal: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} filkonflikt","{count} filkonflikter"), +"One file conflict" => "En filkonflikt", +"Which files do you want to keep?" => "Hvilke filer vil du beholde?", +"If you select both versions, the copied file will have a number added to its name." => "Hvis du velger begge versjonene vil den kopierte filen få et nummer lagt til i navnet.", "Cancel" => "Avbryt", "Continue" => "Fortsett", +"(all selected)" => "(alle valgt)", +"({count} selected)" => "({count} valgt)", +"Error loading file exists template" => "Feil ved lasting av \"filen eksisterer\"-mal", "Shared" => "Delt", "Share" => "Del", "Error" => "Feil", "Error while sharing" => "Feil under deling", +"Error while unsharing" => "Feil ved oppheving av deling", +"Error while changing permissions" => "Feil ved endring av tillatelser", +"Shared with you and the group {group} by {owner}" => "Delt med deg og gruppen {group} av {owner}", "Shared with you by {owner}" => "Delt med deg av {owner}", +"Share with user or group …" => "Del med bruker eller gruppe …", +"Share link" => "Del lenke", "Password protect" => "Passordbeskyttet", "Password" => "Passord", +"Allow Public Upload" => "Tillat Offentlig Opplasting", +"Email link to person" => "Email lenke til person", "Send" => "Send", "Set expiration date" => "Set utløpsdato", "Expiration date" => "Utløpsdato", "Share via email:" => "Del på epost", "No people found" => "Ingen personer funnet", "group" => "gruppe", +"Resharing is not allowed" => "Videredeling er ikke tillatt", +"Shared in {item} with {user}" => "Delt i {item} med {user}", "Unshare" => "Avslutt deling", +"notify by email" => "Varsle på email", "can edit" => "kan endre", "access control" => "tilgangskontroll", "create" => "opprett", @@ -62,15 +89,30 @@ $TRANSLATIONS = array( "delete" => "slett", "share" => "del", "Password protected" => "Passordbeskyttet", +"Error unsetting expiration date" => "Feil ved nullstilling av utløpsdato", "Error setting expiration date" => "Kan ikke sette utløpsdato", "Sending ..." => "Sender...", "Email sent" => "E-post sendt", "Warning" => "Advarsel", +"The object type is not specified." => "Objekttypen er ikke spesifisert.", +"Enter new" => "Oppgi ny", "Delete" => "Slett", "Add" => "Legg til", +"Edit tags" => "Rediger merkelapper", +"Error loading dialog template: {error}" => "Feil ved lasting av dialogmal: {error}", +"No tags selected for deletion." => "Ingen merkelapper valgt for sletting.", +"Please reload the page." => "Vennligst last siden på nytt.", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Oppdateringen mislyktes. Vennligst rapporter dette problemet til ownCloud-fellesskapet.", +"The update was successful. Redirecting you to ownCloud now." => "Oppdateringen var vellykket. Du omdirigeres nå til ownCloud.", +"%s password reset" => "%s nullstilling av passord", "Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Lenken for nullstilling av passordet ditt er sendt til din email.
Hvis du ikke mottar den innen rimelig tid, sjekk spam- og søppelmappene i epost-programmet.
Hvis den ikke er der, kontakt din lokale administrator .", +"Request failed!
Did you make sure your email/username was right?" => "Anmodning feilet!
Forsikret du deg om at din email/brukernavn var korrekt?", "You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.", "Username" => "Brukernavn", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Filene dine er kryptert. Hvis du ikke har aktivert gjenopprettingsnøkkelen, vil det være helt umulig å få tilbake dataene dine etter at passordet ditt er nullstilt. Hvis du er usikker på hva du skal gjøre, kontakt administratoren din før du fortsetter. Vil du virkelig fortsette?", +"Yes, I really want to reset my password now" => "Ja, jeg vil virkelig nullstille passordet mitt nå", +"Reset" => "Nullstill", "Your password was reset" => "Passordet ditt ble tilbakestilt", "To login page" => "Til innlogginssiden", "New password" => "Nytt passord", @@ -80,11 +122,26 @@ $TRANSLATIONS = array( "Apps" => "Apper", "Admin" => "Admin", "Help" => "Hjelp", +"Error loading tags" => "Feil ved lasting av merkelapper", +"Tag already exists" => "Merkelappen finnes allerede", +"Error deleting tag(s)" => "Feil ved sletting av merkelapp(er)", +"Error tagging" => "Feil ved merking", +"Error untagging" => "Feil ved fjerning av merkelapp", +"Error favoriting" => "Feil ved favorittmerking", +"Error unfavoriting" => "Feil ved fjerning av favorittmerking", "Access forbidden" => "Tilgang nektet", "Cloud not found" => "Sky ikke funnet", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hei der,\n\nbare informerer om at %s delte %s med deg.\nVis den: %s\n\n", +"The share will expire on %s." => "Delingen vil opphøre %s.", +"Cheers!" => "Ha det!", "Security Warning" => "Sikkerhetsadvarsel", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP-versjonen din er sårbar for NULL Byte attack (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Vennligst oppdater PHP-installasjonen din for å bruke %s på en sikker måte.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen sikker slumptallsgenerator er tilgjengelig. Vennligst aktiver PHP OpenSSL-utvidelsen.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Uten en sikker slumptallsgenerator er det mulig at en angriper kan forutse passordnullstilling-tokens og ta over kontoen din.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer.", +"For information how to properly configure your server, please see the documentation." => "For informasjon om hvordan du setter opp serveren din riktig, se dokumentasjonen.", "Create an admin account" => "opprett en administrator-konto", -"Advanced" => "Avansert", "Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", "will be used" => "vil bli brukt", @@ -95,13 +152,24 @@ $TRANSLATIONS = array( "Database host" => "Databasevert", "Finish setup" => "Fullfør oppsetting", "Finishing …" => "Ferdigstiller ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Denne applikasjonen trenger JavaScript for å fungere korrekt. Vennligst aktiver JavaScript og last dette grensesnittet på nytt.", +"%s is available. Get more information on how to update." => "%s er tilgjengelig. Få mer informasjon om hvordan du kan oppdatere.", "Log out" => "Logg ut", "Automatic logon rejected!" => "Automatisk pålogging avvist!", "If you did not change your password recently, your account may be compromised!" => "Hvis du ikke har endret passordet ditt nylig kan kontoen din være kompromitert", "Please change your password to secure your account again." => "Vennligst skift passord for å gjøre kontoen din sikker igjen.", +"Server side authentication failed!" => "Autentisering feilet på serveren!", +"Please contact your administrator." => "Vennligst kontakt administratoren din.", "Lost your password?" => "Mistet passordet ditt?", "remember" => "husk", "Log in" => "Logg inn", -"Updating ownCloud to version %s, this may take a while." => "Oppdaterer ownCloud til versjon %s, dette kan ta en stund." +"Alternative Logins" => "Alternative innlogginger", +"This ownCloud instance is currently in single user mode." => "Denne ownCloud-instansen er for øyeblikket i enbrukermodus.", +"This means only administrators can use the instance." => "Dette betyr at kun administratorer kan bruke instansen.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Kontakt systemadministratoren hvis denne meldingen var uventet eller ikke forsvinner.", +"Thank you for your patience." => "Takk for din tålmodighet.", +"Updating ownCloud to version %s, this may take a while." => "Oppdaterer ownCloud til versjon %s, dette kan ta en stund.", +"This ownCloud instance is currently being updated, which may take a while." => "Denne ownCloud-instansen oppdateres for øyeblikket, noe som kan ta litt tid.", +"Please reload this page after a short time to continue using ownCloud." => "Vennligst last denne siden på nytt om en liten stund for å fortsette å bruke ownCloud." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 3c41301060..285fb595e6 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,6 +1,5 @@ "%s deelde »%s« met jou", "Couldn't send mail to following users: %s " => "Kon geen e-mail sturen aan de volgende gebruikers: %s", "Turned on maintenance mode" => "Onderhoudsmodus ingeschakeld", "Turned off maintenance mode" => "Onderhoudsmodus uitgeschakeld", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Je gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess-bestand niet werkt.", "For information how to properly configure your server, please see the documentation." => "Bekijk de documentatie voor Informatie over het correct configureren van uw server.", "Create an admin account" => "Maak een beheerdersaccount aan", -"Advanced" => "Geavanceerd", "Data folder" => "Gegevensmap", "Configure the database" => "Configureer de database", "will be used" => "zal gebruikt worden", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "onthoud gegevens", "Log in" => "Meld je aan", "Alternative Logins" => "Alternatieve inlogs", -"Hey there,

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

" => "Hallo daar,

even een berichtje dat %s »%s« met u deelde.
Bekijk hier!

", "This ownCloud instance is currently in single user mode." => "Deze ownCloud werkt momenteel in enkele gebruiker modus.", "This means only administrators can use the instance." => "Dat betekent dat alleen beheerders deze installatie kunnen gebruiken.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Beem contact op met uw systeembeheerder als deze melding aanhoudt of plotseling verscheen.", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 0221c3945f..16bc7edc71 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -1,6 +1,5 @@ "%s delte «%s» med deg", "Turned on maintenance mode" => "Skrudde på vedlikehaldsmodus", "Turned off maintenance mode" => "Skrudde av vedlikehaldsmodus", "Updated database" => "Database oppdatert", @@ -123,7 +122,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett sidan .htaccess-fila ikkje fungerer.", "For information how to properly configure your server, please see the documentation." => "Ver venleg og les dokumentasjonen for meir informasjon om korleis du konfigurerer tenaren din.", "Create an admin account" => "Lag ein admin-konto", -"Advanced" => "Avansert", "Data folder" => "Datamappe", "Configure the database" => "Set opp databasen", "will be used" => "vil verta nytta", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index f5016757bc..085ac3cd52 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -78,7 +78,6 @@ $TRANSLATIONS = array( "Cloud not found" => "Nívol pas trobada", "Security Warning" => "Avertiment de securitat", "Create an admin account" => "Crea un compte admin", -"Advanced" => "Avançat", "Data folder" => "Dorsièr de donadas", "Configure the database" => "Configura la basa de donadas", "will be used" => "serà utilizat", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 711ebcebe2..36583eb57d 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -1,6 +1,5 @@ "%s Współdzielone »%s« z tobą", "Couldn't send mail to following users: %s " => "Nie można było wysłać wiadomości do następujących użytkowników: %s", "Turned on maintenance mode" => "Włączony tryb konserwacji", "Turned off maintenance mode" => "Wyłączony tryb konserwacji", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa.", "For information how to properly configure your server, please see the documentation." => "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoznaj się z dokumentacją.", "Create an admin account" => "Utwórz konta administratora", -"Advanced" => "Zaawansowane", "Data folder" => "Katalog danych", "Configure the database" => "Skonfiguruj bazę danych", "will be used" => "zostanie użyte", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "pamiętaj", "Log in" => "Zaloguj", "Alternative Logins" => "Alternatywne loginy", -"Hey there,

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

" => "Cześć,

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

", "This ownCloud instance is currently in single user mode." => "Ta instalacja ownCloud działa obecnie w trybie pojedynczego użytkownika.", "This means only administrators can use the instance." => "To oznacza, że tylko administratorzy mogą w tej chwili używać aplikacji.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Skontaktuj się z administratorem, jeśli ten komunikat pojawił się nieoczekiwanie lub wyświetla się ciągle.", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index e4dd68b99d..22e79090f9 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -1,6 +1,5 @@ "%s compartilhou »%s« com você", "Couldn't send mail to following users: %s " => "Não foi possível enviar e-mail para os seguintes usuários: %s", "Turned on maintenance mode" => "Ativar modo de manutenção", "Turned off maintenance mode" => "Desligar o modo de manutenção", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Seu diretório de dados e arquivos são provavelmente acessíveis pela internet, porque o .htaccess não funciona.", "For information how to properly configure your server, please see the documentation." => "Para obter informações sobre como configurar corretamente o seu servidor, consulte a documentação.", "Create an admin account" => "Criar uma conta de administrador", -"Advanced" => "Avançado", "Data folder" => "Pasta de dados", "Configure the database" => "Configurar o banco de dados", "will be used" => "será usado", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "lembrar", "Log in" => "Fazer login", "Alternative Logins" => "Logins alternativos", -"Hey there,

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

" => "Olá,

só gostaria que você soubesse que %s compartilhou »%s« com você.
Veja isto!
"Nesta instância ownCloud está em modo de usuário único.", "This means only administrators can use the instance." => "Isso significa que apenas os administradores podem usar o exemplo.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte o seu administrador do sistema se esta mensagem persistir ou aparecer inesperadamente.", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 1d6429ddf2..059e9ce305 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -1,6 +1,6 @@ "%s partilhado »%s« contigo", +"Couldn't send mail to following users: %s " => "Não conseguiu enviar correio aos seguintes utilizadores: %s", "Turned on maintenance mode" => "Activado o modo de manutenção", "Turned off maintenance mode" => "Desactivado o modo de manutenção", "Updated database" => "Base de dados actualizada", @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "Unknown filetype" => "Ficheiro desconhecido", "Invalid image" => "Imagem inválida", "No temporary profile picture available, try again" => "Foto temporária de perfil indisponível, tente novamente", +"No crop data provided" => "Sem dados de corte fornecidos", "Sunday" => "Domingo", "Monday" => "Segunda", "Tuesday" => "Terça", @@ -43,16 +44,20 @@ $TRANSLATIONS = array( "last year" => "ano passado", "years ago" => "anos atrás", "Choose" => "Escolha", +"Error loading file picker template: {error}" => "Erro ao carregar o modelo de selecionador de ficheiro: {error}", "Yes" => "Sim", "No" => "Não", "Ok" => "Ok", "Error loading message template: {error}" => "Erro ao carregar o template: {error}", -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicto de ficheiro","{count} conflitos de ficheiro"), +"One file conflict" => "Um conflito no ficheiro", "Which files do you want to keep?" => "Quais os ficheiros que pretende manter?", +"If you select both versions, the copied file will have a number added to its name." => "Se escolher ambas as versões, o ficheiro copiado irá ter um número adicionado ao seu nome.", "Cancel" => "Cancelar", "Continue" => "Continuar", "(all selected)" => "(todos seleccionados)", "({count} selected)" => "({count} seleccionados)", +"Error loading file exists template" => "Erro ao carregar o modelo de existências do ficheiro", "Shared" => "Partilhado", "Share" => "Partilhar", "Error" => "Erro", @@ -61,6 +66,7 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Erro ao mudar permissões", "Shared with you and the group {group} by {owner}" => "Partilhado consigo e com o grupo {group} por {owner}", "Shared with you by {owner}" => "Partilhado consigo por {owner}", +"Share with user or group …" => "Partilhar com utilizador ou grupo...", "Share link" => "Partilhar o link", "Password protect" => "Proteger com palavra-passe", "Password" => "Password", @@ -89,8 +95,13 @@ $TRANSLATIONS = array( "Email sent" => "E-mail enviado", "Warning" => "Aviso", "The object type is not specified." => "O tipo de objecto não foi especificado", +"Enter new" => "Introduza novo", "Delete" => "Eliminar", "Add" => "Adicionar", +"Edit tags" => "Editar etiquetas", +"Error loading dialog template: {error}" => "Erro ao carregar modelo de diálogo: {error}", +"No tags selected for deletion." => "Não foram escolhidas etiquetas para apagar.", +"Please reload the page." => "Por favor recarregue a página.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A actualização falhou. Por favor reporte este incidente seguindo este link ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora.", "%s password reset" => "%s reposição da password", @@ -111,9 +122,18 @@ $TRANSLATIONS = array( "Apps" => "Aplicações", "Admin" => "Admin", "Help" => "Ajuda", +"Error loading tags" => "Erro ao carregar etiquetas", +"Tag already exists" => "A etiqueta já existe", +"Error deleting tag(s)" => "Erro ao apagar etiqueta(s)", +"Error tagging" => "Erro ao etiquetar", +"Error untagging" => "Erro ao desetiquetar", +"Error favoriting" => "Erro a definir como favorito", +"Error unfavoriting" => "Erro a remover como favorito", "Access forbidden" => "Acesso interdito", "Cloud not found" => "Cloud nao encontrada", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Olá,\n\napenas para informar que %s partilhou »%s« consigo.\nConsulte aqui: %s\n", "The share will expire on %s." => "Esta partilha vai expirar em %s.", +"Cheers!" => "Parabéns!", "Security Warning" => "Aviso de Segurança", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "A sua versão do PHP é vulnerável ao ataque Byte Null (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Por favor atualize a sua versão PHP instalada para usar o %s com segurança.", @@ -122,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "A pasta de dados do ownCloud e os respectivos ficheiros, estarão provavelmente acessíveis a partir da internet, pois o ficheiros .htaccess não funciona.", "For information how to properly configure your server, please see the documentation." => "Para obter informações de como configurar correctamente o servidor, veja em: documentação.", "Create an admin account" => "Criar uma conta administrativa", -"Advanced" => "Avançado", "Data folder" => "Pasta de dados", "Configure the database" => "Configure a base de dados", "will be used" => "vai ser usada", @@ -133,17 +152,24 @@ $TRANSLATIONS = array( "Database host" => "Anfitrião da base de dados", "Finish setup" => "Acabar instalação", "Finishing …" => "A terminar...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Esta aplicação requer JavaScript ativado para uma operação correta. Por favor ative o JavaScript e recarregue esta interface.", "%s is available. Get more information on how to update." => "%s está disponível. Tenha mais informações como actualizar.", "Log out" => "Sair", "Automatic logon rejected!" => "Login automático rejeitado!", "If you did not change your password recently, your account may be compromised!" => "Se não mudou a sua palavra-passe recentemente, a sua conta pode ter sido comprometida!", "Please change your password to secure your account again." => "Por favor mude a sua palavra-passe para assegurar a sua conta de novo.", +"Server side authentication failed!" => "Autenticação do lado do servidor falhou!", "Please contact your administrator." => "Por favor contacte o administrador.", "Lost your password?" => "Esqueceu-se da sua password?", "remember" => "lembrar", "Log in" => "Entrar", "Alternative Logins" => "Contas de acesso alternativas", +"This ownCloud instance is currently in single user mode." => "Esta instância do ownCloud está actualmente configurada no modo de utilizador único.", +"This means only administrators can use the instance." => "Isto significa que apenas os administradores podem usar a instância.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Contacte o seu administrador de sistema se esta mensagem continuar a aparecer ou apareceu inesperadamente.", "Thank you for your patience." => "Obrigado pela sua paciência.", -"Updating ownCloud to version %s, this may take a while." => "A actualizar o ownCloud para a versão %s, esta operação pode demorar." +"Updating ownCloud to version %s, this may take a while." => "A actualizar o ownCloud para a versão %s, esta operação pode demorar.", +"This ownCloud instance is currently being updated, which may take a while." => "Esta instância do ownCloud está a ser actualizada, poderá demorar algum tempo.", +"Please reload this page after a short time to continue using ownCloud." => "Por favo recarregue esta página após algum tempo para continuar a usar ownCloud." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ro.php b/core/l10n/ro.php index dda1b75d30..1b202d6421 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -1,6 +1,5 @@ "%s Partajat »%s« cu tine de", "Updated database" => "Bază de date actualizată", "Unknown filetype" => "Tip fișier necunoscut", "Invalid image" => "Imagine invalidă", @@ -109,7 +108,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Directorul tău de date și fișiere sunt probabil accesibile de pe Internet, deoarece fișierul .htaccess nu funcționează.", "For information how to properly configure your server, please see the documentation." => "Pentru informații despre cum să configurezi serverul, vezi documentația.", "Create an admin account" => "Crează un cont de administrator", -"Advanced" => "Avansat", "Data folder" => "Director date", "Configure the database" => "Configurează baza de date", "will be used" => "vor fi folosite", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index cd889e98e1..d1a4849c81 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -1,6 +1,5 @@ "%s поделился »%s« с вами", "Couldn't send mail to following users: %s " => "Невозможно отправить письмо следующим пользователям: %s", "Turned on maintenance mode" => "Режим отладки включён", "Turned off maintenance mode" => "Режим отладки отключён", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваша папка с данными и файлы возможно доступны из интернета потому что файл .htaccess не работает.", "For information how to properly configure your server, please see the documentation." => "Для информации, как правильно настроить Ваш сервер, пожалуйста загляните в документацию.", "Create an admin account" => "Создать учётную запись администратора", -"Advanced" => "Дополнительно", "Data folder" => "Директория с данными", "Configure the database" => "Настройка базы данных", "will be used" => "будет использовано", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "запомнить", "Log in" => "Войти", "Alternative Logins" => "Альтернативные имена пользователя", -"Hey there,

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

" => "Здравствуйте,

просто даём вам знать, что %s расшарил %s для вас.
Посмотреть!

", "This ownCloud instance is currently in single user mode." => "Эта установка ownCloud в настоящее время в однопользовательском режиме.", "This means only administrators can use the instance." => "Это значит, что только администраторы могут использовать эту установку.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Обратитесь к вашему системному администратору если это сообщение не исчезает или появляется неожиданно.", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 0b788ad73f..c6a41c0e88 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -73,7 +73,6 @@ $TRANSLATIONS = array( "Cloud not found" => "සොයා ගත නොහැක", "Security Warning" => "ආරක්ෂක නිවේදනයක්", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "ආරක්ෂිත අහඹු සංඛ්‍යා උත්පාදකයක් නොමැති නම් ඔබගේ ගිණුමට පහරදෙන අයකුට එහි මුරපද යළි පිහිටුවීමට අවශ්‍ය ටෝකන පහසුවෙන් සොයාගෙන ඔබගේ ගිණුම පැහැරගත හැක.", -"Advanced" => "දියුණු/උසස්", "Data folder" => "දත්ත ෆෝල්ඩරය", "Configure the database" => "දත්ත සමුදාය හැඩගැසීම", "will be used" => "භාවිතා වනු ඇත", diff --git a/core/l10n/sk.php b/core/l10n/sk.php index d9ab70db1a..c0a4ae1257 100644 --- a/core/l10n/sk.php +++ b/core/l10n/sk.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "Share" => "Zdieľať", "group" => "skupina", "Delete" => "Odstrániť", -"Personal" => "Osobné", -"Advanced" => "Pokročilé" +"Personal" => "Osobné" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 8fb62cd17a..3ebd77a9d9 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -1,6 +1,5 @@ "%s s vami zdieľa »%s«", "Couldn't send mail to following users: %s " => "Nebolo možné odoslať email týmto používateľom: %s ", "Turned on maintenance mode" => "Mód údržby je zapnutý", "Turned off maintenance mode" => "Mód údržby e vypnutý", @@ -103,13 +102,13 @@ $TRANSLATIONS = array( "Error loading dialog template: {error}" => "Chyba pri načítaní šablóny dialógu: {error}", "No tags selected for deletion." => "Nie sú vybraté štítky na zmazanie.", "Please reload the page." => "Obnovte prosím stránku.", -"The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizácia nebola úspešná. Problém nahláste na ownCloud community.", -"The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku.", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizácia nebola úspešná. Problém nahláste ownCloud comunite.", +"The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam vás na prihlasovaciu stránku.", "%s password reset" => "reset hesla %s", "Use the following link to reset your password: {link}" => "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}", -"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Odkaz na obnovenie hesla bol odoslaný na Vašu emailovú adresu.
Ak ho v krátkej dobe neobdržíte, skontrolujte si Váš kôš a priečinok spam.
Ak ho ani tam nenájdete, kontaktujte svojho administrátora.", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Odkaz na obnovenie hesla bol odoslaný na vašu emailovú adresu.
Ak ho v krátkej dobe neobdržíte, skontrolujte si váš kôš a priečinok spam.
Ak ho ani tam nenájdete, kontaktujte svojho administrátora.", "Request failed!
Did you make sure your email/username was right?" => "Požiadavka zlyhala.
Uistili ste sa, že vaše používateľské meno a email sú správne?", -"You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte e-mailom.", +"You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte emailom.", "Username" => "Meno používateľa", "Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Vaše súbory sú šifrované. Ak nemáte povolený kľúč obnovy, nie je spôsob, ako získať po obnove hesla vaše dáta. Ak nie ste si istí tým, čo robíte, obráťte sa najskôr na administrátora. Naozaj chcete pokračovať?", "Yes, I really want to reset my password now" => "Áno, želám si teraz obnoviť svoje heslo", @@ -132,9 +131,9 @@ $TRANSLATIONS = array( "Error unfavoriting" => "Chyba pri odobratí z obľúbených", "Access forbidden" => "Prístup odmietnutý", "Cloud not found" => "Nenájdené", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ahoj,\n\nchcem ti dať navedomie, že %s zdieľa %s s tebou.\nZobrazenie tu: %s\n\n", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Ahoj,\n\nchcem ti dať navedomie, že %s s tebou zdieľa %s.\nTu je odkaz: %s\n\n", "The share will expire on %s." => "Zdieľanie expiruje %s.", -"Cheers!" => "Za zdravie!", +"Cheers!" => "Pekný deň!", "Security Warning" => "Bezpečnostné varovanie", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Aktualizujte prosím vašu inštanciu PHP pre bezpečné používanie %s.", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Váš priečinok s dátami a súbormi je dostupný z internetu, lebo súbor .htaccess nefunguje.", "For information how to properly configure your server, please see the documentation." => "Pre informácie, ako správne nastaviť váš server, sa pozrite do dokumentácie.", "Create an admin account" => "Vytvoriť administrátorský účet", -"Advanced" => "Rozšírené", "Data folder" => "Priečinok dát", "Configure the database" => "Nastaviť databázu", "will be used" => "bude použité", @@ -155,18 +153,17 @@ $TRANSLATIONS = array( "Finish setup" => "Dokončiť inštaláciu", "Finishing …" => "Dokončujem...", "This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Táto aplikácia vyžaduje JavaScript a tento musí byť povolený pre správnu funkciu aplikácie. Prosím povoľte JavaScript a znovunačítajte toto rozhranie.", -"%s is available. Get more information on how to update." => "%s je dostupná. Získajte viac informácií k postupu aktualizácie.", +"%s is available. Get more information on how to update." => "%s je dostupná. Získajte viac informácií o postupe aktualizácie.", "Log out" => "Odhlásiť", "Automatic logon rejected!" => "Automatické prihlásenie bolo zamietnuté!", -"If you did not change your password recently, your account may be compromised!" => "V nedávnej dobe ste nezmenili svoje heslo, váš účet môže byť kompromitovaný.", -"Please change your password to secure your account again." => "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie vášho účtu", +"If you did not change your password recently, your account may be compromised!" => "V nedávnej dobe ste si nezmenili svoje heslo, váš účet môže byť kompromitovaný.", +"Please change your password to secure your account again." => "Prosím, zmeňte si svoje heslo pre opätovné zabezpečenie vášho účtu.", "Server side authentication failed!" => "Autentifikácia na serveri zlyhala!", "Please contact your administrator." => "Kontaktujte prosím vášho administrátora.", "Lost your password?" => "Zabudli ste heslo?", "remember" => "zapamätať", "Log in" => "Prihlásiť sa", "Alternative Logins" => "Alternatívne prihlásenie", -"Hey there,

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

" => "Ahoj,

chcem ti dať navedomie, že %s zdieľa »%s« s tebou.
Zobrazenie tu!

", "This ownCloud instance is currently in single user mode." => "Táto inštancia ownCloudu je teraz v jednopoužívateľskom móde.", "This means only administrators can use the instance." => "Len správca systému môže používať túto inštanciu.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktujte prosím správcu systému, ak sa táto správa objavuje opakovane alebo neočakávane.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 933ccf5556..de37902702 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,6 +1,5 @@ "%s je omogočil souporabo »%s«", "Couldn't send mail to following users: %s " => "Ni mogoče poslati sporočila za: %s", "Turned on maintenance mode" => "Vzdrževalni način je omogočen", "Turned off maintenance mode" => "Vzdrževalni način je onemogočen", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena.", "For information how to properly configure your server, please see the documentation." => "Za več informacij o pravilnem nastavljanju strežnika, kliknite na povezavo do dokumentacije.", "Create an admin account" => "Ustvari skrbniški račun", -"Advanced" => "Napredne možnosti", "Data folder" => "Podatkovna mapa", "Configure the database" => "Nastavi podatkovno zbirko", "will be used" => "bo uporabljen", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "zapomni si", "Log in" => "Prijava", "Alternative Logins" => "Druge prijavne možnosti", -"Hey there,

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

" => "Pozdravljeni,

oseba %s vam je omogočila souporabo %s.
Vir si lahko ogledate na tem naslovu.

", "This ownCloud instance is currently in single user mode." => "Ta seja oblaka ownCloud je trenutno v načinu enega sočasnega uporabnika.", "This means only administrators can use the instance." => "To pomeni, da lahko oblak uporabljajo le osebe s skrbniškimi dovoljenji.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Stopite v stik s skrbnikom sistema, če se bo sporočilo še naprej nepričakovano prikazovalo.", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 64d51b35a5..23192e9250 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -1,6 +1,5 @@ "%s ndau »%s« me ju", "Turned on maintenance mode" => "Mënyra e mirëmbajtjes u aktivizua", "Turned off maintenance mode" => "Mënyra e mirëmbajtjes u çaktivizua", "Updated database" => "Database-i u azhurnua", @@ -108,7 +107,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dosja dhe skedarët e të dhënave tuaja mbase janë të arritshme nga interneti sepse skedari .htaccess nuk po punon.", "For information how to properly configure your server, please see the documentation." => "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, ju lutem shikoni dokumentacionin.", "Create an admin account" => "Krijo një llogari administruesi", -"Advanced" => "Të përparuara", "Data folder" => "Emri i dosjes", "Configure the database" => "Konfiguro database-in", "will be used" => "do të përdoret", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index e5f3f0e6cb..f8f89b40bc 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -88,7 +88,6 @@ $TRANSLATIONS = array( "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Поуздан генератор случајних бројева није доступан, предлажемо да укључите PHP проширење OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без поузданог генератора случајнох бројева нападач лако може предвидети лозинку за поништавање кључа шифровања и отети вам налог.", "Create an admin account" => "Направи административни налог", -"Advanced" => "Напредно", "Data folder" => "Фацикла података", "Configure the database" => "Подешавање базе", "will be used" => "ће бити коришћен", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index 8a27ec15cf..f0cf65af54 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -92,7 +92,6 @@ $TRANSLATIONS = array( "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Bez generatora slučajnog broja napadač može predvideti token za reset lozinke i preuzeti Vaš nalog.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Vaši podaci i direktorijumi su verovatno dostupni sa interneta jer .htaccess fajl ne funkcioniše.", "Create an admin account" => "Napravi administrativni nalog", -"Advanced" => "Napredno", "Data folder" => "Fascikla podataka", "Configure the database" => "Podešavanje baze", "will be used" => "će biti korišćen", diff --git a/core/l10n/su.php b/core/l10n/su.php new file mode 100644 index 0000000000..dbedde7e63 --- /dev/null +++ b/core/l10n/su.php @@ -0,0 +1,9 @@ + array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array(""), +"_{count} file conflict_::_{count} file conflicts_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/sv.php b/core/l10n/sv.php index fe67ae9aef..25c845f57f 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -1,6 +1,5 @@ "%s delade »%s« med dig", "Couldn't send mail to following users: %s " => "Gick inte att skicka e-post till följande användare: %s", "Turned on maintenance mode" => "Aktiverade underhållsläge", "Turned off maintenance mode" => "Deaktiverade underhållsläge", @@ -142,7 +141,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Din datakatalog och filer är förmodligen tillgängliga från Internet, eftersom .htaccess-filen inte fungerar.", "For information how to properly configure your server, please see the documentation." => "För information hur du korrekt konfigurerar din servern, se ownCloud dokumentationen.", "Create an admin account" => "Skapa ett administratörskonto", -"Advanced" => "Avancerad", "Data folder" => "Datamapp", "Configure the database" => "Konfigurera databasen", "will be used" => "kommer att användas", @@ -164,7 +162,6 @@ $TRANSLATIONS = array( "remember" => "kom ihåg", "Log in" => "Logga in", "Alternative Logins" => "Alternativa inloggningar", -"Hey there,

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

" => "Hej där,

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

", "Contact your system administrator if this message persists or appeared unexpectedly." => "Hör av dig till din system administratör ifall detta meddelande fortsätter eller visas oväntat.", "Thank you for your patience." => "Tack för ditt tålamod.", "Updating ownCloud to version %s, this may take a while." => "Uppdaterar ownCloud till version %s, detta kan ta en stund.", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index ddd1e524a3..a95d442446 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "No secure random number generator is available, please enable the PHP OpenSSL extension." => "குறிப்பிட்ட எண்ணிக்கை பாதுகாப்பான புறப்பாக்கி / உண்டாக்கிகள் இல்லை, தயவுசெய்து PHP OpenSSL நீட்சியை இயலுமைப்படுத்துக. ", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "பாதுகாப்பான சீரற்ற எண்ணிக்கையான புறப்பாக்கி இல்லையெனின், தாக்குனரால் கடவுச்சொல் மீளமைப்பு அடையாளவில்லைகள் முன்மொழியப்பட்டு உங்களுடைய கணக்கை கைப்பற்றலாம்.", "Create an admin account" => " நிர்வாக கணக்கொன்றை உருவாக்குக", -"Advanced" => "உயர்ந்த", "Data folder" => "தரவு கோப்புறை", "Configure the database" => "தரவுத்தளத்தை தகவமைக்க", "will be used" => "பயன்படுத்தப்படும்", diff --git a/core/l10n/te.php b/core/l10n/te.php index 0754429351..9c22a61aa7 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -21,13 +21,13 @@ $TRANSLATIONS = array( "December" => "డిసెంబర్", "Settings" => "అమరికలు", "seconds ago" => "క్షణాల క్రితం", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("%n నిమిషం క్రితం","%n నిమిషాల క్రితం"), +"_%n hour ago_::_%n hours ago_" => array("%n గంట క్రితం","%n గంటల క్రితం"), "today" => "ఈరోజు", "yesterday" => "నిన్న", -"_%n day ago_::_%n days ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("%n రోజు క్రితం","%n రోజుల క్రితం"), "last month" => "పోయిన నెల", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("%n నెల క్రితం","%n నెలల క్రితం"), "months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", @@ -36,15 +36,18 @@ $TRANSLATIONS = array( "Ok" => "సరే", "_{count} file conflict_::_{count} file conflicts_" => array("",""), "Cancel" => "రద్దుచేయి", +"Continue" => "కొనసాగించు", "Error" => "పొరపాటు", "Password" => "సంకేతపదం", "Send" => "పంపించు", "Expiration date" => "కాలం చెల్లు తేదీ", "delete" => "తొలగించు", +"Warning" => "హెచ్చరిక", "Delete" => "తొలగించు", "Add" => "చేర్చు", "Username" => "వాడుకరి పేరు", "New password" => "కొత్త సంకేతపదం", +"Personal" => "వ్యక్తిగతం", "Users" => "వాడుకరులు", "Help" => "సహాయం", "Log out" => "నిష్క్రమించు", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 2180a6efa7..0661ccce16 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -92,7 +92,6 @@ $TRANSLATIONS = array( "No secure random number generator is available, please enable the PHP OpenSSL extension." => "ยังไม่มีตัวสร้างหมายเลขแบบสุ่มให้ใช้งาน, กรุณาเปิดใช้งานส่วนเสริม PHP OpenSSL", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "หากปราศจากตัวสร้างหมายเลขแบบสุ่มที่ช่วยป้องกันความปลอดภัย ผู้บุกรุกอาจสามารถที่จะคาดคะเนรหัสยืนยันการเข้าถึงเพื่อรีเซ็ตรหัสผ่าน และเอาบัญชีของคุณไปเป็นของตนเองได้", "Create an admin account" => "สร้าง บัญชีผู้ดูแลระบบ", -"Advanced" => "ขั้นสูง", "Data folder" => "โฟลเดอร์เก็บข้อมูล", "Configure the database" => "กำหนดค่าฐานข้อมูล", "will be used" => "จะถูกใช้", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index fc08d68bb1..6a21e25ef2 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,6 +1,5 @@ "%s sizinle »%s« paylaşımında bulundu", "Couldn't send mail to following users: %s " => "Şu kullanıcılara posta gönderilemedi: %s", "Turned on maintenance mode" => "Bakım kipi etkinleştirildi", "Turned off maintenance mode" => "Bakım kipi kapatıldı", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için internet'ten erişime açık.", "For information how to properly configure your server, please see the documentation." => "Sunucunuzu nasıl ayarlayacağınıza dair bilgi için, lütfen belgelendirme sayfasını ziyaret edin.", "Create an admin account" => "Bir yönetici hesabı oluşturun", -"Advanced" => "Gelişmiş", "Data folder" => "Veri klasörü", "Configure the database" => "Veritabanını ayarla", "will be used" => "kullanılacak", @@ -166,7 +164,6 @@ $TRANSLATIONS = array( "remember" => "hatırla", "Log in" => "Giriş yap", "Alternative Logins" => "Alternatif Girişler", -"Hey there,

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

" => "Merhaba,

%s sizinle »%s« paylaşımında bulundu.
Paylaşımı gör!

İyi günler!", "This ownCloud instance is currently in single user mode." => "Bu ownCloud örneği şu anda tek kullanıcı kipinde.", "This means only administrators can use the instance." => "Bu, örneği sadece yöneticiler kullanabilir demektir.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Eğer bu ileti görünmeye devam ederse veya beklenmedik şekilde ortaya çıkmışsa sistem yöneticinizle iletişime geçin.", diff --git a/core/l10n/ug.php b/core/l10n/ug.php index c340ff7540..b6e4dbbe6f 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -49,7 +49,6 @@ $TRANSLATIONS = array( "Apps" => "ئەپلەر", "Help" => "ياردەم", "Security Warning" => "بىخەتەرلىك ئاگاھلاندۇرۇش", -"Advanced" => "ئالىي", "Finish setup" => "تەڭشەك تامام", "Log out" => "تىزىمدىن چىق" ); diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 3cc151f5a2..86fcbe158a 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -1,6 +1,5 @@ "%s розподілено »%s« з тобою", "Couldn't send mail to following users: %s " => "Неможливо надіслати пошту наступним користувачам: %s ", "Turned on maintenance mode" => "Увімкнено захищений режим", "Turned off maintenance mode" => "Вимкнено захищений режим", @@ -143,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваші дані каталогів і файлів, ймовірно, доступні з інтернету, тому що .htaccess файл не працює.", "For information how to properly configure your server, please see the documentation." => "Для отримання інформації, як правильно налаштувати сервер, див. документацію.", "Create an admin account" => "Створити обліковий запис адміністратора", -"Advanced" => "Додатково", "Data folder" => "Каталог даних", "Configure the database" => "Налаштування бази даних", "will be used" => "буде використано", @@ -165,7 +163,6 @@ $TRANSLATIONS = array( "remember" => "запам'ятати", "Log in" => "Вхід", "Alternative Logins" => "Альтернативні Логіни", -"Hey there,

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

" => "Агов,

просто щоб ви знали, що %s поділився »%s« з вами.
Подивіться на це !

", "This ownCloud instance is currently in single user mode." => "Цей екземпляр OwnCloud зараз працює в монопольному режимі одного користувача", "This means only administrators can use the instance." => "Це означає, що лише адміністратори можуть використовувати цей екземпляр.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Зверніться до системного адміністратора, якщо це повідомлення зберігається або з'являєтья несподівано.", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index ed090fdaf7..3012eb869c 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Access forbidden" => "پہنچ کی اجازت نہیں", "Cloud not found" => "نہیں مل سکا", "Create an admin account" => "ایک ایڈمن اکاؤنٹ بنائیں", -"Advanced" => "ایڈوانسڈ", "Data folder" => "ڈیٹا فولڈر", "Configure the database" => "ڈیٹا بیس کونفگر کریں", "will be used" => "استعمال ہو گا", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 06decc3a0c..f677573031 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -1,5 +1,17 @@ "Không thể gửi thư cho người dùng: %s", +"Turned on maintenance mode" => "Bật chế độ bảo trì", +"Turned off maintenance mode" => "Tắt chế độ bảo trì", +"Updated database" => "Cơ sở dữ liệu đã được cập nhật", +"Updating filecache, this may take really long..." => "Đang cập nhật tập tin bộ nhớ cache, việc này có thể mất nhiều thời gian...", +"Updated filecache" => "Đã cập nhật tập tin bộ nhớ cache", +"... %d%% done ..." => "... %d%% hoàn thành ...", +"No image or file provided" => "Không có hình ảnh hoặc tập tin được cung cấp", +"Unknown filetype" => "Không biết kiểu tập tin", +"Invalid image" => "Hình ảnh không hợp lệ", +"No temporary profile picture available, try again" => "Ảnh cá nhân tạm thời không có giá trị, hãy thử lại", +"No crop data provided" => "Không có dữ liệu nguồn được cung cấp", "Sunday" => "Chủ nhật", "Monday" => "Thứ 2", "Tuesday" => "Thứ 3", @@ -21,22 +33,31 @@ $TRANSLATIONS = array( "December" => "Tháng 12", "Settings" => "Cài đặt", "seconds ago" => "vài giây trước", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n phút trước"), +"_%n hour ago_::_%n hours ago_" => array("%n giờ trước"), "today" => "hôm nay", "yesterday" => "hôm qua", -"_%n day ago_::_%n days ago_" => array(""), +"_%n day ago_::_%n days ago_" => array("%n ngày trước"), "last month" => "tháng trước", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n tháng trước"), "months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", "Choose" => "Chọn", +"Error loading file picker template: {error}" => "Lỗi khi tải mẫu tập tin picker: {error}", "Yes" => "Có", "No" => "Không", "Ok" => "Đồng ý", -"_{count} file conflict_::_{count} file conflicts_" => array(""), +"Error loading message template: {error}" => "Lỗi khi tải mẫu thông điệp: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} tập tin xung đột"), +"One file conflict" => "Một tập tin xung đột", +"Which files do you want to keep?" => "Bạn muốn tiếp tục với những tập tin nào?", +"If you select both versions, the copied file will have a number added to its name." => "Nếu bạn chọn cả hai phiên bản, tập tin được sao chép sẽ được đánh thêm số vào tên của nó.", "Cancel" => "Hủy", +"Continue" => "Tiếp tục", +"(all selected)" => "(Tất cả các lựa chọn)", +"({count} selected)" => "({count} được chọn)", +"Error loading file exists template" => "Lỗi khi tải tập tin mẫu đã tồn tại", "Shared" => "Được chia sẻ", "Share" => "Chia sẻ", "Error" => "Lỗi", @@ -45,8 +66,11 @@ $TRANSLATIONS = array( "Error while changing permissions" => "Lỗi trong quá trình phân quyền", "Shared with you and the group {group} by {owner}" => "Đã được chia sẽ với bạn và nhóm {group} bởi {owner}", "Shared with you by {owner}" => "Đã được chia sẽ bởi {owner}", +"Share with user or group …" => "Chia sẻ với người dùng hoặc nhóm", +"Share link" => "Chia sẻ liên kết", "Password protect" => "Mật khẩu bảo vệ", "Password" => "Mật khẩu", +"Allow Public Upload" => "Cho phép công khai tập tin tải lên", "Email link to person" => "Liên kết email tới cá nhân", "Send" => "Gởi", "Set expiration date" => "Đặt ngày kết thúc", @@ -57,6 +81,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "Chia sẻ lại không được cho phép", "Shared in {item} with {user}" => "Đã được chia sẽ trong {item} với {user}", "Unshare" => "Bỏ chia sẻ", +"notify by email" => "Thông báo qua email", "can edit" => "có thể chỉnh sửa", "access control" => "quản lý truy cập", "create" => "tạo", @@ -70,15 +95,24 @@ $TRANSLATIONS = array( "Email sent" => "Email đã được gửi", "Warning" => "Cảnh báo", "The object type is not specified." => "Loại đối tượng không được chỉ định.", +"Enter new" => "Nhập mới", "Delete" => "Xóa", "Add" => "Thêm", +"Edit tags" => "Sửa thẻ", +"Error loading dialog template: {error}" => "Lỗi khi tải mẫu hội thoại: {error}", +"No tags selected for deletion." => "Không có thẻ nào được chọn để xóa", +"Please reload the page." => "Vui lòng tải lại trang.", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Cập nhật không thành công . Vui lòng thông báo đến Cộng đồng ownCloud .", "The update was successful. Redirecting you to ownCloud now." => "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud.", +"%s password reset" => "%s thiết lập lại mật khẩu", "Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Liên kết tạo lại mật khẩu đã được gửi tới hộp thư của bạn.
Nếu bạn không thấy nó sau một khoảng thời gian, vui lòng kiểm tra trong thư mục Spam/Rác.
Nếu vẫn không thấy, vui lòng hỏi người quản trị hệ thống.", "Request failed!
Did you make sure your email/username was right?" => "Yêu cầu thất bại!
Bạn có chắc là email/tên đăng nhập của bạn chính xác?", "You will receive a link to reset your password via Email." => "Vui lòng kiểm tra Email để khôi phục lại mật khẩu.", "Username" => "Tên đăng nhập", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Tập tin của bạn được mã hóa. Nếu bạn chưa kích hoạt khoá phục hồi, sẽ không có cách nào để lấy lại được dữ liệu sau khi thiết lập lại mật khẩu. Nếu bạn không biết phải làm gì, xin vui lòng liên hệ với quản trị viên trước khi tiếp tục. Bạn có muốn tiếp tục?", +"Yes, I really want to reset my password now" => "Vâng, tôi muốn thiết lập lại mật khẩu ngay.", +"Reset" => "Khởi động lại", "Your password was reset" => "Mật khẩu của bạn đã được khôi phục", "To login page" => "Trang đăng nhập", "New password" => "Mật khẩu mới", @@ -88,15 +122,24 @@ $TRANSLATIONS = array( "Apps" => "Ứng dụng", "Admin" => "Quản trị", "Help" => "Giúp đỡ", +"Error loading tags" => "Lỗi khi tải thẻ", +"Tag already exists" => "Thẻ đã tồn tại", +"Error deleting tag(s)" => "Lỗi khi xóa (nhiều)thẻ", +"Error tagging" => "Lỗi gắn thẻ", +"Error untagging" => "Lỗi không gắn thẻ", "Access forbidden" => "Truy cập bị cấm", "Cloud not found" => "Không tìm thấy Clound", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Xin chào,\n\nbáo cho bạn biết rằng %s đã chia sẽ %s với bạn.\nXem nó: %s\n\n", +"The share will expire on %s." => "Chia sẻ này sẽ hết hiệu lực vào %s.", +"Cheers!" => "Chúc mừng!", "Security Warning" => "Cảnh bảo bảo mật", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Phiên bản PHP của bạn có lỗ hổng NULL Byte attack (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Vui lòng cập nhật bản cài đặt PHP để sử dụng %s một cách an toàn.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Không an toàn ! chức năng random number generator đã có sẵn ,vui lòng bật PHP OpenSSL extension.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Nếu không có random number generator , Hacker có thể thiết lập lại mật khẩu và chiếm tài khoản của bạn.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Thư mục và file dữ liệu của bạn có thể được truy cập từ internet bởi vì file .htaccess không hoạt động", +"For information how to properly configure your server, please see the documentation." => "Để biết thêm thông tin và cách cấu hình đúng vui lòng xem thêm tài l.", "Create an admin account" => "Tạo một tài khoản quản trị", -"Advanced" => "Nâng cao", "Data folder" => "Thư mục dữ liệu", "Configure the database" => "Cấu hình cơ sở dữ liệu", "will be used" => "được sử dụng", @@ -106,15 +149,25 @@ $TRANSLATIONS = array( "Database tablespace" => "Cơ sở dữ liệu tablespace", "Database host" => "Database host", "Finish setup" => "Cài đặt hoàn tất", +"Finishing …" => "Đang hoàn thành ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "Ứng dụng này yêu cầu JavaScript để hoạt động. Vui lòng kích hoạt JavaScript và tải lại giao diện này.", "%s is available. Get more information on how to update." => "%s còn trống. Xem thêm thông tin cách cập nhật.", "Log out" => "Đăng xuất", "Automatic logon rejected!" => "Tự động đăng nhập đã bị từ chối !", "If you did not change your password recently, your account may be compromised!" => "Nếu bạn không thay đổi mật khẩu gần đây của bạn, tài khoản của bạn có thể gặp nguy hiểm!", "Please change your password to secure your account again." => "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài khoản của bạn một lần nữa.", +"Server side authentication failed!" => "Xác thực phía máy chủ không thành công!", +"Please contact your administrator." => "Vui lòng liên hệ với quản trị viên.", "Lost your password?" => "Bạn quên mật khẩu ?", "remember" => "ghi nhớ", "Log in" => "Đăng nhập", "Alternative Logins" => "Đăng nhập khác", -"Updating ownCloud to version %s, this may take a while." => "Cập nhật ownCloud lên phiên bản %s, có thể sẽ mất thời gian" +"This ownCloud instance is currently in single user mode." => "OwnCloud trong trường hợp này đang ở chế độ người dùng duy nhất.", +"This means only administrators can use the instance." => "Điều này có nghĩa chỉ có người quản trị có thể sử dụng trong trường hợp này.", +"Contact your system administrator if this message persists or appeared unexpectedly." => "Liên hệ với người quản trị nếu lỗi này vẫn tồn tại hoặc xuất hiện bất ngờ.", +"Thank you for your patience." => "Cảm ơn sự kiên nhẫn của bạn.", +"Updating ownCloud to version %s, this may take a while." => "Cập nhật ownCloud lên phiên bản %s, có thể sẽ mất thời gian", +"This ownCloud instance is currently being updated, which may take a while." => "Phiên bản ownCloud này hiện đang được cập nhật, có thể sẽ mất một ít thời gian.", +"Please reload this page after a short time to continue using ownCloud." => "Xin vui lòng tải lại trang này để tiếp tục sử dụng ownCloud." ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 3da1b9ca68..097c26252c 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -1,14 +1,17 @@ "%s 向您分享了 »%s«", +"Couldn't send mail to following users: %s " => "发送失败,用户如下: %s ", "Turned on maintenance mode" => "启用维护模式", "Turned off maintenance mode" => "关闭维护模式", "Updated database" => "数据库已更新", "Updating filecache, this may take really long..." => "正在更新文件缓存,这可能需要较长时间...", "Updated filecache" => "文件缓存已更新", "... %d%% done ..." => "...已完成 %d%% ...", +"No image or file provided" => "没有提供图片或文件", "Unknown filetype" => "未知的文件类型", "Invalid image" => "无效的图像", +"No temporary profile picture available, try again" => "没有临时概览页图片可用,请重试", +"No crop data provided" => "没有提供相应数据", "Sunday" => "星期日", "Monday" => "星期一", "Tuesday" => "星期二", @@ -41,11 +44,20 @@ $TRANSLATIONS = array( "last year" => "去年", "years ago" => "年前", "Choose" => "选择(&C)...", +"Error loading file picker template: {error}" => "加载文件分拣模板出错: {error}", "Yes" => "是", "No" => "否", "Ok" => "好", -"_{count} file conflict_::_{count} file conflicts_" => array(""), +"Error loading message template: {error}" => "加载消息模板出错: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} 个文件冲突"), +"One file conflict" => "1个文件冲突", +"Which files do you want to keep?" => "想要保留哪一个文件呢?", +"If you select both versions, the copied file will have a number added to its name." => "如果同时选择了连个版本,复制的文件名将会添加上一个数字。", "Cancel" => "取消", +"Continue" => "继续", +"(all selected)" => "(选中全部)", +"({count} selected)" => "(选择了{count}个)", +"Error loading file exists template" => "加载文件存在性模板失败", "Shared" => "已共享", "Share" => "分享", "Error" => "错误", @@ -54,6 +66,8 @@ $TRANSLATIONS = array( "Error while changing permissions" => "修改权限时出错", "Shared with you and the group {group} by {owner}" => "{owner} 共享给您及 {group} 组", "Shared with you by {owner}" => "{owner} 与您共享", +"Share with user or group …" => "分享给其他用户或组 ...", +"Share link" => "分享链接", "Password protect" => "密码保护", "Password" => "密码", "Allow Public Upload" => "允许公开上传", @@ -67,6 +81,7 @@ $TRANSLATIONS = array( "Resharing is not allowed" => "不允许二次共享", "Shared in {item} with {user}" => "在 {item} 与 {user} 共享。", "Unshare" => "取消共享", +"notify by email" => "以邮件通知", "can edit" => "可以修改", "access control" => "访问控制", "create" => "创建", @@ -80,8 +95,13 @@ $TRANSLATIONS = array( "Email sent" => "邮件已发送", "Warning" => "警告", "The object type is not specified." => "未指定对象类型。", +"Enter new" => "输入新...", "Delete" => "删除", "Add" => "增加", +"Edit tags" => "编辑标签", +"Error loading dialog template: {error}" => "加载对话框模板出错: {error}", +"No tags selected for deletion." => "请选择要删除的标签。", +"Please reload the page." => "请重新加载页面。", "The update was unsuccessful. Please report this issue to the ownCloud community." => "更新不成功。请汇报将此问题汇报给 ownCloud 社区。", "The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。", "%s password reset" => "重置 %s 的密码", @@ -102,8 +122,18 @@ $TRANSLATIONS = array( "Apps" => "应用", "Admin" => "管理", "Help" => "帮助", +"Error loading tags" => "加载标签出错", +"Tag already exists" => "标签已存在", +"Error deleting tag(s)" => "删除标签(s)时出错", +"Error tagging" => "添加标签时出错", +"Error untagging" => "移除标签时出错", +"Error favoriting" => "收藏时出错", +"Error unfavoriting" => "删除收藏时出错", "Access forbidden" => "访问禁止", "Cloud not found" => "未找到云", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "嗨、你好,\n\n只想让你知道 %s 分享了 %s 给你。\n现在查看: %s\n", +"The share will expire on %s." => "此分享将在 %s 过期。", +"Cheers!" => "干杯!", "Security Warning" => "安全警告", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "为保证安全使用 %s 请更新您的PHP。", @@ -112,7 +142,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "您的数据目录和文件可能可以直接被互联网访问,因为 .htaccess 并未正常工作。", "For information how to properly configure your server, please see the documentation." => "关于如何配置服务器,请参见 此文档。", "Create an admin account" => "创建管理员账号", -"Advanced" => "高级", "Data folder" => "数据目录", "Configure the database" => "配置数据库", "will be used" => "将被使用", @@ -122,15 +151,25 @@ $TRANSLATIONS = array( "Database tablespace" => "数据库表空间", "Database host" => "数据库主机", "Finish setup" => "安装完成", +"Finishing …" => "正在结束 ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "此程序需要启用JavaScript才能正常运行。请启用JavaScript 并重新加载此接口。", "%s is available. Get more information on how to update." => "%s 可用。获取更多关于如何升级的信息。", "Log out" => "注销", "Automatic logon rejected!" => "自动登录被拒绝!", "If you did not change your password recently, your account may be compromised!" => "如果您没有最近修改您的密码,您的帐户可能会受到影响!", "Please change your password to secure your account again." => "请修改您的密码,以保护您的账户安全。", +"Server side authentication failed!" => "服务端验证失败!", +"Please contact your administrator." => "请联系你的管理员。", "Lost your password?" => "忘记密码?", "remember" => "记住", "Log in" => "登录", "Alternative Logins" => "其他登录方式", -"Updating ownCloud to version %s, this may take a while." => "更新 ownCloud 到版本 %s,这可能需要一些时间。" +"This ownCloud instance is currently in single user mode." => "当前ownCloud实例运行在单用户模式下。", +"This means only administrators can use the instance." => "这意味着只有管理员才能在实例上操作。", +"Contact your system administrator if this message persists or appeared unexpectedly." => "如果这个消息一直存在或不停出现,请联系你的系统管理员。", +"Thank you for your patience." => "感谢让你久等了。", +"Updating ownCloud to version %s, this may take a while." => "更新 ownCloud 到版本 %s,这可能需要一些时间。", +"This ownCloud instance is currently being updated, which may take a while." => "当前ownCloud实例正在更新,可能需要一段时间。", +"Please reload this page after a short time to continue using ownCloud." => "请稍后重新加载这个页面,以继续使用ownCloud。" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index 809bd7de92..51d78a0979 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -73,7 +73,6 @@ $TRANSLATIONS = array( "Help" => "幫助", "Cloud not found" => "未找到Cloud", "Create an admin account" => "建立管理員帳戶", -"Advanced" => "進階", "Configure the database" => "設定資料庫", "will be used" => "將被使用", "Database user" => "資料庫帳戶", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index d78929ddb9..ec90ab40e9 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -1,6 +1,5 @@ "%s 與您分享了 %s", "Couldn't send mail to following users: %s " => "無法寄送郵件給這些使用者:%s", "Turned on maintenance mode" => "已啓用維護模式", "Turned off maintenance mode" => "已停用維護模式", @@ -140,7 +139,6 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。", "For information how to properly configure your server, please see the documentation." => "請參考說明文件以瞭解如何正確設定您的伺服器。", "Create an admin account" => "建立一個管理者帳號", -"Advanced" => "進階", "Data folder" => "資料儲存位置", "Configure the database" => "設定資料庫", "will be used" => "將會使用", @@ -162,7 +160,6 @@ $TRANSLATIONS = array( "remember" => "記住", "Log in" => "登入", "Alternative Logins" => "其他登入方法", -"Hey there,

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

" => "嗨,

%s 和你分享了 %s ,到這裡看它

", "Contact your system administrator if this message persists or appeared unexpectedly." => "若這個訊息持續出現,請聯絡系統管理員", "Thank you for your patience." => "感謝您的耐心", "Updating ownCloud to version %s, this may take a while." => "正在將 ownCloud 升級至版本 %s ,這可能需要一點時間。", diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 9808a0ee03..74d8261220 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 169f2307c3..0d5c1212cf 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ach/files_encryption.po b/l10n/ach/files_encryption.po index 576cbab374..79790b6544 100644 --- a/l10n/ach/files_encryption.po +++ b/l10n/ach/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/ach/files_external.po b/l10n/ach/files_external.po index f3808f1199..777e81342e 100644 --- a/l10n/ach/files_external.po +++ b/l10n/ach/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:457 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:460 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ach/files_sharing.po b/l10n/ach/files_sharing.po index ed2a3de1d7..37a1f4ea88 100644 --- a/l10n/ach/files_sharing.po +++ b/l10n/ach/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ach/files_trashbin.po b/l10n/ach/files_trashbin.po index 1eeccfe967..96c38828dd 100644 --- a/l10n/ach/files_trashbin.po +++ b/l10n/ach/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index 188f480eab..c338a1ca54 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 8b891176d1..6f27edb831 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ach/user_ldap.po b/l10n/ach/user_ldap.po index b4fe8bb261..8516b5a6fe 100644 --- a/l10n/ach/user_ldap.po +++ b/l10n/ach/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po index 2176752235..f3f11c8eae 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ady/files.po b/l10n/ady/files.po index 95bd2e10d1..7aa54f0efa 100644 --- a/l10n/ady/files.po +++ b/l10n/ady/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ady/files_encryption.po b/l10n/ady/files_encryption.po index d36a8d8def..2ae790c338 100644 --- a/l10n/ady/files_encryption.po +++ b/l10n/ady/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/ady/files_external.po b/l10n/ady/files_external.po index 9715fc2bc0..c764d6453e 100644 --- a/l10n/ady/files_external.po +++ b/l10n/ady/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-07 12:16-0400\n" -"PO-Revision-Date: 2013-10-07 15:03+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:457 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:460 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ady/files_sharing.po b/l10n/ady/files_sharing.po index c155c36bda..62d961f352 100644 --- a/l10n/ady/files_sharing.po +++ b/l10n/ady/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ady/files_trashbin.po b/l10n/ady/files_trashbin.po index c8916178f7..65927975a2 100644 --- a/l10n/ady/files_trashbin.po +++ b/l10n/ady/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index 6043ba35ec..0a215aa358 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index 72191d8382..66bd41f08f 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ady/user_ldap.po b/l10n/ady/user_ldap.po index 9c99719138..705677146f 100644 --- a/l10n/ady/user_ldap.po +++ b/l10n/ady/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/af/core.po b/l10n/af/core.po index a93e058017..4fbf58f9d9 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/af/files.po b/l10n/af/files.po index b5cf6a2f4b..0214d96486 100644 --- a/l10n/af/files.po +++ b/l10n/af/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/af/files_encryption.po b/l10n/af/files_encryption.po index a8ac7007bd..6601d7dfb2 100644 --- a/l10n/af/files_encryption.po +++ b/l10n/af/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/af/files_external.po b/l10n/af/files_external.po index 12bc380c97..f3768b60b6 100644 --- a/l10n/af/files_external.po +++ b/l10n/af/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-21 18:25+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:457 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:460 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/af/files_sharing.po b/l10n/af/files_sharing.po index 1321de3642..15b99fb2ab 100644 --- a/l10n/af/files_sharing.po +++ b/l10n/af/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-21 18:25+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/af/files_trashbin.po b/l10n/af/files_trashbin.po index d5ff3ad381..2bc09ed034 100644 --- a/l10n/af/files_trashbin.po +++ b/l10n/af/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-21 18:25+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/af/lib.po b/l10n/af/lib.po index 8954006a8a..9567765edb 100644 --- a/l10n/af/lib.po +++ b/l10n/af/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/af/settings.po b/l10n/af/settings.po index 542ebc1bb0..9415916da2 100644 --- a/l10n/af/settings.po +++ b/l10n/af/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/af/user_ldap.po b/l10n/af/user_ldap.po index e9d0724a46..32c77bec4a 100644 --- a/l10n/af/user_ldap.po +++ b/l10n/af/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 618d4d305d..0e240e0483 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Instellings" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Wagwoord" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Gebruik die volgende skakel om jou wagwoord te herstel: {link}" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Gebruikersnaam" @@ -525,7 +550,7 @@ msgstr "Persoonlik" msgid "Users" msgstr "Gebruikers" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Toepassings" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "Skep `n admin-rekening" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Gevorderd" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Stel databasis op" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "sal gebruik word" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasis-gebruiker" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Databasis-wagwoord" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Databasis naam" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Maak opstelling klaar" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Teken uit" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Jou wagwoord verloor?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "onthou" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Teken aan" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index c871aaa6c4..ba81bbfb0a 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 926d021d25..ccf69021eb 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index 30a7d76922..11027ed978 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Gebruikers" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 79ee323751..d2b21bc6a2 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 4d4d4b186e..8fb4f5b930 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 7d0718c77d..6dcb6dbbdf 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hulp" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Persoonlik" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Instellings" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Gebruikers" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "webdienste onder jou beheer" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index ea0e485d5c..fb7decc127 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Wagwoord" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nuwe wagwoord" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Gebruikersnaam" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index ffa1923ad1..4f4ab64328 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "Hulp" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ak/core.po b/l10n/ak/core.po index 71758432e2..424006a02c 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 13:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ak/files.po b/l10n/ak/files.po index 4544710bb3..8f4a06ccd3 100644 --- a/l10n/ak/files.po +++ b/l10n/ak/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 13:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ak/files_encryption.po b/l10n/ak/files_encryption.po index b2b29d74f0..92710e5b5d 100644 --- a/l10n/ak/files_encryption.po +++ b/l10n/ak/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 13:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:62 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:63 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:281 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/ak/files_external.po b/l10n/ak/files_external.po index 95dcbe86db..7ee8bbb3a5 100644 --- a/l10n/ak/files_external.po +++ b/l10n/ak/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 13:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:467 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:471 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:474 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ak/files_sharing.po b/l10n/ak/files_sharing.po index da92ef7b37..6e19fe894d 100644 --- a/l10n/ak/files_sharing.po +++ b/l10n/ak/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 13:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ak/files_trashbin.po b/l10n/ak/files_trashbin.po index ee5c134734..56c75b3a35 100644 --- a/l10n/ak/files_trashbin.po +++ b/l10n/ak/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 13:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,21 +17,25 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po index 3778c524ce..2747783c02 100644 --- a/l10n/ak/lib.po +++ b/l10n/ak/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 13:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,34 +17,34 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index 90a872fc26..9230246e52 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 13:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ak/user_ldap.po b/l10n/ak/user_ldap.po index 3e48b49899..537c7c79d0 100644 --- a/l10n/ak/user_ldap.po +++ b/l10n/ak/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 13:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 5cc97810f1..2e0f0f39c8 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,91 +68,95 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "الاحد" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "الأثنين" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "الثلاثاء" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "الاربعاء" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "الخميس" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "الجمعه" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "السبت" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "كانون الثاني" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "شباط" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "آذار" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "نيسان" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "أيار" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "حزيران" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "تموز" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "آب" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "أيلول" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "تشرين الاول" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "تشرين الثاني" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "كانون الاول" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "إعدادات" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -167,7 +166,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -177,15 +176,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "اليوم" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -195,11 +194,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -209,15 +208,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "سنة مضت" @@ -289,6 +288,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "مشارك" @@ -297,12 +316,12 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "خطأ" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -314,123 +333,123 @@ msgstr "حصل خطأ عند عملية إزالة المشاركة" msgid "Error while changing permissions" msgstr "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "شورك معك ومع المجموعة {group} من قبل {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "شورك معك من قبل {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "شارك الرابط" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "حماية كلمة السر" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "كلمة المرور" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "ارسل الرابط بالبريد الى صديق" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "أرسل" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "تاريخ إنتهاء الصلاحية" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "مشاركة عبر البريد الإلكتروني:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "مجموعة" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "إنشاء" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "تحديث" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "حذف" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "مشاركة" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "تحذير" @@ -477,11 +496,17 @@ msgstr "حصل خطأ في عملية التحديث, يرجى ارسال تقر msgid "The update was successful. Redirecting you to ownCloud now." msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}" @@ -501,8 +526,8 @@ msgstr "الطلب رفض!
هل انت متأكد أن الاسم/العن msgid "You will receive a link to reset your password via Email." msgstr "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "إسم المستخدم" @@ -546,7 +571,7 @@ msgstr "شخصي" msgid "Users" msgstr "المستخدمين" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "التطبيقات" @@ -656,49 +681,47 @@ msgstr "" msgid "Create an admin account" msgstr "أضف
مستخدم رئيسي " -#: templates/installation.php:67 -msgid "Advanced" -msgstr "تعديلات متقدمه" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "مجلد المعلومات" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "أسس قاعدة البيانات" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "سيتم استخدمه" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "انهاء التعديلات" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -714,7 +737,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "الخروج" @@ -740,27 +763,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "تذكر" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "أدخل" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "اسماء دخول بديلة" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 90e0850957..6053a05021 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,36 +29,48 @@ msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا ال msgid "Could not move %s" msgstr "فشل في نقل %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "اسم الملف لا يجوز أن يكون فارغا" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -66,155 +78,156 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "غير قادر على تحميل المجلد" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "علامة غير صالحة" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "مسار غير صحيح." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "الملفات" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "لا توجد مساحة كافية" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "تم إلغاء عملية رفع الملفات ." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "تعذر الحصول على نتيجة من الخادم" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "شارك" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "استبدل {new_name} بـ {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "تراجع" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "لا يوجد مجلدات %n" @@ -224,7 +237,7 @@ msgstr[3] "عدد قليل من مجلدات %n" msgstr[4] "عدد كبير من مجلدات %n" msgstr[5] "مجلدات %n" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "لا يوجد ملفات %n" @@ -234,11 +247,11 @@ msgstr[3] "قليل من ملفات %n" msgstr[4] "الكثير من ملفات %n" msgstr[5] " ملفات %n" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} و {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "لا يوجد ملفات %n لتحميلها" @@ -248,66 +261,60 @@ msgstr[3] "يتم تحميل عدد قليل من ملفات %n" msgstr[4] "يتم تحميل عدد كبير من ملفات %n" msgstr[5] "يتم تحميل ملفات %n" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "\".\" اسم ملف غير صحيح." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "مساحتك التخزينية امتلأت تقريبا " -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "حدث خطأ أثناء نقل الملف" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "خطأ" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "اسم" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "حجم" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "معدل" @@ -315,12 +322,12 @@ msgstr "معدل" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s لا يمكن إعادة تسميته. " -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "رفع" @@ -356,69 +363,69 @@ msgstr "الحد الأقصى المسموح به لملفات ZIP" msgid "Save" msgstr "حفظ" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "جديد" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "ملف" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" -msgstr "" +msgstr "مجلد جديد" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "مجلد" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "من رابط" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "حذف الملفات" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "تحميل" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "إلغاء" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "يرجى الانتظار , جاري فحص الملفات ." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "الفحص الحالي" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index db77c258f9..8862dd4ff5 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# suliman <291101251@std.qu.edu.sa>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +20,46 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "تم بنجاح تفعيل مفتاح الاستعادة" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "لا يمكن تفعيل مفتاح الاستعادة, يرجى التحقق من كلمة مرور مفتاح الاستعادة!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "تم تعطيل مفتاح الاستعادة بنجاح" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "لا يمكن تعطيل مفتاح الاستعادة, يرجى التحقق من كلمة مرور مفتاح الاستعادة!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "تم تغيير كلمة المرور بنجاح." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "تعذر تغيير كلمة المرور. من الممكن ان كلمة المرور القديمة غير صحيحة." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "تم تحديث كلمة المرور للمفتاح الخاص بنجاح." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "لا يمكن تحديث كلمة مرور المفتاح الخاص. من الممكن ان كلمة المرور القديمة غير صحيحة." #: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "برنامج التشفير لم يتم تهيئتة ! من الممكن ان برنامج التشفير تم اعادة تفعيلة خلال الجلسة. يرجى تسجيل الخروج ومن ثم تسجيل الدخول مجددا لتهيئة برنامج التشفير." #: files/error.php:16 #, php-format @@ -66,50 +67,50 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "مفتاحك الخاص غير صالح! ربما تم تغيير كلمة المرور خارج %s (مثل:مجلد شركتك). يمكنك تحديث كلمة المرور في الاعدادات الشخصية لإستعادة الوصول الى ملفاتك المشفرة." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "لا يمكن فك التشفير من هذا الملف, من الممكن ان يكون هذا الملف مُشارك. يرجى سؤال صاحب الملف لإعادة مشاركتة معك." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "خطا غير معروف يرجى التاكد من اعدادات نظامك او تواصل مع المدير." -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." -msgstr "" +msgstr "متطلبات ناقصة." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "يرجى التاكد من ان اصدار PHP 5.3.3 او احدث , مثبت و التاكد من ان OpenSSL مفعل و مهيئ بشكل صحيح. حتى الان برنامج التتشفير تم تعطيلة." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "المستخدمين التاليين لم يتم تعيين لهم التشفيير:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "بدأ التشفير... من الممكن ان ياخذ بعض الوقت. يرجى الانتظار." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "جاري الحفظ..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "انتقل مباشرة الى " #: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "اعدادات شخصية" #: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" @@ -118,84 +119,84 @@ msgstr "التشفير" #: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "تفعيل استعادة المفتاح (سوف يمكنك من استعادة ملفات المستخدمين في حال فقدان كلمة المرور):" #: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "استعادة كلمة مرور المفتاح" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "كرر كلمة المرور لـ استعادة المفتاح" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" -msgstr "" +msgstr "مفعلة" #: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" -msgstr "" +msgstr "معطلة" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "تعديل كلمة المرور استعادة المفتاح:" #: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "كلمة المرور القديمة لـ استعامة المفتاح" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "تعيين كلمة مرور جديدة لـ استعادة المفتاح" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "كرر كلمة المرور لـ استعادة المفتاح من جديد" #: templates/settings-admin.php:58 msgid "Change Password" -msgstr "" +msgstr "عدل كلمة السر" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "كلمة مرور مفتاحك الخاص لا تتطابق مع كلمة المرور الخاصة الدخول:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "تعيين كلمة المرور القديمة لـ المفتاح الخاص الى كلمة المرور الخاصة بالدخول الحالية." #: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "اذا كنت لاتتذكر كلمة السر تستطيع ان تطلب من المدير ان يستعيد ملفاتك." #: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "كلمة المرور القديمة الخاصة بالدخول" #: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "كلمة المرور الحالية الخاصة بالدخول" #: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "تحديث كلمة المرور لـ المفتاح الخاص" #: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "تفعيل استعادة كلمة المرور:" #: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "تفعيل هذا الخيار يمكنك من اعادة الوصول الى ملفاتك المشفرة عند فقدان كلمة المرور" #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "اعدادات ملف الاستعادة تم تحديثه" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "تعذر تحديث ملف الاستعادة" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index e3eb7cc257..c2b4c360d9 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 11:40+0000\n" -"Last-Translator: Meesh \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "المستخدمين" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "إلغاء" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 1c6d266c54..7fdbb99893 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s شارك المجلد %s معك" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s شارك الملف %s معك" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "تحميل" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "رفع" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "إلغاء رفع الملفات" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "لا يوجد عرض مسبق لـ" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index bcd9ab3f53..9e181e943a 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "تعذّر حذف%s بشكل دائم" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "تعذّر استرجاع %s " -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "خطأ" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "لا يوجد شيء هنا. سلة المهملات خاليه." -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "اسم" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "استعيد" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "تم الحذف" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "إلغاء" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "الملفات المحذوفه" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 1bbf18cbd7..f093a8eab0 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# suliman <291101251@std.qu.edu.sa>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +18,41 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "برنامج \"%s\" لا يمكن تثبيته بسبب انه لا يتناسب مع الاصدار الخاص بـ ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" -msgstr "" +msgstr "لا يوجد برنامج بهذا الاسم" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "المساعدة" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "شخصي" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "إعدادات" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "المستخدمين" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "المدير" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "خطا في ترقية \"%s\"." #: private/avatar.php:66 msgid "Unknown filetype" @@ -61,15 +62,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "تحميل ملفات ZIP متوقف" @@ -92,74 +88,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" -msgstr "" +msgstr "لم يتم تحديد المصدر عن تثبيت البرنامج" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "التطبيق غير مفعّل" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "الملفات" @@ -199,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -227,21 +227,21 @@ msgstr "الأمر المخالف كان : \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "أسم المستخدم '%s'@'localhost' الخاص بـ MySQL موجود مسبقا" +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "احذف اسم المستخدم هذا من الـ MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "أسم المستخدم '%s'@'%%' الخاص بـ MySQL موجود مسبقا" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "احذف اسم المستخدم هذا من الـ MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -268,27 +268,33 @@ msgstr "اعداد اسم مستخدم للمدير" msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "الرجاء التحقق من دليل التنصيب." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "تعذر العثور على المجلد \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "منذ ثواني" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -298,7 +304,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -308,15 +314,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "اليوم" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "يوم أمس" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -326,11 +332,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "الشهر الماضي" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -340,10 +346,10 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "السنةالماضية" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 1b5b893cc8..514c1b0599 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ezidan , 2014 +# suliman <291101251@std.qu.edu.sa>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +19,48 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "التشفير" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "فشل تحميل القائمة من الآب ستور" @@ -28,11 +72,11 @@ msgstr "لم يتم التأكد من الشخصية بنجاح" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "اسمك الكامل تم تغييره." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "لم يتم التمكن من تغيير اسمك الكامل" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -86,88 +130,116 @@ msgstr "تعذر تحديث التطبيق." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "كلمة مرور خاطئة" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "لم يتم توفير مستخدم " #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "يرجى توفير كلمة مرور المسؤول المستردة, وإلا سيتم فقد جميع بيانات المستخدم " #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "خطا في كلمة مرور المسؤول المستردة, يرجى التاكد من كلمة المرور والمحاولة مرة اخرى." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Back-end لا يدعم تغيير كلمة المرور, لاكن مفتاح تشفير المستخدمين تم تحديثة بنجاح." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" +msgstr "لا يمكن تغيير كلمة المرور" + +#: js/admin.js:73 +msgid "Sending..." msgstr "" -#: js/apps.js:43 +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "كتاب توثيق المستخدم" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "تم التحديث الى " -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "إيقاف" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "تفعيل" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "الرجاء الانتظار ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" -msgstr "" +msgstr "خطا عند تعطيل البرنامج" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" -msgstr "" +msgstr "خطا عند تفعيل البرنامج " -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "جاري التحديث ..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "حصل خطأ أثناء تحديث التطبيق" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "خطأ" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "حدث" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "تم التحديث بنجاح" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" +msgstr "اختر صورة الملف الشخصي " + +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:266 +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" - -#: js/personal.js:287 -msgid "Saving..." -msgstr "جاري الحفظ..." +msgstr "فك تشفير الملفات... يرجى الانتظار, من الممكن ان ياخذ بعض الوقت." #: js/users.js:47 msgid "deleted" @@ -181,265 +253,333 @@ msgstr "تراجع" msgid "Unable to remove user" msgstr "تعذر حذف المستخدم" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "مجموعات" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "مدير المجموعة" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "إلغاء" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "اضافة مجموعة" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "حصل خطأ اثناء انشاء مستخدم" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "تحذير: المجلد الرئيسي لـ المستخدم \"{user}\" موجود مسبقا" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "كل شيء (مشاكل فادحة, اخطاء , تحذيرات , معلومات , تصحيح الاخطاء)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "معلومات , تحذيرات , اخطاء , مشاكل فادحة " #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "تحذيرات , اخطاء , مشاكل فادحة " #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "اخطاء ومشاكل فادحة " #: templates/admin.php:12 msgid "Fatal issues only" +msgstr "مشاكل فادحة فقط " + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "تحذير أمان" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "انت تستخدم %s عن طريق HTTP . نحن نقترح باصرار ان تهيء الخادم ليتمكن من الوصول عن طريق HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " "configure your webserver in a way that the data directory is no longer " "accessible or you move the data directory outside the webserver document " "root." -msgstr "" +msgstr "مجلد data و ملفاتك يمكن الوصول لها عن طريق الانترنت. ملف .htaccess لا يمكن تشغيلة. نحن نقترح باصرار ان تعيد اعداد خادمك لمنع الدخول الى بياناتك عن طريق الانترنت او بالامكان ان تنقل مجلد data خارج document root بشكل مؤقت. " -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "تحذير في التنصيب" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "يرجى التحقق دليل التثبيت." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "الموديل 'fileinfo' مفقود" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" -msgstr "" +msgstr "اصدار PHP الخاص بك قديم" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "اصدار PHP الخاص بك قديم. نحن نقترح لك باصرار ان يتم ترقية الاصدار الى 5.3.8 او احدث بسبب ان الاصدارات القديمة معروفة انها مهمشة. من الممكن ان التنزيل قد لا يتم بصورة صحيحة." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "اللغه لا تعمل" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "لا يمكن تعيين لغة النظام الى احد اللغات التي تدعم UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "هذا يعني انه من الممكن ان يكون هناك مشكلة في بعض الاحرف في اسم الملف." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "نحن باصرار نقترح ان تثبت الحزم المطلوبة في نظامك لدعم احد هذة اللغات: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "الاتصال بالانترنت لا يعمل" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " "installation of 3rd party apps don´t work. Accessing files from remote and " "sending of notification emails might also not work. We suggest to enable " "internet connection for this server if you want to have all features." -msgstr "" +msgstr "هذا الخادم لا يوجد لدية اتصال انترنت. هذا يعني ان بعض الميزات مثل mounting التخزين الخارجي , تنبيهات عن التحديثات او تنزيلات برامج الطرف الثالث3 لا تعمل. الدخول للملفات البعيدة و ارسال تنبيهات البريد الالكتروني ممكن ان لا تعمل ايضا. نحن نقترح بتفعيل اتصال الانترنت لهذا الخادم لتتمكن من الاستفادة من كل الميزات" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "مجدول" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "" +msgstr "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "استخدم نظام خدمة cron لـ استدعاء ملف cron.php كل 15 دقيقة " -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" -msgstr "" +msgstr "السماح بالرفع للعامة " -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "السماح للمستخدمين بتفعيل الرفع للاخرين من خلال مجلد المشاركة العام " -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" -msgstr "" +msgstr "السماح بتنبيهات البريد الالكتروني." -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة " -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "حماية" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." +msgstr "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او تعطيل SSL enforcement." + +#: templates/admin.php:275 +msgid "Email Server" msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "سجل" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "المزيد" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "أقل" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "إصدار" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "طوّر من قبل ownCloud مجتمع, الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "أضف تطبيقاتك" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "المزيد من التطبيقات" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "إختر تطبيقاً" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "راجع صفحة التطبيق على apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-ترخيص من قبل " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "كتاب توثيق المستخدم" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "كتاب توثيق المدير" @@ -506,7 +650,7 @@ msgstr "ابدأ خطوات بداية التشغيل من جديد" msgid "You have used %s of the available %s" msgstr "تم إستهلاك %s من المتوفر %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "كلمة المرور" @@ -518,151 +662,149 @@ msgstr "لقد تم تغيير كلمة السر" msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "اسمك الكامل" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "البريد الإلكترونى" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" -msgstr "" - -#: templates/personal.php:91 -msgid "Upload new" -msgstr "" - -#: templates/personal.php:93 -msgid "Select new from Files" -msgstr "" - -#: templates/personal.php:94 -msgid "Remove image" -msgstr "" - -#: templates/personal.php:95 -msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" - -#: templates/personal.php:97 -msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "صورة الملف الشخصي" #: templates/personal.php:101 -msgid "Abort" -msgstr "إلغاء." +msgid "Upload new" +msgstr "رفع الان" -#: templates/personal.php:102 -msgid "Choose as profile image" +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "اختر جديد من الملفات " + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "احذف الصورة " + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "سواء png او jpg. بامكانك قص الصورة " + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "صورتك الرمزية يتم توفيرها عن طريق حسابك الاصلي." + +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:112 +msgid "Choose as profile image" +msgstr "اختر صورة الملف الشخصي" + +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "اللغة" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "" +msgstr "استخدم هذا العنوان لـ الدخول الى ملفاتك عن طريق WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "التشفير" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "البرنامج المشفر لم يعد مفعل, يرجى فك التشفير عن كل ملفاتك" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" -msgstr "" +msgstr "كلمه سر الدخول" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" -msgstr "" +msgstr "فك تشفير جميع الملفات " -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "اسم الدخول" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "انشئ" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" -msgstr "" +msgstr "استعادة كلمة المرور للمسؤول" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "ادخل كلمة المرور المستعادة من اجل استرداد ملفات المستخدمين اثناء تغيير كلمة المرور" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "وحدة التخزين الافتراضية" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "يرجى ادخال تخزين quota (مثل:\"512 MB\" او \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "غير محدود" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "شيء آخر" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "إسم المستخدم" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "وحدة التخزين" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "تغيير اسمك الكامل" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "اعداد كلمة مرور جديدة" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "افتراضي" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 3afffadb9e..87aad0de4d 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "خطأ" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "إختر مجموعة" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -148,11 +148,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -170,7 +170,7 @@ msgstr "المساعدة" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -206,7 +206,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -274,7 +274,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -417,41 +417,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +477,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +496,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +522,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/az/core.po b/l10n/az/core.po index 2b88a23c46..abe8918244 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -271,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -288,123 +307,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -451,11 +470,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -520,7 +545,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/az/files.po b/l10n/az/files.po index 75cfc77660..10ee0d16da 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -298,12 +305,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -339,69 +346,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/az/files_encryption.po b/l10n/az/files_encryption.po index c145df966c..7bbae1590a 100644 --- a/l10n/az/files_encryption.po +++ b/l10n/az/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:278 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/az/files_external.po b/l10n/az/files_external.po index 020c2fbc41..d40759fe06 100644 --- a/l10n/az/files_external.po +++ b/l10n/az/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:467 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:471 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:474 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/az/files_sharing.po b/l10n/az/files_sharing.po index d4965ff837..4f0393ce9e 100644 --- a/l10n/az/files_sharing.po +++ b/l10n/az/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/az/files_trashbin.po b/l10n/az/files_trashbin.po index 539bb5a6f2..ebef2b8141 100644 --- a/l10n/az/files_trashbin.po +++ b/l10n/az/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,21 +17,25 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" @@ -55,6 +59,6 @@ msgstr "" msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 525d68a471..75015cb94c 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/az/settings.po b/l10n/az/settings.po index e54d4e5a61..b7becc2678 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/az/user_ldap.po b/l10n/az/user_ldap.po index c3dc07d725..5aaa8ff5dc 100644 --- a/l10n/az/user_ldap.po +++ b/l10n/az/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-09 06:39-0500\n" -"PO-Revision-Date: 2013-12-09 11:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/be/core.po b/l10n/be/core.po index 9e268cef6c..4e7fa8e377 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 17:20+0000\n" -"Last-Translator: VladVaranetski \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,91 +68,95 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Нядзеля" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Панядзелак" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Аўторак" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Серада" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Чацвер" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Пятніца" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Субота" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Студзень" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Люты" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Сакавік" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Красавік" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Май" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Чэрвень" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Ліпень" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Жнівень" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Верасень" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Кастрычнік" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Лістапад" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Снежань" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Налады" -#: js/js.js:872 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "Секунд таму" -#: js/js.js:873 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -165,7 +164,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:874 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -173,15 +172,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:875 +#: js/js.js:995 msgid "today" msgstr "Сёння" -#: js/js.js:876 +#: js/js.js:996 msgid "yesterday" msgstr "Ўчора" -#: js/js.js:877 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -189,11 +188,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:878 +#: js/js.js:998 msgid "last month" msgstr "У мінулым месяцы" -#: js/js.js:879 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -201,15 +200,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:880 +#: js/js.js:1000 msgid "months ago" msgstr "Месяцаў таму" -#: js/js.js:881 +#: js/js.js:1001 msgid "last year" msgstr "У мінулым годзе" -#: js/js.js:882 +#: js/js.js:1002 msgid "years ago" msgstr "Гадоў таму" @@ -279,6 +278,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -287,12 +306,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Памылка" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -304,123 +323,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -467,11 +486,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -491,8 +516,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -536,7 +561,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -646,49 +671,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Дасведчаны" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Завяршыць ўстаноўку." -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -704,7 +727,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -730,27 +753,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/be/files.po b/l10n/be/files.po index 5dcc21e246..88ce254af9 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: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,155 +76,156 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -220,7 +233,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -228,11 +241,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -240,66 +253,60 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Памылка" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -307,12 +314,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -348,69 +355,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index da04152091..4cf8602735 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index c6f284fc40..acee78a711 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index a99536aced..fe99759a49 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index 91455c9670..f2257d6e56 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,21 +17,25 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Памылка" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index a422c6e60f..d3648c9b69 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,34 +17,34 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "Налады" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,27 +267,33 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "Секунд таму" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -296,7 +301,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -304,15 +309,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "Сёння" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "Ўчора" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -320,11 +325,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "У мінулым месяцы" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -332,10 +337,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "У мінулым годзе" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "Гадоў таму" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index fdb09c0a2b..a9763369b4 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,6 +17,48 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Памылка" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index f9a186e2de..766cac335e 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 17:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Памылка" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -144,11 +144,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -166,7 +166,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -202,7 +202,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -270,7 +270,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -413,41 +413,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -463,15 +473,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -482,19 +492,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -508,10 +518,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index f865e5452d..24e6e50117 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# cybertorture , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +18,7 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,141 +68,145 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Неделя" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Понеделник" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Сряда" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Четвъртък" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Петък" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Събота" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Януари" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Февруари" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Март" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Април" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Май" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Юни" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Юли" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Август" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Септември" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Октомври" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Ноември" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Декември" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Настройки" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "днес" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "вчера" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "последният месец" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" -msgstr "" +msgstr "Преди месеци" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "последната година" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "последните години" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Избери" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" @@ -268,154 +268,174 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Споделено" #: js/share.js:109 msgid "Share" msgstr "Споделяне" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" -msgstr "" +msgstr "Грешка при споделяне" #: js/share.js:171 msgid "Error while unsharing" -msgstr "" +msgstr "Грепка докато се премахва споделянето" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Грешка при промяна на достъпност" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Споделено с тебе и група {group} от {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Споделено с тебе от {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" -msgstr "" +msgstr "Защитено с парола" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Парола" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 -msgid "Email link to person" -msgstr "" - #: js/share.js:234 -msgid "Send" -msgstr "" +msgid "Email link to person" +msgstr "Изпрати връзка до пощата на някои" -#: js/share.js:239 -msgid "Set expiration date" -msgstr "" +#: js/share.js:235 +msgid "Send" +msgstr "Изпрати" #: js/share.js:240 +msgid "Set expiration date" +msgstr "Посочи дата на изтичане" + +#: js/share.js:241 msgid "Expiration date" -msgstr "" +msgstr "Дата на изтичане" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" -msgstr "" +msgstr "сподели по поща:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" -msgstr "" +msgstr "Не са открити хора" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" -msgstr "" +msgstr "Допълнително споделяне не е разрешено" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Споделено в {item} с {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" -msgstr "" +msgstr "Премахни споделяне" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" -msgstr "" +msgstr "може да променя" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" -msgstr "" +msgstr "контрол на достъпа" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "създаване" -#: js/share.js:416 +#: js/share.js:420 msgid "update" -msgstr "" +msgstr "Обновяване" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" -msgstr "" +msgstr "Изтриване" -#: js/share.js:422 +#: js/share.js:426 msgid "share" -msgstr "" +msgstr "Споделяне" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" -msgstr "" +msgstr "Защитено с парола" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Грешка при премахване на дата за изтичане" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" -msgstr "" +msgstr "Грепка при поставяне на дата за изтичане" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." -msgstr "" +msgstr "Изпращам ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" -msgstr "" +msgstr "Пощата е изпратена" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Внимание" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "Видът на обекта не е избран" #: js/tags.js:13 msgid "Enter new" @@ -456,11 +476,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +506,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Ще получите връзка за нулиране на паролата Ви." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Потребител" @@ -525,7 +551,7 @@ msgstr "Лични" msgid "Users" msgstr "Потребители" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Приложения" @@ -635,49 +661,47 @@ msgstr "" msgid "Create an admin account" msgstr "Създаване на админ профил" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Разширено" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Директория за данни" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Конфигуриране на базата" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "ще се ползва" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Потребител за базата" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Парола за базата" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Име на базата" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Хост за базата" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Завършване на настройките" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +717,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Изход" @@ -719,27 +743,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Забравена парола?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "запомни" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Вход" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index ef6b2a9422..20623b2547 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Възникна проблем при запис в диска" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Невалидна директория." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Файлове" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Споделяне" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "възтановяване" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Грешка" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Име" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Размер" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Променено" @@ -301,12 +308,12 @@ msgstr "Променено" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Качване" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "Запис" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Ново" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Текстов файл" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Нова папка" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Папка" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Спри качването" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Няма нищо тук. Качете нещо." -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Изтегляне" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Изтриване" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Файлът който сте избрали за качване е прекалено голям" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файловете които се опитвате да качите са по-големи от позволеното за сървъра." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Файловете се претърсват, изчакайте." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index e8c1b1e720..59c82a6961 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Записване..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 8239f0abc7..4f7917a6fb 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Достъпът е даден" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Даване на достъп" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Потребители" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Изтриване" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Вкл. на поддръжка за външно потр. хранилище" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Позволено е на потребителите да ползват тяхно лично външно хранилище" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL основни сертификати" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Импортиране на основен сертификат" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index debc2b0a04..c1d33cccfd 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s сподели папката %s с Вас" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s сподели файла %s с Вас" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Изтегляне" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Качване" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Спри качването" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Няма наличен преглед за" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index a62aa28850..29ba66a6cf 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Невъзможно перманентното изтриване на %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Невъзможно възтановяване на %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Грешка" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Няма нищо. Кофата е празна!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Име" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Възтановяване" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Изтрито" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Изтриване" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Изтрити файлове" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 1771455acb..602638fe77 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Помощ" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Лични" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Настройки" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Потребители" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Админ" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -62,15 +62,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Изтеглянето като ZIP е изключено." @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Приложението не е включено." -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Възникна проблем с идентификацията" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Ключът е изтекъл, моля презаредете страницата" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Файлове" @@ -200,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Необходимо е да влезете в всъществуващ акаунт или като администратора" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Невалидно MySQL потребителско име и/или парола" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +227,21 @@ msgstr "Проблемната команда беше: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL потребителят '%s'@'localhost' вече съществува" +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Изтриване на потребителя от MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL потребителят '%s'@'%%' вече съществува." +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Изтриване на потребителя от MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,66 +268,72 @@ msgstr "Въведете потребителско име за админист msgid "Set an admin password." msgstr "Въведете парола за администратор." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Моля направете повторна справка с ръководството за инсталиране." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Невъзможно откриване на категорията \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "преди секунди" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "днес" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "последният месец" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "последната година" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 8cd636c911..9889c56a2f 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Криптиране" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Потребителска документация" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Обновяване до {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Изключено" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Включено" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Моля почакайте...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Обновява се..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Грешка" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Обновяване" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Обновено" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Записване..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "възтановяване" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Групи" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Изтриване" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "нова група" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Крон" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Споделяне" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Още" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "По-малко" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Версия" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Добавете Ваше приложение" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Още приложения" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Изберете приложение" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Потребителска документация" +#: templates/apps.php:52 +msgid "-licensed by " +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" @@ -506,7 +648,7 @@ msgstr "Покажи настройките за първоначално зар msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Парола" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "Промяната на паролата не беше извършена" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Текуща парола" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Нова парола" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Промяна на паролата" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Вашия email адрес" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Въведете е-поща за възстановяване на паролата" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Език" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Помогнете с превода" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Криптиране" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Потребител" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Създаване" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Хранилище по подразбиране" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Неограничено" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Други" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Потребител" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Хранилище" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "По подразбиране" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 9a3ddf148f..658e5fef62 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "Помощ" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 7c1fcc50dd..f9916e328a 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "রবিবার" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "সোমবার" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "বুধবার" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "শুক্রবার" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "শনিবার" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "জানুয়ারি" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "ফেব্রুয়ারি" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "মার্চ" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "এপ্রিল" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "মে" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "জুন" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "জুলাই" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "অগাষ্ট" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "সেপ্টেম্বর" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "অক্টোবর" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "নভেম্বর" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "আজ" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "গত মাস" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "গত বছর" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "বছর পূর্বে" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "ভাগাভাগিকৃত" @@ -276,12 +295,12 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "সমস্যা" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -293,123 +312,123 @@ msgstr "ভাগাভাগি বাতিল করতে সমস্যা msgid "Error while changing permissions" msgstr "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} আপনার সাথে ভাগাভাগি করেছেন" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "কূটশব্দ সুরক্ষিত" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "কূটশব্দ" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "পাঠাও" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "সতর্কবাণী" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "আপনার কূটশব্দটি পূনঃনির্ধারণ করার জন্য নিম্নোক্ত লিংকটি ব্যবহার করুনঃ {link}" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "ব্যবহারকারী" @@ -525,7 +550,7 @@ msgstr "ব্যক্তিগত" msgid "Users" msgstr "ব্যবহারকারী" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "অ্যাপ" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "প্রশাসক একাউন্ট তৈরী করুন" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "সুচারু" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "ডাটা ফোল্ডার " -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "ডাটাবেচ কনফিগার করুন" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "ব্যবহৃত হবে" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "ডাটাবেজ ব্যবহারকারী" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "ডাটাবেজ কূটশব্দ" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "ডাটাবেজের নাম" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "ডাটাবেজ টেবলস্পেস" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "ডাটাবেজ হোস্ট" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "প্রস্থান" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "কূটশব্দ হারিয়েছেন?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "মনে রাখ" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "প্রবেশ" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 9d7ce1231d..af165f8e24 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "%s কে স্থানান্তর করা সম্ভব হ msgid "Could not move %s" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে " -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "ফাইল" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "ভাগাভাগি কর" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "টি একটি অননুমোদিত নাম।" +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "সমস্যা" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "রাম" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "আকার" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "পরিবর্তিত" @@ -301,12 +308,12 @@ msgstr "পরিবর্তিত" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "আপলোড" @@ -342,69 +349,69 @@ msgstr "ZIP ফাইলের ইনপুটের সর্বোচ্চ msgid "Save" msgstr "সংরক্ষণ" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "নতুন" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "টেক্সট ফাইল" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "ফোল্ডার" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr " লিংক থেকে" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "এখানে কিছুই নেই। কিছু আপলোড করুন !" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "মুছে" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "আপলোডের আকারটি অনেক বড়" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "আপনি এই সার্ভারে আপলোড করার জন্য অনুমোদিত ফাইলের সর্বোচ্চ আকারের চেয়ে বৃহদাকার ফাইল আপলোড করার চেষ্টা করছেন " -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 948e9dfe6c..a05beb216f 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "সংরক্ষণ করা হচ্ছে.." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 50383bb1fc..4c506cc354 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "অধিগমনের অনুমতি প্রদান করা হলো" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "অধিগমনের অনুমতি প্রদান কর" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and secret প্রদান করুন।" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "ব্যবহারকারী" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "মুছে" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "ব্যবহারকারীর বাহ্যিক সংরক্ষণাগার সক্রিয় কর" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "ব্যবহারকারীদেরকে তাদের নিজস্ব বাহ্যিক সংরক্ষনাগার সাউন্ট করতে অনুমোদন দাও" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL রুট সনদপত্র" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "রুট সনদপত্রটি আমদানি করুন" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index abb5382f98..67f9f305c7 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "ডাউনলোড" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "আপলোড" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "আপলোড বাতিল কর" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index ee47e996cb..33003d82e3 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "সমস্যা" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "রাম" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "মুছে" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index aa82b97204..dc14b1ce4b 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "সহায়িকা" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "ব্যক্তিগত" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "ব্যবহারকারী" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "প্রশাসন" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "অ্যাপ্লিকেসনটি সক্রিয় নয়" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "অনুমোদন ঘটিত সমস্যা" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ফাইল" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "আজ" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "গতকাল" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "গত মাস" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "গত বছর" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 1145ec529f..17430e2697 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "সংকেতায়ন" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "ব্যবহারকারী সহায়িকা" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "নিষ্ক্রিয়" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "সক্রিয় " -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "সমস্যা" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "পরিবর্ধন" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "সংরক্ষণ করা হচ্ছে.." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "ক্রিয়া প্রত্যাহার" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "গোষ্ঠীসমূহ" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "গোষ্ঠী প্রশাসক" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "মুছে" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "নিরাপত্তাজনিত সতর্কতা" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "বেশী" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "কম" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "তৈলী করেছেন ownCloud সম্প্রদায়, যার উৎস কোডটি AGPL এর অধীনে লাইসেন্সকৃত।" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "আপনার অ্যাপটি যোগ করুন" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "আরও অ্যাপ" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "অ্যাপ নির্বাচন করুন" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-লাইসেন্সধারী " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "ব্যবহারকারী সহায়িকা" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "প্রশাসক সহায়িকা" @@ -506,7 +648,7 @@ msgstr "প্রথমবার চালানোর যাদুকর পূ msgid "You have used %s of the available %s" msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "কূটশব্দ" @@ -518,151 +660,149 @@ msgstr "আপনার কূটশব্দটি পরিবর্তন ক msgid "Unable to change your password" msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "বর্তমান কূটশব্দ" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "নতুন কূটশব্দ" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "ইমেইল" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "সংকেতায়ন" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "তৈরী কর" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "পূর্বনির্ধারিত সংরক্ষণাগার" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "অসীম" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "অন্যান্য" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "ব্যবহারকারী" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "সংরক্ষণাগার" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "পূর্বনির্ধারিত" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 600c503421..46060f3567 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "সমস্যা" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "সহায়িকা" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "সুচারু ট্যঅবে গিয়ে আপনি ব্ #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "গোষ্ঠী-সদস্য সংস্থাপন" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "বাইটে" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "ব্যবহারকারী নামের জন্য ফাঁকা রাখুন (পূর্বনির্ধারিত)। অন্যথায়, LDAP/AD বৈশিষ্ট্য নির্ধারণ করুন।" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 08753f3c8f..9c1769bdcb 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,139 +67,143 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -273,6 +272,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -281,12 +300,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -298,123 +317,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -461,11 +480,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -485,8 +510,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -530,7 +555,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -640,49 +665,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -698,7 +721,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -724,27 +747,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 440f16a2ce..04fe47a62c 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,239 +76,234 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Podijeli" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Ime" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Veličina" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -304,12 +311,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -345,69 +352,69 @@ msgstr "" msgid "Save" msgstr "Spasi" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nova fascikla" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Fasikla" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index acc68558cf..818ff9d361 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Spašavam..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/bs/files_external.po b/l10n/bs/files_external.po index 631ae608ba..5207d2bbb5 100644 --- a/l10n/bs/files_external.po +++ b/l10n/bs/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 21:41+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po index 386d74cf54..b43e3b6b0b 100644 --- a/l10n/bs/files_sharing.po +++ b/l10n/bs/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index e2a429d710..7f286786a0 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "Ime" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 447589d9b0..ddf2e1f969 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,70 +267,76 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index fd98969886..6d9ee80f17 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Spašavam..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index fb4bd54b94..3ec9651aca 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -164,7 +164,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -200,7 +200,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -268,7 +268,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -411,41 +411,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 2a27131c22..8f7e726cd7 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 10:20+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s ha compartit »%s« amb tu" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No s'ha pogut enviar correu als usuaris següents: %s" @@ -74,135 +69,139 @@ msgstr "No hi ha imatge temporal de perfil disponible, torneu a intentar-ho" msgid "No crop data provided" msgstr "No heu proporcionat dades del retall" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Diumenge" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Dilluns" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Dimarts" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Dimecres" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Dijous" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Divendres" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Dissabte" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Gener" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Febrer" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Març" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Abril" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maig" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juny" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juliol" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Agost" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Setembre" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Octubre" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Novembre" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Desembre" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Configuració" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "avui" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ahir" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fa %n dies" msgstr[1] "fa %n dies" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "el mes passat" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "l'any passat" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "anys enrere" @@ -270,6 +269,26 @@ msgstr "({count} seleccionats)" msgid "Error loading file exists template" msgstr "Error en carregar la plantilla de fitxer existent" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartit" @@ -278,12 +297,12 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Error en compartir" @@ -295,123 +314,123 @@ msgstr "Error en deixar de compartir" msgid "Error while changing permissions" msgstr "Error en canviar els permisos" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartit amb vos i amb el grup {group} per {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Compartit amb vos per {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Comparteix amb usuari o grup..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Enllaç de compartició" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Contrasenya" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Permet pujada pública" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Enllaç per correu electrónic amb la persona" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Envia" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Estableix la data de venciment" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Data de venciment" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Comparteix per correu electrònic" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grup" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "notifica per correu electrònic" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "pot editar" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "control d'accés" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "crea" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "actualitza" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "elimina" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "comparteix" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Avís" @@ -458,11 +477,17 @@ msgstr "L'actualització ha estat incorrecte. Comuniqueu aquest error a Esteu segur que el correu/nom d'usuari és cor msgid "You will receive a link to reset your password via Email." msgstr "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nom d'usuari" @@ -527,7 +552,7 @@ msgstr "Personal" msgid "Users" msgstr "Usuaris" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplicacions" @@ -637,49 +662,47 @@ msgstr "Per informació de com configurar el servidor, comproveu la admin account
" msgstr "Crea un compte d'administrador" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avançat" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "s'usarà" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Acaba la configuració" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Acabant..." @@ -695,7 +718,7 @@ msgstr "Aquesta aplicació necessita tenir JavaScript activat per funcionar corr msgid "%s is available. Get more information on how to update." msgstr "%s està disponible. Obtingueu més informació de com actualitzar." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Surt" @@ -721,28 +744,28 @@ msgstr "L'autenticació del servidor ha fallat!" msgid "Please contact your administrator." msgstr "Contacteu amb l'administrador." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "recorda'm" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Inici de sessió" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Acreditacions alternatives" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Ei,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index e96c34be04..bf7252bd25 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc, 2013 +# rogerc, 2013-2014 # jmontane , 2013 # Josep Tomàs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,36 +30,48 @@ msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" msgid "Could not move %s" msgstr " No s'ha pogut moure %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "El nom del fitxer no pot ser buit." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "El nom de fitxer no pot contenir \"/\". Indiqueu un nom diferent." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nom %s ja s'usa en la carpeta %s. Indiqueu un nom diferent." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "No és un origen vàlid" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "El servidor no té autorització per obrir URLs, comproveu la configuració del servidor" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "S'ha produït un error en baixar %s a %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "S'ha produït un error en crear el fitxer" @@ -67,236 +79,231 @@ msgstr "S'ha produït un error en crear el fitxer" msgid "Folder name cannot be empty." msgstr "El nom de la carpeta no pot ser buit." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "El nom de la carpeta no pot contenir \"/\". Indiqueu un nom diferent." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "S'ha produït un error en crear la carpeta" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "No es pot establir la carpeta de pujada." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Testimoni no vàlid" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "La pujada ha fallat. El fitxer pujat no s'ha trobat." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Directori no vàlid." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Fitxers" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "No es pot pujar {filename} perquè és una carpeta o té 0 bytes" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "No hi ha prou espai disponible" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "No hi ha resposta del servidor." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "L'URL no pot ser buit" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A la carpeta inici 'Compartit' és un nom de fitxer reservat" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "No s'ha pogut crear el fitxer" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "No s'ha pogut crear la carpeta" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" -msgstr "" +msgstr "Error en obtenir la URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Comparteix" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "No es pot canviar el nom de fitxer" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "desfés" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Error en esborrar el fitxer." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" msgstr[1] "%n fitxers" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Pujant %n fitxer" msgstr[1] "Pujant %n fitxers" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' és un nom no vàlid per un fitxer." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "La clau privada de l'aplicació d'encriptació no és vàlida! Actualitzeu la contrasenya de la clau privada a l'arranjament personal per recuperar els fitxers encriptats." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Error en moure el fitxer" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Error" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nom" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Mida" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificat" @@ -304,12 +311,12 @@ msgstr "Modificat" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s no es pot canviar el nom" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Puja" @@ -345,69 +352,69 @@ msgstr "Mida màxima d'entrada per fitxers ZIP" msgid "Save" msgstr "Desa" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nou" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nou fitxer de text" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Fitxer de text" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Carpeta nova" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Fitxers esborrats" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "No teniu permisos per a pujar o crear els fitxers aquí" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Baixa" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Esborra" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "La pujada és massa gran" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 95c9dcd2ca..87e5747a99 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 11:30+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,18 +83,18 @@ msgid "" "administrator" msgstr "Error desconegut. Comproveu l'arranjament del sistema o contacteu amb l'administrador" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Manca de requisits." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Els usuaris següents no estan configurats per a l'encriptació:" @@ -102,9 +102,9 @@ msgstr "Els usuaris següents no estan configurats per a l'encriptació:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "La encriptació inicial ha començat... Pot trigar una estona, espereu." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Desant..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index e8defe258b..91d69f2f2e 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "S'ha concedit l'accés" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Error en configurar l'emmagatzemament Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Concedeix accés" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Error en configurar l'emmagatzemament Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:465 +#: lib/config.php:516 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 "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Usuaris" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Esborra" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Habilita l'emmagatzemament extern d'usuari" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Permet als usuaris muntar el seu emmagatzemament extern propi" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Certificats SSL root" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importa certificat root" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index bf549bf980..5b0a4e36c0 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Aquest compartit està protegit amb contrasenya" @@ -54,32 +58,16 @@ msgstr "s'ha desactivat la compartició" msgid "For more info, please ask the person who sent this link." msgstr "Per més informació contacteu amb qui us ha enviat l'enllaç." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s ha compartit la carpeta %s amb vós" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s ha compartit el fitxer %s amb vós" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Baixa" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Puja" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Cancel·la la pujada" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "No hi ha vista prèvia disponible per a" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Enllaç directe" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index dec2858e3b..d363e87e12 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "No s'ha pogut esborrar permanentment %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "No s'ha pogut restaurar %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Error" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "restaurat" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "La paperera està buida!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nom" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Recupera" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Eliminat" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Esborra" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Fitxers eliminats" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 2cfd9ff67e..30e49a611a 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "L'aplicació \"%s\" no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "No heu especificat cap nom d'aplicació" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Ajuda" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Configuració" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Usuaris" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administració" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ha fallat l'actualització \"%s\"." @@ -62,15 +62,10 @@ msgstr "Tipus de fitxer desconegut" msgid "Invalid image" msgstr "Imatge no vàlida" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "controleu els vostres serveis web" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "no es pot obrir \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "Baixeu els fitxers separadament en petits trossos o pregunteu a l'administrador." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "No heu especificat la font en instal·lar l'aplicació" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "No heu especificat href en instal·lar l'aplicació des de http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "No heu seleccionat el camí en instal·lar una aplicació des d'un fitxer local" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Els fitxers del tipus %s no són compatibles" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Ha fallat l'obertura del fitxer en instal·lar l'aplicació" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "L'aplicació no proporciona un fitxer info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "L'aplicació no es pot instal·lar perquè hi ha codi no autoritzat en l'aplicació" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "L'aplicació no es pot instal·lar perquè no és compatible amb aquesta versió d'ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "L'aplicació no es pot instal·lar perquè conté l'etiqueta vertader que no es permet per aplicacions no enviades" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "L'aplicació no es pot instal·lar perquè la versió a info.xml/version no és la mateixa que la versió indicada des de la botiga d'aplicacions" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "La carpeta de l'aplicació ja existeix" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No es pot crear la carpeta de l'aplicació. Arregleu els permisos. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "L'aplicació no està habilitada" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Error d'autenticació" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fitxers" @@ -200,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Heu d'escriure un compte existent o el d'administrador." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Nom d'usuari i/o contrasenya MySQL no vàlids" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +227,21 @@ msgstr "L'ordre en conflicte és: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "L'usuari MySQL '%s'@'localhost' ja existeix." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Elimina aquest usuari de MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "L'usuari MySQL '%s'@'%%' ja existeix" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Elimina aquest usuari de MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,66 +268,72 @@ msgstr "Establiu un nom d'usuari per l'administrador." msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "No s'ha trobat la categoria \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "segons enrere" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "avui" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ahir" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "fa %n dia" msgstr[1] "fa %n dies" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "el mes passat" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "l'any passat" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index b2b009170a..d2b19229ee 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc, 2013 +# rogerc, 2013-2014 # rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,48 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Xifrat" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "No s'ha pogut carregar la llista des de l'App Store" @@ -115,62 +157,90 @@ msgstr "El dorsal no permet canviar la contrasenya, però la clau d'encripació msgid "Unable to change password" msgstr "No es pot canviar la contrasenya" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentació d'usuari" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Actualitza a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Habilita" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Espereu..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Error en desactivar l'aplicació" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Error en activar l'aplicació" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Actualitzant..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Error en actualitzar l'aplicació" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Error" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Actualitza" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Seleccioneu una imatge de perfil" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptant fitxers... Espereu, això pot trigar una estona." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Desant..." - #: js/users.js:47 msgid "deleted" msgstr "esborrat" @@ -183,40 +253,40 @@ msgstr "desfés" msgid "Unable to remove user" msgstr "No s'ha pogut eliminar l'usuari" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grups" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grup Admin" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Esborra" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "afegeix grup" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Error en crear l'usuari" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avís: la carpeta Home per l'usuari \"{user}\" ja existeix" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Català" @@ -240,18 +310,42 @@ msgstr "Errors i problemes fatals" msgid "Fatal issues only" msgstr "Només problemes fatals" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Avís de seguretat" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Esteu accedint %s a través de HTTP. Us recomanem fermament que configureu el servidor perquè requereixi HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -260,68 +354,68 @@ msgid "" "root." msgstr "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Avís de configuració" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "No s'ha trobat el mòdul 'fileinfo'" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" -msgstr "" +msgstr "La versió de PHP és obsoleta" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "La versió de PHP és obsoleta. Us recomanem fermament que actualitzeu a la versió 5.3.8 o superior perquè les versions anteriors no funcionen. La instal·lació podria no funcionar correctament." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Locale no funciona" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "No s'ha pogut establir cap localització del sistema amb suport per UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Us recomanem que instal·leu els paquets necessaris en el sistema per donar suport a alguna de les localitzacions següents: %s" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "La connexió a internet no funciona" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -330,118 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Executa una tasca per cada paquet carregat" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utilitza el servei cron del sistema per fer una crida al fitxer cron.php cada 15 minuts." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Compartir" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Habilita l'API de compartir" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions utilitzin l'API de compartir" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Permet pujada pública" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permet als usuaris habilitar pujades de tercers en les seves carpetes compartides al públic" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris compartir de nou elements ja compartits amb ells" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Permet compartir amb qualsevol" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Permet notificacions per correu electrónic" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Permet a l'usuari enviar notificacions de fitxers compartits per correu " -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Força la connexió dels clients a %s a través d'una connexió encriptada." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Registre" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Més" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Menys" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versió" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Afegiu la vostra aplicació" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Més aplicacions" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Seleccioneu una aplicació" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-propietat de " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentació d'usuari" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentació d'administrador" @@ -508,7 +650,7 @@ msgstr "Torna a mostrar l'assistent de primera execució" msgid "You have used %s of the available %s" msgstr "Heu utilitzat %s d'un total disponible de %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contrasenya" @@ -520,151 +662,149 @@ msgstr "La seva contrasenya s'ha canviat" msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Nom complet" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Puja'n una de nova" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Selecciona'n una de nova dels fitxers" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Elimina imatge" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Pot ser png o jpg. Idealment quadrada, però podreu retallar-la." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "El vostre compte original proporciona l'avatar." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Cancel·la" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Selecciona com a imatge de perfil" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Idioma" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Useu aquesta adreça per accedir als fitxers via WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Xifrat" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Contrasenya d'accés" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Desencripta tots els fitxers" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Nom d'accés" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Crea" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Recuperació de contrasenya d'administrador" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Escriviu la contrasenya de recuperació per a poder recuperar els fitxers dels usuaris en canviar la contrasenya" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Emmagatzemament per defecte" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Escriviu la quota d'emmagatzemament (per ex.: \"512 MB\" o \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Il·limitat" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Un altre" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nom d'usuari" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Emmagatzemament" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "canvia el nom complet" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "estableix nova contrasenya" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Per defecte" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index bf9ea4772c..1285d71ba6 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,43 +89,43 @@ msgstr "Èxit" msgid "Error" msgstr "Error" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Configuració correcte" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Configuració incorrecte" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Configuració incompleta" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Selecciona els grups" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Seleccioneu les classes dels objectes" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Seleccioneu els atributs" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "La prova de connexió ha reeixit" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "La prova de connexió ha fallat" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Voleu eliminar la configuració actual del servidor?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Confirma l'eliminació" @@ -143,11 +143,11 @@ msgid_plural "%s users found" msgstr[0] "S'ha trobat %s usuari" msgstr[1] "S'han trobat %s usuaris" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Ordinador central no vàlid" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "La característica desitjada no s'ha trobat" @@ -165,8 +165,8 @@ msgstr "Ajuda" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Limita l'accés a %s grups que compleixin amb el criteri:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -201,8 +201,8 @@ msgid "groups found" msgstr "grups trobats" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Quin atribut s'hauria d'utilitzar com a nom per a l'acreditació:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -269,8 +269,8 @@ msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Limita l'accés a %s usuaris que compleixin amb el criteri:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -412,41 +412,51 @@ msgstr "Atributs de cerca de grup" msgid "Group-Member association" msgstr "Associació membres-grup" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atributs especials" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Camp de quota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Quota per defecte" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Camp de correu electrònic" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Norma per anomenar la carpeta arrel d'usuari" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixeu-ho buit pel nom d'usuari (per defecte). Altrament, especifiqueu un atribut LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Nom d'usuari intern" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -462,15 +472,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Per defecte el nom d'usuari intern es crearà a partir de l'atribut UUID. Això assegura que el nom d'usuari és únic i que els caràcters no s'han de convertir. El nom d'usuari intern té la restricció que només estan permesos els caràcters: [ a-zA-Z0-9_.@- ]. Els altres caràcters es substitueixen pel seu corresponent ASCII o simplement s'ometen. En cas de col·lisió s'incrementa/decrementa en un. El nom d'usuari intern s'utilitza per identificar un usuari internament. També és el nom per defecte de la carpeta home d'usuari. És també un port de URLs remotes, per exemple tots els serveis *DAV. Amb aquest arranjament es pot variar el comportament per defecte. Per obtenir un comportament similar al d'abans de ownCloud 5, escriviu el nom d'usuari a mostrar en el camp següent. Deixei-lo en blanc si preferiu el comportament per defecte. Els canvis tindran efecte només en els nous usuaris LDAP mapats (afegits)." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atribut nom d'usuari intern:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Sobrescriu la detecció UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -481,19 +491,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits)." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Atribut UUID per Usuaris:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Atribut UUID per Grups:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -507,10 +517,10 @@ msgid "" "experimental stage." msgstr "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Elimina el mapatge d'usuari Nom d'usuari-LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Elimina el mapatge de grup Nom de grup-LDAP" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index a77422d481..64710880e1 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -8,15 +8,15 @@ # Honza K. , 2013 # liska_, 2013 # Martin , 2013 -# pstast , 2013 +# pstast , 2013-2014 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: liska_\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,12 +24,7 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s s vámi sdílí »%s«" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nebylo možné odeslat e-mail následujícím uživatelům: %s" @@ -79,139 +74,143 @@ msgstr "Dočasný profilový obrázek není k dispozici, zkuste to znovu" msgid "No crop data provided" msgstr "Nebyla poskytnuta data pro oříznutí obrázku" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Neděle" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Pondělí" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Úterý" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Středa" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Čtvrtek" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Pátek" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sobota" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Leden" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Únor" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Březen" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Duben" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Květen" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Červen" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Červenec" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Srpen" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Září" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Říjen" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Listopad" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Prosinec" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Nastavení" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "dnes" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "včera" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "před měsíci" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "minulý rok" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "před lety" @@ -280,6 +279,26 @@ msgstr "(vybráno {count})" msgid "Error loading file exists template" msgstr "Chyba při nahrávání šablony existence souboru" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Sdílené" @@ -288,12 +307,12 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -305,123 +324,123 @@ msgstr "Chyba při rušení sdílení" msgid "Error while changing permissions" msgstr "Chyba při změně oprávnění" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "S Vámi a skupinou {group} sdílí {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "S Vámi sdílí {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Sdílet s uživatelem nebo skupinou" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Sdílet odkaz" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Heslo" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Povolit veřejné nahrávání" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Odeslat osobě odkaz e-mailem" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Odeslat" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Nastavit datum vypršení platnosti" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Datum vypršení platnosti" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Sdílet e-mailem:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "skupina" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "upozornit e-mailem" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "vytvořit" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "aktualizovat" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "smazat" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "sdílet" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-mail odeslán" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Varování" @@ -468,11 +487,17 @@ msgstr "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do Ujistili jste se, že vaše uživatelské jméno a msgid "You will receive a link to reset your password via Email." msgstr "E-mailem Vám bude zaslán odkaz pro obnovu hesla." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Uživatelské jméno" @@ -537,7 +562,7 @@ msgstr "Osobní" msgid "Users" msgstr "Uživatelé" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplikace" @@ -647,49 +672,47 @@ msgstr "Pro informace, jak správně nastavit váš server, se podívejte do admin account
" msgstr "Vytvořit účet správce" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Pokročilé" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Dokončit nastavení" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Dokončuji..." @@ -698,14 +721,14 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "Tato aplikace potřebuje pro svou správnou funkčnost mít povolený javascript. Prosím povolte JavaScript a znovu načtěte toto rozhraní." +msgstr "Tato aplikace vyžaduje pro svou správnou funkčnost povolený JavaScript. Prosím povolte JavaScript a znovu načtěte toto rozhraní." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je dostupná. Získejte více informací k postupu aktualizace." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odhlásit se" @@ -731,28 +754,28 @@ msgstr "Autentizace na serveru selhala!" msgid "Please contact your administrator." msgstr "Kontaktujte prosím vašeho správce." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "zapamatovat" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Přihlásit" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternativní přihlášení" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Hej ty tam,

jen ti chci dát vědět, že %s sdílel »%s« s tebou.
Zobrazit!

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 40608268d8..75e05771d1 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 07:30+0000\n" -"Last-Translator: liska_\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,36 +34,48 @@ msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem" msgid "Could not move %s" msgstr "Nelze přesunout %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Název souboru nemůže být prázdný řetězec." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Název souboru nesmí obsahovat \"/\". Vyberte prosím jiné jméno." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server není oprávněn otevírat adresy URL. Ověřte, prosím, konfiguraci serveru." -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba při stahování %s do %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Chyba při vytváření souboru" @@ -71,239 +83,234 @@ msgstr "Chyba při vytváření souboru" msgid "Folder name cannot be empty." msgstr "Název složky nemůže být prázdný." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Název složky nesmí obsahovat \"/\". Zvolte prosím jiný." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Chyba při vytváření složky" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Nelze nastavit adresář pro nahrané soubory." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Neplatný adresář" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Soubory" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nelze nahrát soubor {filename}, protože je to buď adresář nebo má velikost 0 bytů" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nedostatek volného místa" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Nepodařilo se získat výsledek ze serveru." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL nemůže zůstat prázdná" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V osobní složce je název 'Shared' rezervovaný" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Nepodařilo se vytvořit soubor" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Nepodařilo se vytvořit složku" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Chyba při načítání URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Sdílet" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Nepodařilo se přejmenovat soubor" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "vrátit zpět" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Chyba při mazání souboru." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" msgstr[1] "%n soubory" msgstr[2] "%n souborů" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávám %n soubor" msgstr[1] "Nahrávám %n soubory" msgstr[2] "Nahrávám %n souborů" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' je neplatným názvem souboru." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory." -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Chyba při přesunu souboru" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Chyba" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Název" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Velikost" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Upraveno" @@ -311,12 +318,12 @@ msgstr "Upraveno" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Neplatný název složky. Použití 'Shared' je rezervováno." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s nemůže být přejmenován" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Odeslat" @@ -352,69 +359,69 @@ msgstr "Maximální velikost vstupu pro ZIP soubory" msgid "Save" msgstr "Uložit" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nový" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nový textový soubor" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Textový soubor" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nová složka" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Složka" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Z odkazu" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Odstraněné soubory" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Nemáte oprávnění zde nahrávat či vytvářet soubory" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Smazat" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Odesílaný soubor je příliš velký" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Aktuální prohledávání" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index c3342c6721..48ef3fef55 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.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-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 20:00+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,18 +86,18 @@ msgid "" "administrator" msgstr "Neznámá chyba, zkontrolujte vaše systémová nastavení nebo kontaktujte vašeho správce" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Nesplněné závislosti." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Následující uživatelé nemají nastavené šifrování:" @@ -105,9 +105,9 @@ msgstr "Následující uživatelé nemají nastavené šifrování:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Počáteční šifrování zahájeno... Toto může chvíli trvat. Počkejte prosím." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Ukládám..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 9c03428285..ff6afc9625 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Přístup povolen" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Chyba při nastavení úložiště Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Povolit přístup" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:465 +#: lib/config.php:516 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 "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Uživatelé" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Smazat" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Zapnout externí uživatelské úložiště" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Povolit uživatelům připojení jejich vlastních externích úložišť" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Kořenové certifikáty SSL" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importovat kořenového certifikátu" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index ce005893ed..96f7ca8c37 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-27 18:36+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,10 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Toto sdílení je chráněno heslem" @@ -55,32 +59,16 @@ msgstr "sdílení je zakázané" msgid "For more info, please ask the person who sent this link." msgstr "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s s Vámi sdílí složku %s" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s s Vámi sdílí soubor %s" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Stáhnout" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Odeslat" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Zrušit odesílání" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Náhled není dostupný pro" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Přímý odkaz" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index a6242ccbee..b07aec9c57 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,44 +19,48 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nelze trvale odstranit %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Nelze obnovit %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Chyba" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "obnoveno" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Žádný obsah. Váš koš je prázdný." -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Název" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Obnovit" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Smazáno" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Smazat" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Smazané soubory" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 7755fd96b2..46ed1af679 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,38 +21,38 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Aplikace \"%s\" nemůže být nainstalována, protože není kompatibilní s touto verzí ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Nebyl zadan název aplikace" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Nápověda" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Osobní" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Nastavení" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Uživatelé" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administrace" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Selhala aktualizace verze \"%s\"." @@ -65,15 +65,10 @@ msgstr "Neznámý typ souboru" msgid "Invalid image" msgstr "Chybný obrázek" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "webové služby pod Vaší kontrolou" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "nelze otevřít \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Stahování v ZIPu je vypnuto." @@ -96,74 +91,78 @@ msgid "" "administrator." msgstr "Prosím stáhněte soubory odděleně po menších množstvích nebo požádejte vašeho správce." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Nebyl zadán zdroj při instalaci aplikace" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Nebyl zadán odkaz pro instalaci aplikace z HTTP" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Nebyla zadána cesta pro instalaci aplikace z místního souboru" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Archivy typu %s nejsou podporovány" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Chyba při otevírání archivu během instalace aplikace" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Aplikace neposkytuje soubor info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Aplikace nemůže být nainstalována, protože obsahuje nepovolený kód" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Aplikace nemůže být nainstalována, protože není kompatibilní s touto verzí ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Aplikace nemůže být nainstalována, protože obsahuje značku\n\n\ntrue\n\n\ncož není povoleno pro nedodávané aplikace" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Aplikace nemůže být nainstalována, protože verze uvedená v info.xml/version nesouhlasí s verzí oznámenou z úložiště aplikací." -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Adresář aplikace již existuje" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nelze vytvořit složku aplikace. Opravte práva souborů. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Aplikace není povolena" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Chyba ověření" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token vypršel. Obnovte prosím stránku." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Soubory" @@ -203,8 +202,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadat existující účet či správce." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Uživatelské jméno či heslo MySQL není platné" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -231,21 +230,21 @@ msgstr "Příslušný příkaz byl: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Uživatel '%s'@'localhost' již v MySQL existuje." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Zrušte tohoto uživatele z MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Uživatel '%s'@'%%' již v MySQL existuje" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Zrušte tohoto uživatele z MySQL" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -272,70 +271,76 @@ msgstr "Zadejte uživatelské jméno správce." msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nelze nalézt kategorii \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "před pár sekundami" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "dnes" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "včera" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "minulý měsíc" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "minulý rok" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 488dc267f3..bb7ca013df 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -7,15 +7,15 @@ # Honza K. , 2013 # liska_, 2013 # cvanca , 2013 -# pstast , 2013 +# pstast , 2013-2014 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-09 21:50+0000\n" -"Last-Translator: liska_\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +23,48 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Šifrování" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Nelze načíst seznam z App Store" @@ -119,62 +161,90 @@ msgstr "Úložiště nepodporuje změnu hesla, ale šifrovací klíč uživatel msgid "Unable to change password" msgstr "Změna hesla se nezdařila" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Uživatelská dokumentace" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Aktualizovat na {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Zakázat" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Povolit" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Čekejte prosím..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Chyba při zakazování aplikace" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Chyba při povolování aplikace" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Aktualizuji..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Chyba při aktualizaci aplikace" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Chyba" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Aktualizovat" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Vyberte profilový obrázek" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Ukládám..." - #: js/users.js:47 msgid "deleted" msgstr "smazáno" @@ -187,40 +257,40 @@ msgstr "vrátit zpět" msgid "Unable to remove user" msgstr "Nelze odebrat uživatele" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Skupiny" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Správa skupiny" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Smazat" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "přidat skupinu" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Musíte zadat platné uživatelské jméno" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Chyba při vytváření užiatele" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varování: Osobní složka uživatele \"{user}\" již existuje." -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Česky" @@ -244,18 +314,42 @@ msgstr "Chyby a fatální problémy" msgid "Fatal issues only" msgstr "Pouze fatální problémy" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Bezpečnostní upozornění" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Přistupujete na %s protokolem HTTP. Důrazně doporučujeme nakonfigurovat server pro použití HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -264,68 +358,68 @@ msgid "" "root." msgstr "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Upozornění nastavení" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Zkontrolujte prosím znovu instalační příručku." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Schází modul 'fileinfo'" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" -msgstr "Tato verze PHP je zastaralá." +msgstr "Vaše verze PHP je zastaralá" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Tato verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze jsou chybné. Je možné, že tato instalace nebude fungovat správně." +msgstr "Vámi používaná verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze obsahují chyby. Je možné, že tato instalace nebude fungovat správně." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Lokalizace nefunguje" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Není možné nastavit znakovou sadu, která podporuje UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Důrazně doporučujeme nainstalovat do vašeho systém balíčky nutné pro podporu některé z následujících znakových sad: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Připojení k internetu nefunguje" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -334,118 +428,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Spustit jednu úlohu s každým načtením stránky" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použít systémovou službu cron pro volání cron.php každých 15 minut." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Povolit uživatelům sdílet položky veřejně pomocí odkazů" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Povolit veřejné nahrávání souborů" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Povolit e-mailová upozornění" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynutí připojování klientů k %s šifrovaným spojením." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Záznam" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Více" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Méně" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Verze" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Přidat Vaši aplikaci" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Více aplikací" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Vyberte aplikaci" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Více na stránce s aplikacemi na apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licencováno " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Uživatelská dokumentace" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Dokumentace správce" @@ -512,7 +654,7 @@ msgstr "Znovu zobrazit průvodce prvním spuštěním" msgid "You have used %s of the available %s" msgstr "Používáte %s z %s dostupných" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Heslo" @@ -524,151 +666,149 @@ msgstr "Vaše heslo bylo změněno" msgid "Unable to change your password" msgstr "Změna vašeho hesla se nezdařila" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Celé jméno" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Pro povolení obnovy hesla vyplňte e-mailovou adresu" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilový obrázek" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Nahrát nový" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Vyberte nový ze souborů" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Odebrat obrázek" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png nebo jpg, nejlépe čtvercový, ale budete mít možnost jej oříznout." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Váš avatar je poskytován Vaším původním účtem." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Přerušit" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Vybrat jako profilový obrázek" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Šifrování" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Přihlašovací heslo" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Odšifrovat všechny soubory" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Přihlašovací jméno" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Vytvořit" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Heslo obnovy správce" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Výchozí úložiště" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Zvolte prosím kvótu pro úložiště (např. \"512 MB\" nebo \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Neomezeně" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Jiný" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Uživatelské jméno" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Úložiště" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "změnit celé jméno" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "nastavit nové heslo" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Výchozí" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 3e8cc07f1f..61ec485b48 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.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-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,43 +92,43 @@ msgstr "Úspěch" msgid "Error" msgstr "Chyba" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Konfigurace v pořádku" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Nesprávná konfigurace" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Nekompletní konfigurace" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Vyberte skupiny" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Vyberte objektové třídy" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Vyberte atributy" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Test spojení byl úspěšný" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Test spojení selhal" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Opravdu si přejete smazat současné nastavení serveru?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Potvrdit smazání" @@ -148,11 +148,11 @@ msgstr[0] "nalezen %s uživatel" msgstr[1] "nalezeni %s uživatelé" msgstr[2] "nalezeno %s uživatelů" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Neplatný hostitel" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Nelze nalézt požadovanou vlastnost" @@ -170,8 +170,8 @@ msgstr "Nápověda" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Omezit přístup k %s skupinám uživatelů splňujícím tyto podmínky:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -206,8 +206,8 @@ msgid "groups found" msgstr "nalezené skupiny" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Který atribut má být použit jako přihlašovací jméno:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -274,8 +274,8 @@ msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Omezit přístup k %s uživatelům splňujícím tyto podmínky:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -417,41 +417,51 @@ msgstr "Atributy vyhledávání skupin" msgid "Group-Member association" msgstr "Asociace člena skupiny" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Speciální atributy" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Pole pro kvótu" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Výchozí kvóta" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "v bajtech" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Pole e-mailu" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Pravidlo pojmenování domovské složky uživatele" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Interní uživatelské jméno" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +477,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Ve výchozím nastavení bude uživatelské jméno vytvořeno z UUID atributu. To zajistí unikátnost uživatelského jména a není potřeba provádět konverzi znaků. Interní uživatelské jméno je omezeno na znaky: [ a-zA-Z0-9_.@- ]. Ostatní znaky jsou nahrazeny jejich ASCII ekvivalentem nebo jednoduše vynechány. V případě kolize uživatelských jmen bude přidáno/navýšeno číslo. Interní uživatelské jméno je používáno k interní identifikaci uživatele. Je také výchozím názvem uživatelského domovského adresáře. Je také součástí URL pro vzdálený přístup, například všech *DAV služeb. S tímto nastavením může být výchozí chování změněno. Pro dosažení podobného chování jako před ownCloudem 5 uveďte atribut zobrazovaného jména do pole níže. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele z LDAP." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atribut interního uživatelského jména:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Nastavit ručně UUID atribut" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +496,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut, který sami zvolíte. Musíte se ale ujistit, že atribut, který vyberete, bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID atribut pro uživatele:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID atribut pro skupiny:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Mapování uživatelských jmen z LDAPu" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +522,10 @@ msgid "" "experimental stage." msgstr "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro zmenšení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušit mapování uživatelských jmen LDAPu" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušit mapování názvů skupin LDAPu" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 823b769760..e64cfe9239 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,91 +68,95 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Sul" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Llun" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Mawrth" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Mercher" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Iau" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Gwener" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sadwrn" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Ionawr" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Chwefror" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mawrth" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Ebrill" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Mehefin" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Gorffennaf" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Awst" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Medi" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Hydref" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Tachwedd" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Rhagfyr" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -165,7 +164,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -173,15 +172,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "heddiw" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ddoe" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -189,11 +188,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -201,15 +200,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "y llynedd" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -279,6 +278,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Rhannwyd" @@ -287,12 +306,12 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Gwall" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -304,123 +323,123 @@ msgstr "Gwall wrth ddad-rannu" msgid "Error while changing permissions" msgstr "Gwall wrth newid caniatâd" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Rhannwyd â chi a'r grŵp {group} gan {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Rhannwyd â chi gan {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Diogelu cyfrinair" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Cyfrinair" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "E-bostio dolen at berson" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Anfon" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Gosod dyddiad dod i ben" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Dyddiad dod i ben" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Rhannu drwy e-bost:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grŵp" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "creu" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "diweddaru" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "dileu" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "rhannu" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Anfonwyd yr e-bost" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Rhybudd" @@ -467,11 +486,17 @@ msgstr "Methodd y diweddariad. Adroddwch y mater hwn i Gwiriwch eich enw defnyddiwr ac ebost." msgid "You will receive a link to reset your password via Email." msgstr "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Enw defnyddiwr" @@ -536,7 +561,7 @@ msgstr "Personol" msgid "Users" msgstr "Defnyddwyr" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Pecynnau" @@ -646,49 +671,47 @@ msgstr "" msgid "Create an admin account" msgstr "Crewch gyfrif gweinyddol" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Uwch" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Plygell data" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Cyflunio'r gronfa ddata" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "ddefnyddir" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Defnyddiwr cronfa ddata" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Cyfrinair cronfa ddata" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Enw cronfa ddata" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tablespace cronfa ddata" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Gwesteiwr cronfa ddata" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Gorffen sefydlu" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -704,7 +727,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Allgofnodi" @@ -730,27 +753,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Wedi colli'ch cyfrinair?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "cofio" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Mewngofnodi" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Mewngofnodiadau Amgen" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index e32823fc6d..88fe20282c 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" msgid "Could not move %s" msgstr "Methwyd symud %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Does dim hawl cael enw ffeil gwag." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,155 +76,156 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Ffeiliau" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Dim digon o le ar gael" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Diddymwyd llwytho i fyny." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Rhannu" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "newidiwyd {new_name} yn lle {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "dadwneud" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -220,7 +233,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -228,11 +241,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -240,66 +253,60 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "Mae '.' yn enw ffeil annilys." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Gwall" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Enw" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Maint" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Addaswyd" @@ -307,12 +314,12 @@ msgstr "Addaswyd" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Llwytho i fyny" @@ -348,69 +355,69 @@ msgstr "Maint mewnbynnu mwyaf ffeiliau ZIP" msgid "Save" msgstr "Cadw" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Newydd" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Ffeil destun" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Plygell" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Dolen o" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ffeiliau ddilewyd" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Llwytho i lawr" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Dileu" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Maint llwytho i fyny'n rhy fawr" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Sganio cyfredol" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index e589c2e5a9..07ded87631 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,18 +81,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -100,9 +100,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Yn cadw..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 2c221863a0..91af8d7530 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Defnyddwyr" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Dileu" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index bf2fd67f99..68b808a855 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "Rhannodd %s blygell %s â chi" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "Rhannodd %s ffeil %s â chi" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Llwytho i lawr" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Llwytho i fyny" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Diddymu llwytho i fyny" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Does dim rhagolwg ar gael ar gyfer" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 26381b9c86..7c17a68179 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Methwyd dileu %s yn barhaol" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Methwyd adfer %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Gwall" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Enw" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Adfer" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Wedi dileu" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Dileu" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Ffeiliau Ddilewyd" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index e87c4c5b4d..60f778e312 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Cymorth" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personol" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Gosodiadau" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Defnyddwyr" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Gweinyddu" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Mae llwytho ZIP wedi ei ddiffodd." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Nid yw'r pecyn wedi'i alluogi" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Gwall dilysu" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Ffeiliau" @@ -199,8 +198,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Enw a/neu gyfrinair MySQL annilys" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -227,21 +226,21 @@ msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Gollwng y defnyddiwr hwn o MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Gollwng y defnyddiwr hwn o MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -268,27 +267,33 @@ msgstr "Creu enw defnyddiwr i'r gweinyddwr." msgid "Set an admin password." msgstr "Gosod cyfrinair y gweinyddwr." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Gwiriwch y canllawiau gosod eto." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Methu canfod categori \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "eiliad yn ôl" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -296,7 +301,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -304,15 +309,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "heddiw" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ddoe" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -320,11 +325,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "mis diwethaf" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -332,10 +337,10 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "y llynedd" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 71b634b40d..9586875310 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Amgryptiad" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Gwall" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Yn cadw..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "dadwneud" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grwpiau" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Dileu" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Rhybudd Diogelwch" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Cyfrinair" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Cyfrinair newydd" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-bost" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Amgryptiad" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Arall" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Enw defnyddiwr" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index f32a619a70..d0c43b131c 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Gwall" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -144,11 +144,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -166,7 +166,7 @@ msgstr "Cymorth" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -202,7 +202,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -270,7 +270,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -413,41 +413,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -463,15 +473,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -482,19 +492,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -508,10 +518,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index 8ef32c0b7b..4c014f144f 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" -"PO-Revision-Date: 2014-01-07 08:50+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,12 +24,7 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s delte »%s« med sig" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Kunne ikke sende mail til følgende brugere: %s" @@ -79,135 +74,139 @@ msgstr "Intet midlertidigt profilbillede tilgængeligt, prøv igen" msgid "No crop data provided" msgstr "Ingen beskæringsdata give" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Søndag" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Mandag" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Tirsdag" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Fredag" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Lørdag" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Marts" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maj" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "December" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:872 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:873 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: js/js.js:874 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:875 +#: js/js.js:995 msgid "today" msgstr "i dag" -#: js/js.js:876 +#: js/js.js:996 msgid "yesterday" msgstr "i går" -#: js/js.js:877 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: js/js.js:878 +#: js/js.js:998 msgid "last month" msgstr "sidste måned" -#: js/js.js:879 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: js/js.js:880 +#: js/js.js:1000 msgid "months ago" msgstr "måneder siden" -#: js/js.js:881 +#: js/js.js:1001 msgid "last year" msgstr "sidste år" -#: js/js.js:882 +#: js/js.js:1002 msgid "years ago" msgstr "år siden" @@ -275,6 +274,26 @@ msgstr "({count} valgt)" msgid "Error loading file exists template" msgstr "Fejl ved inlæsning af; fil eksistere skabelon" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Delt" @@ -283,12 +302,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Fejl" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Fejl under deling" @@ -300,123 +319,123 @@ msgstr "Fejl under annullering af deling" msgid "Error while changing permissions" msgstr "Fejl under justering af rettigheder" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Delt med dig og gruppen {group} af {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Delt med dig af {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Del med bruger eller gruppe ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Del link" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Kodeord" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Tillad Offentlig Upload" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "E-mail link til person" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Send" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Vælg udløbsdato" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Udløbsdato" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Del via email:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "gruppe" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "Giv besked med mail" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "kan redigere" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "opret" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "opdater" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "slet" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "del" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-mail afsendt" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Advarsel" @@ -463,11 +482,17 @@ msgstr "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s adgangskode nulstillet" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Anvend følgende link til at nulstille din adgangskode: {link}" @@ -487,8 +512,8 @@ msgstr "Anmodning mislykkedes!
Er du sikker på at din e-post / brugernavn va msgid "You will receive a link to reset your password via Email." msgstr "Du vil modtage et link til at nulstille dit kodeord via email." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Brugernavn" @@ -532,7 +557,7 @@ msgstr "Personligt" msgid "Users" msgstr "Brugere" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -642,49 +667,47 @@ msgstr "For information om, hvordan du konfigurerer din server korrekt se admin account" msgstr "Opret en administratorkonto" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avanceret" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Afslut opsætning" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Færdigbehandler ..." @@ -700,7 +723,7 @@ msgstr "Programmet forudsætter at JavaScript er aktiveret for at kunne afvikles msgid "%s is available. Get more information on how to update." msgstr "%s er tilgængelig. Få mere information om, hvordan du opdaterer." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Log ud" @@ -726,28 +749,28 @@ msgstr "Server side godkendelse mislykkedes!" msgid "Please contact your administrator." msgstr "Kontakt venligst din administrator" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "husk" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Log ind" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternative logins" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Hej med dig,

Dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
Se det her!

Hej" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/da/files.po b/l10n/da/files.po index 53216837a8..20ef5fd813 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 18:50+0000\n" -"Last-Translator: lodahl \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,36 +31,48 @@ msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnavnet kan ikke stå tomt." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Filnavnet må ikke indeholde \"/\". Vælg venligst et andet navn." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Ikke en gyldig kilde" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fejl ved hentning af %s til %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Fejl ved oprettelse af fil" @@ -68,236 +80,231 @@ msgstr "Fejl ved oprettelse af fil" msgid "Folder name cannot be empty." msgstr "Mappenavnet kan ikke være tomt." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Mappenavnet må ikke indeholde \"/\". Vælg venligst et andet navn." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Fejl ved oprettelse af mappen" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Ude af stand til at vælge upload mappe." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Ugyldig Token " -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Upload fejlede. Kunne ikke hente filinformation." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Upload fejlede. Kunne ikke hente filinformation." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Ugyldig mappe." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Filer" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes." -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "ikke nok tilgængelig ledig plads " +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Kunne ikke hente resultat fra server." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Navnet 'Shared' er reserveret i hjemmemappen." -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Kunne ikke oprette fil" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Kunne ikke oprette mappe" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Fejl ved URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Del" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Kunne ikke omdøbe filen" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "fortryd" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Fejl ved sletnign af fil." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploader %n fil" msgstr[1] "Uploader %n filer" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' er et ugyldigt filnavn." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. " -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Fejl ved flytning af fil" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Fejl" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Navn" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Størrelse" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Ændret" @@ -305,12 +312,12 @@ msgstr "Ændret" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ugyldig mappenavn. 'Shared' er reserveret." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s kunne ikke omdøbes" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Upload" @@ -346,69 +353,69 @@ msgstr "Maksimal størrelse på ZIP filer" msgid "Save" msgstr "Gem" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Ny" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Ny tekstfil" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Tekstfil" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Ny Mappe" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Mappe" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Fra link" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Slettede filer" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Du har ikke tilladelse til at uploade eller oprette filer her" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Download" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Slet" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload er for stor" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 90861c46ca..629dba066a 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 18:40+0000\n" -"Last-Translator: lodahl \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,18 +83,18 @@ msgid "" "administrator" msgstr "Ukendt fejl. Kontroller venligst dit system eller kontakt din administrator" -#: hooks/hooks.php:62 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Manglende betingelser." -#: hooks/hooks.php:63 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." -#: hooks/hooks.php:281 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Følgende brugere er ikke sat op til kryptering:" @@ -102,9 +102,9 @@ msgstr "Følgende brugere er ikke sat op til kryptering:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent venligst." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Gemmer..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index c51e65b554..d3ae79673e 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Adgang godkendt" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Fejl ved konfiguration af Dropbox plads" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Godkend adgang" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Fejl ved konfiguration af Google Drive plads" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:465 +#: lib/config.php:516 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 " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Brugere" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Slet" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Aktiver ekstern opbevaring for brugere" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Tillad brugere at montere deres egne eksterne opbevaring" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL-rodcertifikater" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importer rodcertifikat" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 54b706c403..9aaa04adbb 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.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-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 16:20+0000\n" -"Last-Translator: lodahl \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,10 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Delingen er beskyttet af kodeord" @@ -55,32 +59,16 @@ msgstr "deling er deaktiveret" msgid "For more info, please ask the person who sent this link." msgstr "For yderligere information, kontakt venligst personen der sendte linket. " -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s delte mappen %s med dig" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s delte filen %s med dig" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Download" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Upload" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Fortryd upload" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Forhåndsvisning ikke tilgængelig for" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Direkte link" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 4524e08cf2..870b49e58f 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,44 +19,48 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kunne ikke slette %s permanent" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Kunne ikke gendanne %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Fejl" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "Gendannet" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Intet at se her. Din papirkurv er tom!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Navn" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Gendan" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Slettet" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Slet" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Slettede filer" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 94320b42d8..9986934c8d 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 16:01+0000\n" -"Last-Translator: lodahl \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,38 +21,38 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "App'en \"%s\" kan ikke blive installeret, da den ikke er kompatibel med denne version af ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Intet app-navn angivet" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hjælp" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personligt" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Indstillinger" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Brugere" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" @@ -65,15 +65,10 @@ msgstr "Ukendt filtype" msgid "Invalid image" msgstr "Ugyldigt billede" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Webtjenester under din kontrol" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "Kan ikke åbne \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." @@ -96,74 +91,78 @@ msgid "" "administrator." msgstr "Hent venligst filerne hver for sig i mindre dele eller spørg din administrator." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Ingen kilde angivet under installation af app" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Ingen href angivet under installation af app via http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Ingen sti angivet under installation af app fra lokal fil" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Arkiver af type %s understøttes ikke" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Kunne ikke åbne arkiv under installation af appen" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Der følger ingen info.xml-fil med appen" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Appen kan ikke installeres, da den indeholder ikke-tilladt kode" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Appen kan ikke installeres, da den ikke er kompatibel med denne version af ownCloud." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Appen kan ikke installeres, da den indeholder taget\n\n\ntrue\n\n\nhvilket ikke er tilladt for ikke-medfølgende apps" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "App kan ikke installeres, da versionen i info.xml/version ikke er den samme som versionen rapporteret fra app-storen" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "App-mappe findes allerede" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan ikke oprette app-mappe. Ret tilladelser. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Programmet er ikke aktiveret" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Adgangsfejl" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Adgang er udløbet. Genindlæs siden." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" @@ -203,8 +202,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL brugernavn og/eller kodeord er ikke gyldigt." +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -231,21 +230,21 @@ msgstr "Fejlende kommando var: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL brugeren '%s'@'localhost' eksisterer allerede." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Slet denne bruger fra MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL brugeren '%s'@'%%' eksisterer allerede." +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Slet denne bruger fra MySQL" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -272,66 +271,72 @@ msgstr "Angiv et admin brugernavn." msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunne ikke finde kategorien \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekunder siden" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "i dag" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "sidste måned" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "sidste år" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 9b91fc8745..406bf45d92 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 16:40+0000\n" -"Last-Translator: lodahl \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,48 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Kryptering" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Kunne ikke indlæse listen fra App Store" @@ -117,62 +159,90 @@ msgstr "Serveren understøtter ikke kodeordsskifte, men brugernes krypteringsnø msgid "Unable to change password" msgstr "Kunne ikke ændre kodeord" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Brugerdokumentation" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Opdatér til {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Deaktiver" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktiver" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Vent venligst..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Kunne ikke deaktivere app" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Kunne ikke aktivere app" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Opdaterer...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Der opstod en fejl under app opgraderingen" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Fejl" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Opdater" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Opdateret" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Vælg et profilbillede" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekryptere filer... Vent venligst, dette kan tage lang tid. " -#: js/personal.js:287 -msgid "Saving..." -msgstr "Gemmer..." - #: js/users.js:47 msgid "deleted" msgstr "Slettet" @@ -185,40 +255,40 @@ msgstr "fortryd" msgid "Unable to remove user" msgstr "Kan ikke fjerne bruger" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupper" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Gruppe Administrator" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Slet" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "Tilføj gruppe" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Advarsel: Hjemmemappen for bruger \"{user}\" findes allerede" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Dansk" @@ -242,18 +312,42 @@ msgstr "Fejl og alvorlige fejl" msgid "Fatal issues only" msgstr "Kun alvorlige fejl" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Sikkerhedsadvarsel" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -262,68 +356,68 @@ msgid "" "root." msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. " -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Opsætnings Advarsel" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' mangler" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Din PHP-version er forældet" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Din PHP-version er forældet. Vi anbefaler at du opgraderer til 5.3.8 eller nyere, fordi ældre versioner har kendte fejl. Det er derfor muligt at installationen ikke fungerer korrekt." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Landestandard fungerer ikke" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Systemets locale kan ikke sættes til et der bruger UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Det betyder at der kan være problemer med visse tegn i filnavne." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Vi anbefaler at du installerer den krævede pakke på dit system, for at understøtte følgende locales: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Internetforbindelse fungerer ikke" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -332,118 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Udføre en opgave med hver side indlæst" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Brug systemets cron service til at kalde cron.php hvert 15. minut." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Aktiver Share API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Tillad apps til at bruge Share API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer til offentligheden med links" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Tillad offentlig upload" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillad brugere at give andre mulighed for at uploade i deres offentligt delte mapper" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Tillad videredeling" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Tillad brugere at dele elementer delt med dem igen" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med alle" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Tillad brugere at kun dele med brugerne i deres grupper" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Tillad mail underretninger" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Tillad brugere at sende mail underretninger for delte filer" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tving klienten til at forbinde til %s via en kryptetet forbindelse." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mere" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Mindre" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Udviklet af ownClouds community, og kildekoden er underlagt licensen AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Tilføj din App" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Flere Apps" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Vælg en App" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Se applikationens side på apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licenseret af " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Brugerdokumentation" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Administrator Dokumentation" @@ -510,7 +652,7 @@ msgstr "Vis Første Kørsels Guiden igen." msgid "You have used %s of the available %s" msgstr "Du har brugt %s af den tilgængelige %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Kodeord" @@ -522,151 +664,149 @@ msgstr "Din adgangskode blev ændret" msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nyt kodeord" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Fulde navn" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Indtast en emailadresse for at kunne få påmindelse om adgangskode" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilbillede" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Upload nyt" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Vælg nyt fra Filer" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Fjern billede" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. " -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Din avatar kommer fra din oprindelige konto." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Afbryd" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Vælg som profilbillede" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Sprog" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Brug denne adresse for at tilgå dine filer via WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Kryptering" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Log-in kodeord" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Dekrypter alle Filer " -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Loginnavn" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Ny" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Administrator gendannelse kodeord" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Indtast et gendannelse kodeord for, at kunne gendanne brugerens filer ved ændring af kodeord" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Standard opbevaring" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ubegrænset" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Andet" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Brugernavn" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Opbevaring" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "ændre fulde navn" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "skift kodeord" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Standard" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 1012e98413..0ec13bbc9a 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,43 +87,43 @@ msgstr "Succes" msgid "Error" msgstr "Fejl" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Vælg grupper" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Forbindelsestest lykkedes" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Forbindelsestest mislykkedes" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ønsker du virkelig at slette den nuværende Server Konfiguration?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Bekræft Sletning" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -163,7 +163,7 @@ msgstr "Hjælp" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -199,7 +199,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -267,7 +267,7 @@ msgstr "You can specify Base DN for users and groups in the Advanced tab" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -410,41 +410,51 @@ msgstr "" msgid "Group-Member association" msgstr "Group-Member association" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kvote Felt" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Email Felt" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Internt Brugernavn" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +470,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +489,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +515,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/de/core.po b/l10n/de/core.po index c3ee3e52b2..41f383950d 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -4,8 +4,8 @@ # # Translators: # arkascha , 2013 -# I Robot , 2013 -# Marcel Kühlhorn , 2013 +# I Robot, 2013 +# Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # JamFX , 2013 # ninov , 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:22+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,12 +26,7 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s teilte »%s« mit Dir" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s" @@ -81,135 +76,139 @@ msgstr "Kein temporäres Profilbild verfügbar, bitte versuche es nochmal" msgid "No crop data provided" msgstr "Keine Zuschnittdaten zur Verfügung gestellt" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Sonntag" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Montag" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Dienstag" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Mittwoch" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Donnerstag" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Freitag" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Samstag" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "März" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Dezember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "Heute" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "Gestern" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "Vor Jahren" @@ -277,6 +276,26 @@ msgstr "({count} ausgewählt)" msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Geteilt" @@ -285,12 +304,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -302,123 +321,123 @@ msgstr "Fehler beim Aufheben der Freigabe" msgid "Error while changing permissions" msgstr "Fehler beim Ändern der Rechte" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} hat dies mit Dir und der Gruppe {group} geteilt" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} hat dies mit Dir geteilt" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Mit Benutzer oder Gruppe teilen ...." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Link Teilen" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Passwort" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Senden" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Setze ein Ablaufdatum" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Über eine E-Mail teilen:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "Gruppe" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "erstellen" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "aktualisieren" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "löschen" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "teilen" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-Mail wurde verschickt" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Warnung" @@ -465,11 +484,17 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die Hast Du darauf geachtet, dass Deine E-Mail/De msgid "You will receive a link to reset your password via Email." msgstr "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Benutzername" @@ -534,7 +559,7 @@ msgstr "Persönlich" msgid "Users" msgstr "Benutzer" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -644,49 +669,47 @@ msgstr "Für Informationen, wie Du Deinen Server richtig konfigurierst, lies bit msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Fortgeschritten" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Abschließen ..." @@ -702,7 +725,7 @@ msgstr "Diese Anwendung benötigt ein aktiviertes JavaScript zum korrekten Betri msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Hole weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Abmelden" @@ -728,28 +751,28 @@ msgstr "Serverseitige Authentifizierung fehlgeschlagen!" msgid "Please contact your administrator." msgstr "Bitte kontaktiere Deinen Administrator." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "merken" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternative Logins" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Hallo,

wollte Dich nur kurz informieren, dass %s gerade %s mit Dir geteilt hat.
Schau es Dir an.

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/de/files.po b/l10n/de/files.po index 628bdcb0c9..a941e9149f 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -3,8 +3,8 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# I Robot , 2013 -# Marcel Kühlhorn , 2013 +# I Robot, 2013 +# Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # ninov , 2013 # Pwnicorn , 2013 @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,36 +33,48 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Der Dateiname darf kein \"/\" enthalten. Bitte wähle einen anderen Namen." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wähle einen anderen Namen." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" @@ -70,236 +82,231 @@ msgstr "Fehler beim Erstellen der Datei" msgid "Folder name cannot be empty." msgstr "Der Ordner-Name darf nicht leer sein." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Der Ordner-Name darf kein \"/\" enthalten. Bitte wähle einen anderen Namen." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Fehler beim Erstellen des Ordners" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Dateien" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nicht genug Speicherplatz verfügbar" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" msgstr[1] "%n Dateien werden hochgeladen" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' ist kein gültiger Dateiname." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Dein Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melden Dich nochmals ab und wieder an." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere Dein privates Schlüssel-Passwort, um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Deine Dateien nach wie vor verschlüsselt. Bitte gehe zu Deinen persönlichen Einstellungen, um Deine Dateien zu entschlüsseln." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Fehler" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Name" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Größe" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Geändert" @@ -307,12 +314,12 @@ msgstr "Geändert" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Hochladen" @@ -348,69 +355,69 @@ msgstr "Maximale Größe für ZIP-Dateien" msgid "Save" msgstr "Speichern" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Neu" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Neue Textdatei" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Neuer Ordner" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Ordner" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Du besitzt hier keine Berechtigung, um Dateien hochzuladen oder zu erstellen" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Löschen" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 46d897d070..f0b3da44da 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.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-06 10:50+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,18 +88,18 @@ msgid "" "administrator" msgstr "Unbekannter Fehler, bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Fehlende Vorraussetzungen" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:278 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" @@ -107,9 +107,9 @@ msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Speichern..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 961094281a..3f6fc3a8d9 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Zugriff gestattet" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Fehler beim Einrichten von Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Zugriff gestatten" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." -#: lib/config.php:465 +#: lib/config.php:516 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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Benutzer" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Externen Speicher für Benutzer aktivieren" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index dd4cb3df2b..46c354e3a4 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-06 10:50+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,10 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Diese Freigabe ist durch ein Passwort geschützt" @@ -57,32 +61,16 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, frage bitte die Person, die Dir diesen Link geschickt hat." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s hat den Ordner %s mit Dir geteilt" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s hat die Datei %s mit Dir geteilt" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Download" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Upload" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Upload abbrechen" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Es ist keine Vorschau verfügbar für" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Direkter Link" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 4fc104f2c0..e651436e0d 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-06 10:48+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,21 +18,25 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Konnte %s nicht dauerhaft löschen" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "Wiederhergestellt" @@ -56,6 +60,6 @@ msgstr "gelöscht" msgid "Delete" msgstr "Löschen" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Gelöschte Dateien" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 3a4258bd22..9336edbe25 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,38 +21,38 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Es wurde kein Applikation-Name angegeben" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hilfe" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Persönlich" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Einstellungen" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Benutzer" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administration" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -65,15 +65,10 @@ msgstr "Unbekannter Dateityp" msgid "Invalid image" msgstr "Ungültiges Bild" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Web-Services unter Deiner Kontrolle" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "Öffnen von \"%s\" fehlgeschlagen" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." @@ -96,74 +91,78 @@ msgid "" "administrator." msgstr "Bitte lade die Dateien einzeln in kleineren Teilen herunter oder bitte Deinen Administrator." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Für die Installation der Applikation wurde keine Quelle angegeben" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Für die Installation der Applikation über http wurde keine Quelle (href) angegeben" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Archive vom Typ %s werden nicht unterstützt" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Das Archiv konnte bei der Installation der Applikation nicht geöffnet werden" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Die Applikation enthält keine info,xml Datei" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Die Applikation kann auf Grund von unerlaubtem Code nicht installiert werden" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Die Applikation konnte nicht installiert werden, da die Version in der info.xml nicht die gleiche Version wie im App-Store ist" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Das Applikationsverzeichnis existiert bereits" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Es kann kein Applikationsordner erstellt werden. Bitte passe die Berechtigungen an. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Fehler bei der Anmeldung" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte lade die Seite neu." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dateien" @@ -203,8 +202,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL Benutzername und/oder Passwort ungültig" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -231,21 +230,21 @@ msgstr "Fehlerhafter Befehl war: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Lösche diesen Benutzer von MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Lösche diesen Benutzer aus MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -272,66 +271,72 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfe die Installationsanleitungen." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "Gerade eben" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "Heute" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "Gestern" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "Letzten Monat" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "Letztes Jahr" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 2824738323..2371adf8da 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 13:20+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,48 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Verschlüsselung" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." @@ -120,62 +162,90 @@ msgstr "Das Back-End unterstützt die Passwortänderung nicht, aber der Benutzer msgid "Unable to change password" msgstr "Passwort konnte nicht geändert werden" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Dokumentation für Benutzer" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Aktualisiere zu {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktivieren" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Bitte warten..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Beim Deaktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Beim Aktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Aktualisierung..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Fehler beim Aktualisieren der App" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Fehler" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Aktualisierung durchführen" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Wähle ein Profilbild" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Speichern..." - #: js/users.js:47 msgid "deleted" msgstr "gelöscht" @@ -188,40 +258,40 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Benutzer konnte nicht entfernt werden." -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Gruppen" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Löschen" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Deutsch (Persönlich)" @@ -245,18 +315,42 @@ msgstr "Fehler und fatale Probleme" msgid "Fatal issues only" msgstr "Nur fatale Probleme" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Sicherheitswarnung" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, das stattdessen HTTPS verlangt wird." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -265,68 +359,68 @@ msgid "" "root." msgstr "Dein Datenverzeichnis und deine Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Bitte überprüfe die Installationsanleitungen." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Modul 'fileinfo' fehlt " -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Deine PHP-Version ist veraltet" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Deine PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Ländereinstellung funktioniert nicht" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Keine Netzwerkverbindung" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -335,118 +429,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Benutze den System-Crondienst um die cron.php alle 15 Minuten aufzurufen." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Aktiviere Sharing-API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Erlaubt Apps die Nutzung der Share-API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Erlaubt Links" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mehr" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Weniger" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Füge Deine Anwendung hinzu" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Weitere Anwendungen" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Wähle eine Anwendung aus" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Weitere Anwendungen findest Du auf apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-lizenziert von " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Dokumentation für Benutzer" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Dokumentation für Administratoren" @@ -513,7 +655,7 @@ msgstr "Erstinstallation erneut durchführen" msgid "You have used %s of the available %s" msgstr "Du verwendest %s der verfügbaren %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passwort" @@ -525,151 +667,149 @@ msgstr "Dein Passwort wurde geändert." msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Vollständiger Name" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Neues hochladen" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Neues aus den Dateien wählen" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Bild entfernen" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Entweder PNG oder JPG. Im Idealfall quadratisch, aber du kannst es zuschneiden." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Dein Avatar wird von Deinem ursprünglichenKonto verwendet." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Abbrechen" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Als Profilbild wählen" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Sprache" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Verschlüsselung" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten." -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Loginname" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Anlegen" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Admin-Wiederherstellungspasswort" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Standard-Speicher" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Andere" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Benutzername" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Speicher" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "Vollständigen Namen ändern" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "Neues Passwort setzen" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Standard" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index c060c23562..89829b61ca 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Marcel Kühlhorn , 2013 +# Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # Pwnicorn , 2013 # kabum , 2013 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,43 +90,43 @@ msgstr "Erfolgreich" msgid "Error" msgstr "Fehler" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Konfiguration nicht korrekt" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Konfiguration nicht vollständig" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Wähle Gruppen aus" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Objekt-Klassen auswählen" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Attribute auswählen" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchtest Du die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Löschung bestätigen" @@ -144,11 +144,11 @@ msgid_plural "%s users found" msgstr[0] "%s Benutzer gefunden" msgstr[1] "%s Benutzer gefunden" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Ungültiger Host" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" @@ -166,8 +166,8 @@ msgstr "Hilfe" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Beschränke den Zugriff auf %s auf Gruppen, die die folgenden Kriterien erfüllen:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -202,8 +202,8 @@ msgid "groups found" msgstr "Gruppen gefunden" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Welches Attribut soll als Login-Name verwendet werden:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -270,8 +270,8 @@ msgstr "Du kannst Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reiter #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Beschränke den Zugriff auf %s auf Benutzer, die die folgenden Kriterien erfüllen:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -413,41 +413,51 @@ msgstr "Gruppensucheigenschaften" msgid "Group-Member association" msgstr "Assoziation zwischen Gruppe und Benutzer" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kontingent Feld" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Standard Kontingent" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-Mail Feld" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Interner Benutzername" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -463,15 +473,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Attribut für interne Benutzernamen:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "UUID-Erkennung überschreiben" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -482,19 +492,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID-Attribute für Benutzer:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID-Attribute für Gruppen:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -508,10 +518,10 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 43986ced25..b55570bb68 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# I Robot , 2013 +# I Robot, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,135 +68,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 -msgid "Sunday" -msgstr "" - -#: js/config.php:33 -msgid "Monday" -msgstr "" - -#: js/config.php:34 -msgid "Tuesday" -msgstr "" - -#: js/config.php:35 -msgid "Wednesday" -msgstr "" - #: js/config.php:36 -msgid "Thursday" -msgstr "" +msgid "Sunday" +msgstr "Sonntag" #: js/config.php:37 -msgid "Friday" -msgstr "" +msgid "Monday" +msgstr "Montag" #: js/config.php:38 +msgid "Tuesday" +msgstr "Dienstag" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "Mittwoch" + +#: js/config.php:40 +msgid "Thursday" +msgstr "Donnerstag" + +#: js/config.php:41 +msgid "Friday" +msgstr "Freitag" + +#: js/config.php:42 msgid "Saturday" -msgstr "" - -#: js/config.php:43 -msgid "January" -msgstr "" - -#: js/config.php:44 -msgid "February" -msgstr "" - -#: js/config.php:45 -msgid "March" -msgstr "" - -#: js/config.php:46 -msgid "April" -msgstr "" +msgstr "Samstag" #: js/config.php:47 -msgid "May" -msgstr "" +msgid "January" +msgstr "Januar" #: js/config.php:48 -msgid "June" -msgstr "" +msgid "February" +msgstr "Februar" #: js/config.php:49 -msgid "July" -msgstr "" +msgid "March" +msgstr "März" #: js/config.php:50 -msgid "August" -msgstr "" +msgid "April" +msgstr "April" #: js/config.php:51 -msgid "September" -msgstr "" +msgid "May" +msgstr "Mai" #: js/config.php:52 -msgid "October" -msgstr "" +msgid "June" +msgstr "Juni" #: js/config.php:53 -msgid "November" -msgstr "" +msgid "July" +msgstr "Juli" #: js/config.php:54 +msgid "August" +msgstr "August" + +#: js/config.php:55 +msgid "September" +msgstr "September" + +#: js/config.php:56 +msgid "October" +msgstr "Oktober" + +#: js/config.php:57 +msgid "November" +msgstr "November" + +#: js/config.php:58 msgid "December" -msgstr "" +msgstr "Dezember" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" +msgstr "Einstellungen" + +#: js/js.js:496 +msgid "Saving..." msgstr "" -#: js/js.js:858 +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -251,7 +250,7 @@ msgstr "" #: js/oc-dialogs.js:376 msgid "Cancel" -msgstr "" +msgstr "Abbrechen" #: js/oc-dialogs.js:386 msgid "Continue" @@ -269,20 +268,40 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" #: js/share.js:109 msgid "Share" -msgstr "" +msgstr "Freigeben" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -294,123 +313,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" -msgstr "" +msgstr "Passwort" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" -msgstr "" +msgstr "Gruppe" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" -msgstr "" +msgstr "Teilung zurücknehmen" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" -msgstr "" +msgstr "kann bearbeiten" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -424,7 +443,7 @@ msgstr "" #: js/tags.js:27 msgid "Delete" -msgstr "" +msgstr "Löschen" #: js/tags.js:31 msgid "Add" @@ -457,11 +476,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -481,8 +506,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -520,13 +545,13 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Persönlich" #: strings.php:6 msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -636,49 +661,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -694,7 +717,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -720,27 +743,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index bb1821599c..6d6c99e34c 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" -msgstr "" +msgstr "Freigeben" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -340,71 +347,71 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Speichern" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" -msgstr "" +msgstr "Herunterladen" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" -msgstr "" +msgstr "Löschen" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/de_AT/files_encryption.po b/l10n/de_AT/files_encryption.po index 418f50879b..7cd4e354cf 100644 --- a/l10n/de_AT/files_encryption.po +++ b/l10n/de_AT/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/de_AT/files_external.po b/l10n/de_AT/files_external.po index 8eaf2edc15..9f85e31f08 100644 --- a/l10n/de_AT/files_external.po +++ b/l10n/de_AT/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:448 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:451 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:454 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" -msgstr "" +msgstr "Löschen" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/de_AT/files_sharing.po b/l10n/de_AT/files_sharing.po index 1e23d2030d..6835f39be3 100644 --- a/l10n/de_AT/files_sharing.po +++ b/l10n/de_AT/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -27,7 +31,7 @@ msgstr "" #: templates/authenticate.php:10 msgid "Password" -msgstr "" +msgstr "Passwort" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index 9f2eb2716b..03100b293f 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" -msgstr "" +msgstr "Löschen" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 49d351f3f8..535f8b9b15 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" -msgstr "" +msgstr "Persönlich" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" -msgstr "" +msgstr "Einstellungen" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 4c5a8ee9bc..546815f6c6 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# I Robot , 2013 +# I Robot, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -65,7 +107,7 @@ msgstr "" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "Fehlerhafte Anfrage" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" @@ -114,60 +156,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -182,40 +252,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" -msgstr "" +msgstr "Löschen" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Deutsch (Österreich)" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -507,9 +649,9 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" -msgstr "" +msgstr "Passwort" #: templates/personal.php:40 msgid "Your password was changed" @@ -519,151 +661,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" -msgstr "" +msgstr "E-Mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" -msgstr "" +msgstr "Anderes" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index 132de651d9..8fe6722c36 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -60,7 +60,7 @@ msgstr "" #: js/settings.js:67 msgid "Deletion failed" -msgstr "" +msgstr "Löschen fehlgeschlagen" #: js/settings.js:83 msgid "Take over settings from recent server configuration?" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,17 +140,17 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" #: templates/part.settingcontrols.php:2 msgid "Save" -msgstr "" +msgstr "Speichern" #: templates/part.settingcontrols.php:4 msgid "Test Configuration" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -250,7 +250,7 @@ msgstr "" #: templates/part.wizard-server.php:52 msgid "Password" -msgstr "" +msgstr "Passwort" #: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index deb192be2d..ce2baa8be6 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -6,9 +6,9 @@ # arkascha , 2013 # FlorianScholz , 2013 # FlorianScholz , 2013 -# I Robot , 2013 +# I Robot, 2013 # kenwood , 2013 -# Marcel Kühlhorn , 2013 +# Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # Mirodin , 2013 # SteinQuadrat, 2013 @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,12 +27,7 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s teilt »%s« mit Ihnen" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -82,135 +77,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Sonntag" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Montag" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Dienstag" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Mittwoch" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Donnerstag" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Freitag" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Samstag" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "März" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Dezember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "Heute" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "Gestern" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "Vor Jahren" @@ -278,6 +277,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Geteilt" @@ -286,12 +305,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -303,123 +322,123 @@ msgstr "Fehler beim Aufheben der Freigabe" msgid "Error while changing permissions" msgstr "Fehler bei der Änderung der Rechte" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Von {owner} mit Ihnen geteilt." -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Passwort" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Senden" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "Gruppe" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "erstellen" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "aktualisieren" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "löschen" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "teilen" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Warnung" @@ -466,11 +485,17 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die Haben Sie darauf geachtet, dass E-Mail-Adress msgid "You will receive a link to reset your password via Email." msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Benutzername" @@ -535,7 +560,7 @@ msgstr "Persönlich" msgid "Users" msgstr "Benutzer" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -645,49 +670,47 @@ msgstr "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Fortgeschritten" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Installation abschliessen" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -703,7 +726,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Abmelden" @@ -729,27 +752,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "merken" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternative Logins" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 3d90c347be..ed7536a278 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -6,9 +6,9 @@ # a.tangemann , 2013 # FlorianScholz , 2013 # FlorianScholz , 2013 -# I Robot , 2013 +# I Robot, 2013 # kabum , 2013 -# Marcel Kühlhorn , 2013 +# Marcel Kühlhorn , 2013 # Mirodin , 2013 # SteinQuadrat, 2013 # traductor , 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,36 +36,48 @@ msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -73,236 +85,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Dateien" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nicht genügend Speicherplatz verfügbar" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n Dateien" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" msgstr[1] "%n Dateien werden hochgeladen" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' ist kein gültiger Dateiname." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Fehler" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Name" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Grösse" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Geändert" @@ -310,12 +317,12 @@ msgstr "Geändert" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Hochladen" @@ -351,69 +358,69 @@ msgstr "Maximale Grösse für ZIP-Dateien" msgid "Save" msgstr "Speichern" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Neu" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Neues Verzeichnis" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Ordner" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Löschen" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Der Upload ist zu gross" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_CH/files_encryption.po b/l10n/de_CH/files_encryption.po index ca208fe78d..e0ff909df6 100644 --- a/l10n/de_CH/files_encryption.po +++ b/l10n/de_CH/files_encryption.po @@ -8,14 +8,14 @@ # FlorianScholz , 2013 # JamFX , 2013 # Mario Siegmann , 2013 -# traductor , 2013 +# traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,18 +86,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Fehlende Voraussetzungen" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" @@ -105,9 +105,9 @@ msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Speichern..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po index bf326e50f9..7d5e063fd8 100644 --- a/l10n/de_CH/files_external.po +++ b/l10n/de_CH/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Zugriff gestattet" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Fehler beim Einrichten von Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Zugriff gestatten" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: «smbclient» ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:465 +#: lib/config.php:516 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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Benutzer" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Externen Speicher für Benutzer aktivieren" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Erlaubt Benutzern, ihre eigenen externen Speicher einzubinden" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po index 3bf4f2e30f..5faf92bfa9 100644 --- a/l10n/de_CH/files_sharing.po +++ b/l10n/de_CH/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,10 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -56,32 +60,16 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s hat den Ordner %s mit Ihnen geteilt" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s hat die Datei %s mit Ihnen geteilt" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Herunterladen" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Hochladen" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Upload abbrechen" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Es ist keine Vorschau verfügbar für" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 0e522a2028..18656e7580 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/files_trashbin.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,44 +20,48 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Konnte %s nicht dauerhaft löschen" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Name" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Gelöscht" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Löschen" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Gelöschte Dateien" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 60b3f52c35..066b98c1b9 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,38 +21,38 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Anwendung \"%s\" kann nicht installiert werden, da sie mit dieser Version von ownCloud nicht kompatibel ist." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Kein App-Name spezifiziert" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hilfe" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Persönlich" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Einstellungen" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Benutzer" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administrator" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -65,15 +65,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "Öffnen von \"%s\" fehlgeschlagen" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." @@ -96,74 +91,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Anwendung kann wegen nicht erlaubten Codes nicht installiert werden" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Anwendungsverzeichnis existiert bereits" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dateien" @@ -203,8 +202,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL Benutzername und/oder Passwort ungültig" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -231,21 +230,21 @@ msgstr "Fehlerhafter Befehl war: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Lösche diesen Benutzer aus MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Lösche diesen Benutzer aus MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -272,66 +271,72 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Die Kategorie «%s» konnte nicht gefunden werden." -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "Gerade eben" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "Vor %n Minuten" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Vor %n Stunden" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "Heute" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "Gestern" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "Vor %n Tagen" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "Letzten Monat" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Vor %n Monaten" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "Letztes Jahr" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 8d29ca8730..f18beb375c 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -7,7 +7,7 @@ # a.tangemann , 2013 # FlorianScholz , 2013 # FlorianScholz , 2013 -# I Robot , 2013 +# I Robot, 2013 # kabum , 2013 # Mario Siegmann , 2013 # Mirodin , 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +26,48 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Verschlüsselung" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." @@ -122,62 +164,90 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Dokumentation für Benutzer" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Update zu {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktivieren" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Bitte warten...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Fehler während der Deaktivierung der Anwendung" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Fehler während der Aktivierung der Anwendung" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Update..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Es ist ein Fehler während des Updates aufgetreten" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Fehler" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Update durchführen" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Speichern..." - #: js/users.js:47 msgid "deleted" msgstr "gelöscht" @@ -190,40 +260,40 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Gruppen" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Löschen" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Deutsch (Schweiz)" @@ -247,18 +317,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -267,68 +361,68 @@ msgid "" "root." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis ausserhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Bitte überprüfen Sie die Instalationsanleitungen." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -337,118 +431,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Erlaube öffentliches hochladen" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mehr" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Weniger" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Fügen Sie Ihre Anwendung hinzu" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Weitere Anwendungen" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Wählen Sie eine Anwendung aus" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-lizenziert von " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Dokumentation für Benutzer" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Dokumentation für Administratoren" @@ -515,7 +657,7 @@ msgstr "Den Einrichtungsassistenten erneut anzeigen" msgid "You have used %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passwort" @@ -527,151 +669,149 @@ msgstr "Ihr Passwort wurde geändert." msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Sprache" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Verschlüsselung" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Loginname" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Erstellen" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Admin-Passwort-Wiederherstellung" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Standard-Speicher" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Andere" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Benutzername" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Speicher" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "Neues Passwort setzen" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Standard" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index e5935ea789..e3d3783f76 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -7,7 +7,7 @@ # FlorianScholz , 2013 # FlorianScholz , 2013 # JamFX , 2013 -# Marcel Kühlhorn , 2013 +# Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # multimill , 2012 # traductor , 2012-2013 @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,43 +94,43 @@ msgstr "Erfolg" msgid "Error" msgstr "Fehler" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Wähle Gruppen" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Löschung bestätigen" @@ -148,11 +148,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -170,7 +170,7 @@ msgstr "Hilfe" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -206,7 +206,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -274,7 +274,7 @@ msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem «Erweitert»-Reit #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -417,41 +417,51 @@ msgstr "Gruppensucheigenschaften" msgid "Group-Member association" msgstr "Assoziation zwischen Gruppe und Benutzer" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kontingent-Feld" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Standard-Kontingent" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-Mail-Feld" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Interner Benutzername" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -467,15 +477,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standardmässig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmässig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Interne Eigenschaften des Benutzers:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "UUID-Erkennung überschreiben" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -486,19 +496,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -512,10 +522,10 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index d5844a27ad..e4bf5683bf 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -5,8 +5,9 @@ # Translators: # arkascha , 2013 # SteinQuadrat, 2013 -# I Robot , 2013 -# Marcel Kühlhorn , 2013 +# I Robot, 2013 +# lysathor, 2014 +# Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # traductor , 2013 # noxin , 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,12 +26,7 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s hat »%s« mit Ihnen geteilt" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "An folgende Benutzer konnte keine E-Mail gesendet werden: %s" @@ -80,135 +76,139 @@ msgstr "Kein temporäres Profilbild verfügbar, bitte versuchen Sie es nochmal" msgid "No crop data provided" msgstr "Keine Zuschnittdaten zur Verfügung gestellt" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Sonntag" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Montag" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Dienstag" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Mittwoch" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Donnerstag" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Freitag" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Samstag" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "März" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Dezember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "Heute" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "Gestern" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "Vor Jahren" @@ -276,6 +276,26 @@ msgstr "({count} ausgewählt)" msgid "Error loading file exists template" msgstr "Fehler beim Laden der vorhanden Dateivorlage" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Geteilt" @@ -284,12 +304,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -301,123 +321,123 @@ msgstr "Fehler beim Aufheben der Freigabe" msgid "Error while changing permissions" msgstr "Fehler bei der Änderung der Rechte" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Von {owner} mit Ihnen geteilt." -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Mit Benutzer oder Gruppe teilen ...." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Link teilen" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Passwort" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Senden" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "Gruppe" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "erstellen" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "aktualisieren" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "löschen" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "teilen" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Warnung" @@ -464,11 +484,17 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die Haben Sie darauf geachtet, dass E-Mail-Adress msgid "You will receive a link to reset your password via Email." msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Benutzername" @@ -533,7 +559,7 @@ msgstr "Persönlich" msgid "Users" msgstr "Benutzer" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -637,55 +663,53 @@ msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet a msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Bitte lesen Sie die Dokumentation, um zu erfahren, wie Sie Ihr Server richtig konfigurieren können." +msgstr "Bitte lesen Sie die Dokumentation, um zu erfahren, wie Sie Ihren Server richtig konfigurieren können." #: templates/installation.php:48 msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Fortgeschritten" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Abschließen ..." @@ -701,7 +725,7 @@ msgstr "Diese Anwendung benötigt ein aktiviertes JavaScript zum korrekten Betri msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Abmelden" @@ -727,28 +751,28 @@ msgstr "Die Authentifizierung auf dem Server ist fehlgeschlagen!" msgid "Please contact your administrator." msgstr "Bitte kontaktieren Sie Ihren Administrator." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "merken" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Einloggen" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternative Logins" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Hallo,

%s hat %s mit Ihnen geteilt.
Schauen Sie es sich an!

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 4dfeb00de5..741c5399a7 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -5,8 +5,8 @@ # Translators: # a.tangemann , 2013 # SteinQuadrat, 2013 -# I Robot , 2013 -# Marcel Kühlhorn , 2013 +# I Robot, 2013 +# Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # traductor , 2013 # noxin , 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,36 +36,48 @@ msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Der Dateiname darf kein \"/\" enthalten. Bitte wählen Sie einen anderen Namen." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wählen Sie einen anderen Namen." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" @@ -73,236 +85,231 @@ msgstr "Fehler beim Erstellen der Datei" msgid "Folder name cannot be empty." msgstr "Der Ordner-Name darf nicht leer sein." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Der Ordner-Name darf kein \"/\" enthalten. Bitte wählen Sie einen anderen Namen." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Fehler beim Erstellen des Ordners" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Dateien" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Die Datei {filename} kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nicht genügend Speicherplatz verfügbar" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" msgstr[1] "%n Dateien werden hoch geladen" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' ist kein gültiger Dateiname." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Fehler" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Name" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Größe" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Geändert" @@ -310,12 +317,12 @@ msgstr "Geändert" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Hochladen" @@ -351,69 +358,69 @@ msgstr "Maximale Größe für ZIP-Dateien" msgid "Save" msgstr "Speichern" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Neu" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Neue Textdatei" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Textdatei" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Neues Verzeichnis" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Ordner" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Von einem Link" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Sie besitzen hier keine Berechtigung Dateien hochzuladen oder zu erstellen" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Löschen" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Der Upload ist zu groß" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index d6ec6d43f9..7c2fa42b84 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:30+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,18 +84,18 @@ msgid "" "administrator" msgstr "Unbekannter Fehler, bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Fehlende Voraussetzungen" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" @@ -103,9 +103,9 @@ msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Initialverschlüsselung gestartet... Dies kann einige Zeit dauern. Bitte warten." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Speichern..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index fab43fb0db..3363a8cefa 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,40 +19,44 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Zugriff gestattet" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Fehler beim Einrichten von Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Zugriff gestatten" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:465 +#: lib/config.php:516 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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -104,22 +108,22 @@ msgid "Users" msgstr "Benutzer" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Löschen" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Externen Speicher für Benutzer aktivieren" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Erlaubt Benutzern, ihre eigenen externen Speicher einzubinden" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 971d8177eb..5d9f62a430 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,10 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Diese Freigabe ist durch ein Passwort geschützt" @@ -55,32 +59,16 @@ msgstr "Teilen ist deaktiviert" msgid "For more info, please ask the person who sent this link." msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s hat den Ordner %s mit Ihnen geteilt" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s hat die Datei %s mit Ihnen geteilt" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Herunterladen" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Hochladen" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Upload abbrechen" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Es ist keine Vorschau verfügbar für" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Direkte Verlinkung" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 2348bee919..1cd4a7c05f 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,44 +19,48 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Konnte %s nicht dauerhaft löschen" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "Wiederhergestellt" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Name" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Wiederherstellen" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Gelöscht" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Löschen" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Gelöschte Dateien" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 25b901469e..cbc90204c5 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -6,13 +6,14 @@ # Mario Siegmann , 2013 # traductor , 2013 # noxin , 2013 +# kabum , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,38 +21,38 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Applikation \"%s\" kann nicht installiert werden, da sie mit dieser ownCloud Version nicht kompatibel ist." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Es wurde kein Applikation-Name angegeben" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hilfe" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Persönlich" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Einstellungen" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Benutzer" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administrator" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -64,15 +65,10 @@ msgstr "Unbekannter Dateityp" msgid "Invalid image" msgstr "Ungültiges Bild" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "Öffnen von \"%s\" fehlgeschlagen" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." @@ -95,74 +91,78 @@ msgid "" "administrator." msgstr "Bitte laden Sie die Dateien einzeln in kleineren Teilen herunter oder bitten Sie Ihren Administrator." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Für die Installation der Applikation wurde keine Quelle angegeben" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Der Link (href) wurde nicht angegeben um die Applikation per http zu installieren" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Archive des Typs %s werden nicht unterstützt." -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Das Archiv konnte bei der Installation der Applikation nicht geöffnet werden" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" -msgstr "Die Applikation enthält keine info,xml Datei" +msgstr "Die Applikation enthält keine info.xml Datei" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Die Applikation kann auf Grund von unerlaubten Code nicht installiert werden" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist ist" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Die Applikation konnte nicht installiert werden, da die Version in der info.xml nicht die gleiche Version wie im App-Store ist" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Der Ordner für die Anwendung existiert bereits." -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Der Ordner für die Anwendung konnte nicht angelegt werden. Bitte überprüfen Sie die Ordner- und Dateirechte und passen Sie diese entsprechend an. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dateien" @@ -202,8 +202,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL Benutzername und/oder Passwort ungültig" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -230,21 +230,21 @@ msgstr "Fehlerhafter Befehl war: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Lösche diesen Benutzer aus MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Lösche diesen Benutzer aus MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -271,66 +271,72 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Die Kategorie \"%s\" konnte nicht gefunden werden." -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "Gerade eben" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "Heute" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "Gestern" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "Letzten Monat" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "Letztes Jahr" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 42e8c8dc24..549ad4c93f 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 13:20+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,48 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Verschlüsselung" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." @@ -120,62 +162,90 @@ msgstr "Das Back-End unterstützt die Passwortänderung nicht, aber der Benutzer msgid "Unable to change password" msgstr "Passwort konnte nicht geändert werden" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Dokumentation für Benutzer" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Update zu {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktivieren" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Bitte warten...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Beim Deaktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Beim Aktivieren der Applikation ist ein Fehler aufgetreten" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Update..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Es ist ein Fehler während des Updates aufgetreten" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Fehler" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Update durchführen" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Wählen Sie ein Profilbild" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Speichern..." - #: js/users.js:47 msgid "deleted" msgstr "gelöscht" @@ -188,40 +258,40 @@ msgstr "rückgängig machen" msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Gruppen" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Löschen" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warnung: Das Benutzerverzeichnis für den Benutzer \"{user}\" existiert bereits" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Deutsch (Förmlich: Sie)" @@ -245,18 +315,42 @@ msgstr "Fehler und fatale Probleme" msgid "Fatal issues only" msgstr "Nur fatale Probleme" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, das stattdessen HTTPS verlangt wird." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -265,68 +359,68 @@ msgid "" "root." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Bitte überprüfen Sie die Instalationsanleitungen." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Ihre PHP-Version ist veraltet" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Ihre PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -335,118 +429,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mehr" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Weniger" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Fügen Sie Ihre Anwendung hinzu" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Weitere Anwendungen" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Wählen Sie eine Anwendung aus" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-lizenziert von " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Dokumentation für Benutzer" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Dokumentation für Administratoren" @@ -513,7 +655,7 @@ msgstr "Den Einrichtungsassistenten erneut anzeigen" msgid "You have used %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passwort" @@ -525,151 +667,149 @@ msgstr "Ihr Passwort wurde geändert." msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Vollständiger Name" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Neues hochladen" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Neues aus den Dateien wählen" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Bild entfernen" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Entweder PNG oder JPG. Im Idealfall quadratisch, aber Sie können es zuschneiden." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Ihr Avatar wird von Ihrerem ursprünglichenKonto verwendet." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Abbrechen" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Als Profilbild wählen" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Sprache" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Verschlüsselung" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Login-Passwort" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Alle Dateien entschlüsseln" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Loginname" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Erstellen" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Admin-Passwort-Wiederherstellung" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Standard-Speicher" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Bitte Speicherkontingent eingeben (z.B.: \"512 MB\" oder \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Unbegrenzt" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Andere" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Benutzername" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Speicher" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "Vollständigen Namen ändern" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "Neues Passwort setzen" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Standard" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index ea78203877..b9b7b028d3 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -4,7 +4,7 @@ # # Translators: # a.tangemann , 2013 -# Marcel Kühlhorn , 2013 +# Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # JamFX , 2013 # traductor , 2013 @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,43 +92,43 @@ msgstr "Erfolg" msgid "Error" msgstr "Fehler" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Konfiguration OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Konfiguration nicht korrekt" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Konfiguration nicht vollständig" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Wähle Gruppen" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Objekt-Klassen auswählen" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Attribute auswählen" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Verbindungstest erfolgreich" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Verbindungstest fehlgeschlagen" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Löschung bestätigen" @@ -146,11 +146,11 @@ msgid_plural "%s users found" msgstr[0] "%s Benutzer gefunden" msgstr[1] "%s Benutzer gefunden" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Ungültiger Host" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Konnte die gewünschte Funktion nicht finden" @@ -168,8 +168,8 @@ msgstr "Hilfe" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Beschränke den Zugriff auf %s auf Gruppen, die die folgenden Kriterien erfüllen:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -204,8 +204,8 @@ msgid "groups found" msgstr "Gruppen gefunden" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Welches Attribut soll als Login-Name verwendet werden:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -272,8 +272,8 @@ msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem \"Erweitert\"-Reit #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Beschränke den Zugriff auf %s auf Benutzer, die die folgenden Kriterien erfüllen:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -415,41 +415,51 @@ msgstr "Gruppensucheigenschaften" msgid "Group-Member association" msgstr "Assoziation zwischen Gruppe und Benutzer" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Spezielle Eigenschaften" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kontingent-Feld" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Standard-Kontingent" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "in Bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-Mail-Feld" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Interner Benutzername" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -465,15 +475,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Interne Eigenschaften des Benutzers:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "UUID-Erkennung überschreiben" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -484,19 +494,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID-Attribute für Benutzer:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID-Attribute für Gruppen:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "LDAP-Benutzernamenzuordnung" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -510,10 +520,10 @@ msgid "" "experimental stage." msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Lösche LDAP-Benutzernamenzuordnung" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Lösche LDAP-Gruppennamenzuordnung" diff --git a/l10n/el/core.po b/l10n/el/core.po index b453459ddc..35c76a2a1b 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -8,7 +8,7 @@ # KAT.RAT12 , 2013 # Teogramm , 2013 # Teogramm , 2013 -# vkehayas , 2013 +# vkehayas , 2013-2014 # Wasilis , 2013 # Wasilis , 2013 # KAT.RAT12 , 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 20:50+0000\n" -"Last-Translator: vkehayas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,12 +26,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Αδυναμία αποστολής μηνύματος στους ακόλουθους χρήστες: %s" @@ -81,135 +76,139 @@ msgstr "Δεν υπάρχει προσωρινή φωτογραφία προφί msgid "No crop data provided" msgstr "Δεν δόθηκαν δεδομένα περικοπής" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Κυριακή" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Δευτέρα" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Τρίτη" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Τετάρτη" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Πέμπτη" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Παρασκευή" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Σάββατο" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Ιανουάριος" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Φεβρουάριος" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Μάρτιος" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Απρίλιος" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Μάϊος" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Ιούνιος" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Ιούλιος" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Αύγουστος" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Σεπτέμβριος" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Οκτώβριος" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Νοέμβριος" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:872 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:873 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n λεπτό πριν" msgstr[1] "%n λεπτά πριν" -#: js/js.js:874 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ώρα πριν" msgstr[1] "%n ώρες πριν" -#: js/js.js:875 +#: js/js.js:995 msgid "today" msgstr "σήμερα" -#: js/js.js:876 +#: js/js.js:996 msgid "yesterday" msgstr "χτες" -#: js/js.js:877 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ημέρα πριν" msgstr[1] "%n ημέρες πριν" -#: js/js.js:878 +#: js/js.js:998 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:879 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n μήνας πριν" msgstr[1] "%n μήνες πριν" -#: js/js.js:880 +#: js/js.js:1000 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:881 +#: js/js.js:1001 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:882 +#: js/js.js:1002 msgid "years ago" msgstr "χρόνια πριν" @@ -277,6 +276,26 @@ msgstr "({count} επιλέχθησαν)" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Κοινόχρηστα" @@ -285,12 +304,12 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Σφάλμα" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -302,123 +321,123 @@ msgstr "Σφάλμα κατά το σταμάτημα του διαμοιρασ msgid "Error while changing permissions" msgstr "Σφάλμα κατά την αλλαγή των δικαιωμάτων" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Διαμοιράστηκε με σας και με την ομάδα {group} του {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Διαμοιράστηκε με σας από τον {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Διαμοιρασμός με χρήστη ή ομάδα ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Διαμοιρασμός συνδέσμου" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Προστασία συνθηματικού" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Συνθηματικό" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Να επιτρέπεται η Δημόσια Αποστολή" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Αποστολή συνδέσμου με email " -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Αποστολή" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Ορισμός ημ. λήξης" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Ημερομηνία λήξης" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Διαμοιρασμός μέσω email:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "ομάδα" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "ειδοποίηση με email" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "δημιουργία" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "ενημέρωση" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "διαγραφή" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Το Email απεστάλη " -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Προειδοποίηση" @@ -465,11 +484,17 @@ msgstr "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ σ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s επαναφορά κωδικού πρόσβασης" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}" @@ -489,8 +514,8 @@ msgstr "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το ema msgid "You will receive a link to reset your password via Email." msgstr "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Όνομα χρήστη" @@ -534,7 +559,7 @@ msgstr "Προσωπικά" msgid "Users" msgstr "Χρήστες" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Εφαρμογές" @@ -644,49 +669,47 @@ msgstr "Για πληροφορίες πως να ρυθμίσετε ορθά τ msgid "Create an admin account" msgstr "Δημιουργήστε έναν λογαριασμό διαχειριστή" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Για προχωρημένους" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Φάκελος δεδομένων" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Ρύθμιση της βάσης δεδομένων" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "θα χρησιμοποιηθούν" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Ολοκλήρωση..." @@ -702,7 +725,7 @@ msgstr "Αυτή η εφαρμογή απαιτεί η JavaScript να είνα msgid "%s is available. Get more information on how to update." msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Αποσύνδεση" @@ -728,28 +751,28 @@ msgstr "Η διαδικασία επικύρωσης απέτυχε από τη msgid "Please contact your administrator." msgstr "Παρακαλώ επικοινωνήστε με τον διαχειριστή." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Ξεχάσατε το συνθηματικό σας;" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "απομνημόνευση" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Είσοδος" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Εναλλακτικές Συνδέσεις" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

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

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." @@ -777,7 +800,7 @@ msgstr "Ενημερώνοντας το ownCloud στην έκδοση %s,μπο #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Αυτή η εγκατάσταση ownCloud ενημερώνεται, το οποίο μπορεί να πάρει κάποιο χρόνο." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." diff --git a/l10n/el/files.po b/l10n/el/files.po index 84a38b5c6e..5b77d45642 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 20:50+0000\n" -"Last-Translator: vkehayas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,36 +32,48 @@ msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδ msgid "Could not move %s" msgstr "Αδυναμία μετακίνησης του %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Το όνομα αρχείου δεν μπορεί να είναι κενό." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Το όνομα αρχείου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. " +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Μη έγκυρη πηγή" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Σφάλμα κατά τη λήψη του %s στο %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Σφάλμα κατά τη δημιουργία του αρχείου" @@ -69,236 +81,231 @@ msgstr "Σφάλμα κατά τη δημιουργία του αρχείου" msgid "Folder name cannot be empty." msgstr "Το όνομα φακέλου δεν μπορεί να είναι κενό." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Το όνομα φακέλου δεν μπορεί να περιέχει \"/\". Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. " - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Σφάλμα δημιουργίας φακέλου" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Αδυναμία ορισμού καταλόγου αποστολής." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Μη έγκυρο Token" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Αρχεία" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Αδυναμία φόρτωσης {filename} καθώς είναι κατάλογος αρχείων ή έχει 0 bytes" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Αδυναμία λήψης αποτελέσματος από το διακομιστή." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "Η URL δεν πρέπει να είναι κενή" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Αδυναμία δημιουργίας αρχείου" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Αδυναμία δημιουργίας φακέλου" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Σφάλμα φόρτωσης URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Διαμοιρασμός" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Αδυναμία μετονομασίας αρχείου" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Σφάλμα διαγραφής αρχείου." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" msgstr[1] "%n αρχεία" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{Κατάλογοι αρχείων} και {αρχεία}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Ανέβασμα %n αρχείου" msgstr[1] "Ανέβασμα %n αρχείων" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' είναι μη έγκυρο όνομα αρχείου." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Σφάλμα" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Όνομα" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Τροποποιήθηκε" @@ -306,12 +313,12 @@ msgstr "Τροποποιήθηκε" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "Αδυναμία μετονομασίας του %s" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Μεταφόρτωση" @@ -347,69 +354,69 @@ msgstr "Μέγιστο μέγεθος για αρχεία ZIP" msgid "Save" msgstr "Αποθήκευση" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Νέο" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Νέο αρχείο κειμένου" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Αρχείο κειμένου" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Νέος κατάλογος" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Φάκελος" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Από σύνδεσμο" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Διαγραμμένα αρχεία" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Δεν έχετε δικαιώματα φόρτωσης ή δημιουργίας αρχείων εδώ" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Λήψη" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Διαγραφή" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 18e02898e3..bd28873a5e 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-28 01:55-0500\n" -"PO-Revision-Date: 2013-12-27 15:42+0000\n" -"Last-Translator: vkehayas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -85,18 +85,18 @@ msgid "" "administrator" msgstr "Άγνωστο σφάλμα, παρακαλώ ελέγξτε τις ρυθμίσεις συστήματος ή επικοινωνήστε με τον διαχειριστή σας " -#: hooks/hooks.php:62 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Προαπαιτούμενα που απουσιάζουν." -#: hooks/hooks.php:63 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Παρακαλώ επιβεβαιώστε ότι η PHP 5.3.3 ή νεότερη είναι εγκατεστημένη και ότι το OpenSSL μαζί με το PHP extension είναι ενεργοποιήμένο και έχει ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη." -#: hooks/hooks.php:281 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:" @@ -104,9 +104,9 @@ msgstr "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί γ msgid "Initial encryption started... This can take some time. Please wait." msgstr "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Γίνεται αποθήκευση..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index d380c50daa..f28c5b79d9 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: KAT.RAT12 \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Προσβαση παρασχέθηκε" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Dropbox " -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Παροχή πρόσβασης" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox και μυστικό." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:516 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:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Χρήστες" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Διαγραφή" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού Χώρου Χρήστη" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Πιστοποιητικά SSL root" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Εισαγωγή Πιστοποιητικού Root" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 1c70dfb1d6..a613ce60e3 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 21:00+0000\n" -"Last-Translator: vkehayas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,10 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Αυτός ο κοινόχρηστος φάκελος προστατεύεται με κωδικό" @@ -55,32 +59,16 @@ msgstr "ο διαμοιρασμός απενεργοποιήθηκε" msgid "For more info, please ask the person who sent this link." msgstr "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "Ο %s μοιράστηκε τον φάκελο %s μαζί σας" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "Ο %s μοιράστηκε το αρχείο %s μαζί σας" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Λήψη" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Μεταφόρτωση" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Ακύρωση μεταφόρτωσης" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Άμεσος σύνδεσμος" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 0d05dc752d..59bbb76892 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 21:15+0000\n" -"Last-Translator: vkehayas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,21 +19,25 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Αδύνατη η μόνιμη διαγραφή του %s" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Αδυναμία επαναφοράς %s" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Σφάλμα" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "επαναφέρθηκαν" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index f59d5fe610..34ae9cb538 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -4,14 +4,14 @@ # # Translators: # Efstathios Iosifidis , 2013 -# vkehayas , 2013 +# vkehayas , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-27 01:55-0500\n" -"PO-Revision-Date: 2013-12-26 13:10+0000\n" -"Last-Translator: vkehayas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,34 +19,34 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Η εφαρμογή \"%s\" δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση του ownCloud." -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "Δεν προδιορίστηκε όνομα εφαρμογής" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "Βοήθεια" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "Προσωπικά" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "Ρυθμίσεις" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" msgstr "Χρήστες" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "Διαχειριστής" @@ -63,15 +63,10 @@ msgstr "Άγνωστος τύπος αρχείου" msgid "Invalid image" msgstr "Μη έγκυρη εικόνα" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "αδυναμία ανοίγματος \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." @@ -94,74 +89,78 @@ msgid "" "administrator." msgstr "Παρακαλώ κάντε λήψη των αρχείων σε μικρότερα κομμάτια ή ζητήστε το από το διαχειριστή σας." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Δεν προσδιορίστηκε πηγή κατά την εγκατάσταση της εφαρμογής" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Δεν προσδιορίστηκε href κατά την εγκατάσταση της εφαρμογής μέσω http " -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Δεν προσδιορίστηκε μονοπάτι κατά την εγκατάσταση εφαρμογής από τοπικό αρχείο" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Συλλογές αρχείων τύπου %s δεν υποστηρίζονται" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Αποτυχία ανοίγματος συλλογής αρχείων κατά την εγκατάσταση εφαρμογής" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Η εφαρμογή δεν παρέχει αρχείο info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί λόγω μη-επιτρεπόμενου κώδικα μέσα στην Εφαρμογή" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή περιέχει την ετικέτα σωστή που δεν επιτρέπεται για μη-ενσωματωμένες εφαρμογές" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή η έκδοση στο info.xml/version δεν είναι η ίδια με την έκδοση που αναφέρεται στο κατάστημα εφαρμογών" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Ο κατάλογος εφαρμογών υπάρχει ήδη" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Δεν είναι δυνατόν να δημιουργηθεί ο φάκελος εφαρμογής. Παρακαλώ διορθώστε τις άδειες πρόσβασης. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Δεν ενεργοποιήθηκε η εφαρμογή" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Σφάλμα πιστοποίησης" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Το αναγνωριστικό έληξε. Παρακαλώ φορτώστε ξανά την σελίδα." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Αρχεία" @@ -201,8 +200,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -229,21 +228,21 @@ msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Απόρριψη αυτού του χρήστη από την MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Ο χρήστης '%s'@'%%' της MySQL υπάρχει ήδη" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Απόρριψη αυτού του χρήστη από την MySQL" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -270,66 +269,72 @@ msgstr "Εισάγετε όνομα χρήστη διαχειριστή." msgid "Set an admin password." msgstr "Εισάγετε συνθηματικό διαχειριστή." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Αδυναμία εύρεσης κατηγορίας \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n λεπτά πριν" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n ώρες πριν" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "σήμερα" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "χτες" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n ημέρες πριν" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "τελευταίο μήνα" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n μήνες πριν" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "τελευταίο χρόνο" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 84b51f5709..2401581ca6 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -10,13 +10,14 @@ # Teogramm , 2013 # vkehayas , 2013 # KAT.RAT12 , 2013 +# Γιάννης Ανθυμίδης , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 20:50+0000\n" -"Last-Translator: vkehayas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +25,48 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Κρυπτογράφηση" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Σφάλμα στην φόρτωση της λίστας από το App Store" @@ -120,62 +163,90 @@ msgstr "Το βασικό πλαίσιο δεν υποστηρίζει αλλα msgid "Unable to change password" msgstr "Αδυναμία αλλαγής συνθηματικού" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Τεκμηρίωση Χρήστη" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Ενημέρωση σε {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Απενεργοποίηση" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Ενεργοποίηση" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Παρακαλώ περιμένετε..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Σφάλμα κατά την απενεργοποίηση εισόδου" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Σφάλμα κατά την ενεργοποίηση της εφαρμογής" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Ενημέρωση..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογής" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Σφάλμα" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Ενημέρωση" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Ενημερώθηκε" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Επιλογή εικόνας προφίλ" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Γίνεται αποθήκευση..." - #: js/users.js:47 msgid "deleted" msgstr "διαγράφηκε" @@ -188,40 +259,40 @@ msgstr "αναίρεση" msgid "Unable to remove user" msgstr "Αδυναμία αφαίρεση χρήστη" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Ομάδες" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Ομάδα Διαχειριστών" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Διαγραφή" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Προειδοποίηση: Ο μητρικός κατάλογος του χρήστη \"{user}\" υπάρχει ήδη" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__όνομα_γλώσσας__" @@ -245,18 +316,42 @@ msgstr "Σφάλματα και καίρια ζητήματα" msgid "Fatal issues only" msgstr "Καίρια ζητήματα μόνο" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Προειδοποίηση Ασφαλείας" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -265,68 +360,68 @@ msgid "" "root." msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Ρύθμιση Προειδοποίησης" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Η ενοτητα 'fileinfo' λειπει" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. " -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Η έκδοση PHP είναι απαρχαιωμένη" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Η έκδοση PHP είναι απαρχαιωμένη. Συνιστούμε ανεπιφύλακτα να ενημερώσετε στην 5.3.8 ή νεώτερη καθώς παλαιότερες εκδόσεις είναι γνωστό πως περιέχουν σφάλματα. Είναι πιθανόν ότι αυτή η εγκατάσταση δεν λειτουργεί σωστά." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Η μετάφραση δεν δουλεύει" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Οι ρυθμίσεις τοποθεσίας συστήματος δεν μπορούν να οριστούν σε κάποιες που δεν υποστηρίζουν UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Συνιστούμε σοβαρά να εγκαταστήσετε τα απαιτούμενα πακέτα στο σύστημά σας ώστε να υποστηρίζεται μια από τις ακόλουθες ρυθμίσεις τοποθεσίας: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Η σύνδεση στο διαδίκτυο δεν δουλεύει" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -335,118 +430,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Αυτός ο διακομιστής δεν έχει ενεργή σύνδεση στο διαδίκτυο. Αυτό σημαίνει ότι κάποιες υπηρεσίες όπως η σύνδεση με εξωτερικούς αποθηκευτικούς χώρους, ειδοποιήσεις περί ενημερώσεων ή η εγκατάσταση 3ων εφαρμογών δεν θα είναι διαθέσιμες. Η πρόσβαση απομακρυσμένων αρχείων και η αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην είναι διαθέσιμες. Προτείνουμε να ενεργοποιήσετε την πρόσβαση στο διαδίκτυο για αυτόν το διακομιστή εάν θέλετε να χρησιμοποιήσετε όλες τις υπηρεσίες." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Επιτρέψτε κοινόχρηστο ανέβασμα" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL." +msgstr "Αναπτύχθηκε από την κοινότητα ownCloud. Ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" -msgstr "Πρόσθεστε τη Δικιά σας Εφαρμογή" +msgstr "Προσθέστε Δικιά σας Εφαρμογή" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Περισσότερες Εφαρμογές" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Επιλέξτε μια Εφαρμογή" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com" -#: templates/apps.php:41 -msgid "-licensed by " -msgstr "-άδεια από " +#: templates/apps.php:50 +msgid "See application website" +msgstr "" -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Τεκμηρίωση Χρήστη" +#: templates/apps.php:52 +msgid "-licensed by " +msgstr "Άδεια χρήσης από " #: templates/help.php:6 msgid "Administrator Documentation" @@ -506,14 +649,14 @@ msgstr "Λήψη της εφαρμογής για συγχρονισμό των #: templates/personal.php:19 msgid "Show First Run Wizard again" -msgstr "Προβολή Πρώτης Εκτέλεσης Οδηγού πάλι" +msgstr "Προβολή Οδηγού Πρώτης Εκτέλεσης ξανά" #: templates/personal.php:27 #, php-format msgid "You have used %s of the available %s" -msgstr "Χρησιμοποιήσατε %s από διαθέσιμα %s" +msgstr "Χρησιμοποιήσατε %s από τα %s διαθέσιμα" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Συνθηματικό" @@ -525,151 +668,149 @@ msgstr "Το συνθηματικό σας έχει αλλάξει" msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Πλήρες όνομα" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" -msgstr "Ηλ. ταχυδρομείο" +msgstr "Ηλεκτρονικό ταχυδρομείο" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" -msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" - -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού" +msgstr "Η διεύθυνση ηλ. ταχυδρομείου σας" #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Φωτογραφία προφίλ" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Μεταφόρτωση νέου" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Επιλογή νέου από τα Αρχεία" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Αφαίρεση εικόνας" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Ματαίωση" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Επιλογή εικόνας προφίλ" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "Χρήση αυτής της διεύθυνσης πρόσβαση των Αρχείων σας μέσω WebDAV" +msgstr "Χρησιμοποιήστε αυτήν την διεύθυνση για να αποκτήσετε πρόσβαση στα αρχεία σας μέσω WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Κρυπτογράφηση" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Συνθηματικό εισόδου" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Αποκρυπτογράφηση όλων των Αρχείων" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Όνομα Σύνδεσης" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Δημιουργία" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Κωδικός Επαναφοράς Διαχειριστή " -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Εισάγετε το συνθηματικό ανάκτησης ώστε να ανακτήσετε τα αρχεία χρηστών κατά την αλλαγή συνθηματικού" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Προκαθορισμένη Αποθήκευση " -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Απεριόριστο" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Άλλο" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Όνομα χρήστη" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Αποθήκευση" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "αλλαγή πλήρους ονόματος" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "επιλογή νέου κωδικού" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Προκαθορισμένο" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 636f833c27..99942475ba 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -4,14 +4,14 @@ # # Translators: # Marios Bekatoros <>, 2013 -# vkehayas , 2013 +# vkehayas , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 20:50+0000\n" -"Last-Translator: vkehayas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,7 +58,7 @@ msgstr "Δεν προσδιορίστηκαν δεδομένα" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "Αδυναμία ρύθμισης %s" #: js/settings.js:67 msgid "Deletion failed" @@ -88,43 +88,43 @@ msgstr "Επιτυχία" msgid "Error" msgstr "Σφάλμα" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Η διαμόρφωση είναι εντάξει" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Η διαμόρφωση είναι λανθασμένη" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Η διαμόρφωση είναι ελλιπής" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Επιλέξτε ομάδες" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Επιλογή κλάσης αντικειμένων" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Επιλογή χαρακτηριστικών" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Επιτυχημένη δοκιμαστική σύνδεση" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Αποτυχημένη δοκιμαστική σύνδεσης." -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Επιβεβαίωση Διαγραφής" @@ -142,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "%s χρήστης βρέθηκε" msgstr[1] "%s χρήστες βρέθηκαν" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Άκυρος εξυπηρετητής" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Αδυναμία εύρεσης επιθυμητου χαρακτηριστικού" @@ -164,8 +164,8 @@ msgstr "Βοήθεια" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Περιορισμός πρόσβασης %s σε ομάδες που ταιριάζουν αυτά τα κριτήρια:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -200,8 +200,8 @@ msgid "groups found" msgstr "ομάδες βρέθηκαν" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Ποια ιδιότητα θα χρησιμοποιηθεί ως όνομα σύνδεσης:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -268,8 +268,8 @@ msgstr "Μπορείτε να καθορίσετε το Base DN για χρήσ #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Περιορισμός πρόσβασης %s σε χρήστες που ταιριάζουν αυτά τα κριτήρια:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -334,7 +334,7 @@ msgstr "Απενεργοποιηση του κεντρικου διακομισ #: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "Σύνδεση μόνο με το διακομιστή-αντίγραφο." #: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" @@ -411,41 +411,51 @@ msgstr "Ομάδα Χαρακτηριστικων Αναζήτηση" msgid "Group-Member association" msgstr "Group-Member association" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Ειδικά Χαρακτηριστικά " -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Ποσοσταση πεδιου" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Προκαθισμενο πεδιο" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "σε bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Email τυπος" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας " -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Εσωτερικό Όνομα Χρήστη" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Εξ ορισμού, το εσωτερικό όνομα χρήστη θα δημιουργηθεί από το χαρακτηριστικό UUID. Αυτό βεβαιώνει ότι το όνομα χρήστη είναι μοναδικό και δεν χρειάζεται μετατροπή χαρακτήρων. Το εσωτερικό όνομα χρήστη έχει τον περιορισμό ότι μόνο αυτοί οι χαρακτήρες επιτρέπονται: [ a-zA-Z0-9_.@- ]. Οι άλλοι χαρακτήρες αντικαθίστανται με τους αντίστοιχους ASCII ή απλά παραλείπονται. Στις συγκρούσεις ένας αριθμός θα προστεθεί / αυξηθεί. Το εσωτερικό όνομα χρήστη χρησιμοποιείται για την αναγνώριση ενός χρήστη εσωτερικά. Είναι επίσης το προεπιλεγμένο όνομα για τον αρχικό φάκελο χρήστη. Αποτελεί επίσης μέρος των απομακρυσμένων διευθύνσεων URL, για παράδειγμα για όλες τις υπηρεσίες *DAV. Με αυτή τη ρύθμιση, η προεπιλεγμένη συμπεριφορά μπορεί να παρακαμφθεί. Για να επιτευχθεί μια παρόμοια συμπεριφορά όπως πριν το ownCloud 5 εισάγετε το χαρακτηριστικό του προβαλλόμενου ονόματος χρήστη στο παρακάτω πεδίο. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε νεώτερους (προστιθέμενους) χρήστες LDAP." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Ιδιότητα Εσωτερικού Ονόματος Χρήστη:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Παράκαμψη ανίχνευσης UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Από προεπιλογή, το χαρακτηριστικό UUID εντοπίζεται αυτόματα. Το χαρακτηριστικό UUID χρησιμοποιείται για την αναγνώριση χωρίς αμφιβολία χρηστών και ομάδων LDAP. Επίσης, το εσωτερικό όνομα χρήστη θα δημιουργηθεί με βάση το UUID, εφόσον δεν ορίζεται διαφορετικά ανωτέρω. Μπορείτε να παρακάμψετε τη ρύθμιση και να ορίσετε ένα χαρακτηριστικό της επιλογής σας. Θα πρέπει να βεβαιωθείτε ότι το χαρακτηριστικό της επιλογής σας μπορεί να ληφθεί για τους χρήστες και τις ομάδες και ότι είναι μοναδικό. Αφήστε το κενό για την προεπιλεγμένη λειτουργία. Οι αλλαγές θα έχουν ισχύ μόνο σε πρόσφατα αντιστοιχισμένους (προστιθέμενους) χρήστες και ομάδες LDAP." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Χαρακτηριστικό UUID για Χρήστες:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Χαρακτηριστικό UUID για Ομάδες:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Αντιστοίχιση Χρηστών Όνομα Χρήστη-LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "Τα ονόματα χρηστών χρησιμοποιούνται για την αποθήκευση και την ανάθεση (μετα) δεδομένων. Προκειμένου να προσδιοριστούν με ακρίβεια και να αναγνωρίστουν οι χρήστες, κάθε χρήστης LDAP θα έχει ένα εσωτερικό όνομα. Αυτό απαιτεί μια αντιστοίχιση του ονόματος χρήστη με το χρήστη LDAP. Το όνομα χρήστη που δημιουργήθηκε αντιστοιχίζεται στην UUID του χρήστη LDAP. Επιπροσθέτως, το DN αποθηκεύεται προσωρινά (cache) ώστε να μειωθεί η αλληλεπίδραση LDAP, αλλά δεν χρησιμοποιείται για την ταυτοποίηση. Αν το DN αλλάξει, οι αλλαγές θα βρεθούν. Το εσωτερικό όνομα χρήστη χρησιμοποιείται παντού. Η εκκαθάριση των αντιστοιχίσεων θα αφήσει κατάλοιπα παντού. Η εκκαθάριση των αντιστοιχίσεων δεν επηρεάζεται από τη διαμόρφωση, επηρεάζει όλες τις διαμορφώσεις LDAP! Μην διαγράψετε ποτέ τις αντιστοιχίσεις σε ένα λειτουργικό περιβάλλον παρά μόνο σε δοκιμές ή σε πειραματικό στάδιο." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Διαγραφή αντιστοίχησης Ονόματος Χρήστη LDAP-Χρήστη" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Διαγραφή αντιστοίχησης Ονόματος Ομάδας-LDAP Ομάδας" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index c0c1a7e88f..6815c6cf78 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,135 +68,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -269,6 +268,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -277,12 +296,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -294,123 +313,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Passcode" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -457,11 +476,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -481,8 +506,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -526,7 +551,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -636,49 +661,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -694,7 +717,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -720,27 +743,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 531771612f..37d98d43f5 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Download" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po index c181add627..1716bac96c 100644 --- a/l10n/en@pirate/files_encryption.po +++ b/l10n/en@pirate/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/en@pirate/files_external.po b/l10n/en@pirate/files_external.po index a7724b86be..0b58c4de7a 100644 --- a/l10n/en@pirate/files_external.po +++ b/l10n/en@pirate/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index eac6fd04d8..5209e66833 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -54,32 +58,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s shared the folder %s with you" - -#: templates/public.php:21 -#, php-format -msgid "%s shared the file %s with you" -msgstr "%s shared the file %s with you" - -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Download" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" +msgid "shared by %s" msgstr "" -#: templates/public.php:59 -msgid "Cancel upload" +#: templates/public.php:44 +#, php-format +msgid "Download %s" msgstr "" -#: templates/public.php:92 -msgid "No preview available for" -msgstr "No preview available for" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/en@pirate/files_trashbin.po b/l10n/en@pirate/files_trashbin.po index 416897b2d2..09c83d1aa9 100644 --- a/l10n/en@pirate/files_trashbin.po +++ b/l10n/en@pirate/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index 5d487df142..de836bfdfb 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "web services under your control" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index ec63820b82..c79fa268ac 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passcode" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/en@pirate/user_ldap.po b/l10n/en@pirate/user_ldap.po index 8749947a12..e236d0b96d 100644 --- a/l10n/en@pirate/user_ldap.po +++ b/l10n/en@pirate/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 5dc93a2d23..dc64455410 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s shared \"%s\" with you" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Couldn't send mail to following users: %s " @@ -73,135 +68,139 @@ msgstr "No temporary profile picture available, try again" msgid "No crop data provided" msgstr "No crop data provided" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Sunday" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Monday" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Tuesday" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Wednesday" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Thursday" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Friday" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Saturday" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "January" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "February" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "March" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "May" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "June" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "July" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "October" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "December" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Settings" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "seconds ago" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "today" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "yesterday" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n day ago" msgstr[1] "%n days ago" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "last month" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "months ago" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "last year" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "years ago" @@ -269,6 +268,26 @@ msgstr "({count} selected)" msgid "Error loading file exists template" msgstr "Error loading file exists template" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Shared" @@ -277,12 +296,12 @@ msgstr "Shared" msgid "Share" msgstr "Share" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Error whilst sharing" @@ -294,123 +313,123 @@ msgstr "Error whilst unsharing" msgid "Error while changing permissions" msgstr "Error whilst changing permissions" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Shared with you and the group {group} by {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Shared with you by {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Share with user or group …" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Share link" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Password protect" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Password" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Allow Public Upload" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Email link to person" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Send" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Set expiration date" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Expiration date" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Share via email:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "No people found" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "group" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Resharing is not allowed" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Shared in {item} with {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Unshare" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "notify by email" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "can edit" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "access control" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "create" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "update" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "delete" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "share" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Password protected" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email sent" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Warning" @@ -457,11 +476,17 @@ msgstr "The update was unsuccessful. Please report this issue to the Did you make sure your email/username was correct?" msgid "You will receive a link to reset your password via Email." msgstr "You will receive a link to reset your password via email." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Username" @@ -526,7 +551,7 @@ msgstr "Personal" msgid "Users" msgstr "Users" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -636,49 +661,47 @@ msgstr "For information how to properly configure your server, please see the admin account
" msgstr "Create an admin account" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Data folder" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configure the database" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "will be used" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Database user" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Database password" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Database name" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Database host" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Finish setup" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Finishing …" @@ -694,7 +717,7 @@ msgstr "This application requires JavaScript to be enabled for correct operation msgid "%s is available. Get more information on how to update." msgstr "%s is available. Get more information on how to update." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Log out" @@ -720,28 +743,28 @@ msgstr "Server side authentication failed!" msgid "Please contact your administrator." msgstr "Please contact your administrator." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Lost your password?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "remember" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Log in" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternative Logins" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 259e932c17..d6f784ee3e 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 14:50+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,36 +28,48 @@ msgstr "Could not move %s - File with this name already exists" msgid "Could not move %s" msgstr "Could not move %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "File name cannot be empty." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "The name %s is already used in the folder %s. Please choose a different name." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Not a valid source" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server is not allowed to open URLs, please check the server configuration" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Error whilst downloading %s to %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Error when creating the file" @@ -65,236 +77,231 @@ msgstr "Error when creating the file" msgid "Folder name cannot be empty." msgstr "Folder name cannot be empty." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Folder name must not contain \"/\". Please choose a different name." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Error when creating the folder" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Unable to set upload directory." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Invalid Token" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "No file was uploaded. Unknown error" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "There is no error, the file uploaded successfully" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "The uploaded file was only partially uploaded" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "No file was uploaded" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Missing a temporary folder" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Failed to write to disk" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Not enough storage available" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Upload failed. Could not get file info." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Upload failed. Could not find uploaded file" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Upload failed. Could not get file info." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Invalid directory." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Files" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Unable to upload {filename} as it is a directory or has 0 bytes" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Upload cancelled." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Could not get result from server." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File upload is in progress. Leaving the page now will cancel the upload." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL cannot be empty" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "In the home folder 'Shared' is a reserved file name" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} already exists" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Could not create file" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Could not create folder" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Error fetching URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Share" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Delete permanently" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Rename" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Pending" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Could not rename file" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "replaced {new_name} with {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "undo" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Error deleting file." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" msgstr[1] "Uploading %n files" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Your storage is full, files can not be updated or synced anymore!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Encryption App is enabled but your keys are not initialised, please log-out and log-in again" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Error moving file" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Error" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Name" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Size" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modified" @@ -302,12 +309,12 @@ msgstr "Modified" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Invalid folder name. Usage of 'Shared' is reserved." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s could not be renamed" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Upload" @@ -343,69 +350,69 @@ msgstr "Maximum input size for ZIP files" msgid "Save" msgstr "Save" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "New" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "New text file" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Text file" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "New folder" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Folder" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "From link" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Deleted files" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancel upload" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "You don’t have permission to upload or create files here" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Nothing in here. Upload something!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Download" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Delete" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload too large" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "The files you are trying to upload exceed the maximum size for file uploads on this server." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Files are being scanned, please wait." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Current scanning" diff --git a/l10n/en_GB/files_encryption.po b/l10n/en_GB/files_encryption.po index a9281d9215..ad5a0a24dd 100644 --- a/l10n/en_GB/files_encryption.po +++ b/l10n/en_GB/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 19:30+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,18 +81,18 @@ msgid "" "administrator" msgstr "Unknown error. Please check your system settings or contact your administrator" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Missing requirements." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Following users are not set up for encryption:" @@ -100,9 +100,9 @@ msgstr "Following users are not set up for encryption:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Initial encryption started... This can take some time. Please wait." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/en_GB/files_external.po b/l10n/en_GB/files_external.po index bbfe3b3d26..07fe6e5fbc 100644 --- a/l10n/en_GB/files_external.po +++ b/l10n/en_GB/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Access granted" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Error configuring Dropbox storage" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Grant access" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Please provide a valid Dropbox app key and secret." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Error configuring Google Drive storage" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." -#: lib/config.php:465 +#: lib/config.php:516 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 "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." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Users" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Delete" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Enable User External Storage" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL root certificates" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Import Root Certificate" diff --git a/l10n/en_GB/files_sharing.po b/l10n/en_GB/files_sharing.po index ba0d1d9fcc..bdd010dd53 100644 --- a/l10n/en_GB/files_sharing.po +++ b/l10n/en_GB/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:00+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "This share is password-protected" @@ -54,32 +58,16 @@ msgstr "sharing is disabled" msgid "For more info, please ask the person who sent this link." msgstr "For more info, please ask the person who sent this link." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s shared the folder %s with you" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s shared the file %s with you" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Download" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Upload" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Cancel upload" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "No preview available for" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Direct link" diff --git a/l10n/en_GB/files_trashbin.po b/l10n/en_GB/files_trashbin.po index 6da8b00bfe..89bfe4f41d 100644 --- a/l10n/en_GB/files_trashbin.po +++ b/l10n/en_GB/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Couldn't delete %s permanently" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Couldn't restore %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Error" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "restored" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nothing in here. Your recycle bin is empty!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Name" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Restore" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Deleted" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Delete" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Deleted Files" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 94418cfa7d..66ade3fc99 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "App \"%s\" can't be installed because it is not compatible with this version of ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "No app name specified" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Help" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Settings" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Users" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Failed to upgrade \"%s\"." @@ -62,15 +62,10 @@ msgstr "Unknown filetype" msgid "Invalid image" msgstr "Invalid image" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "web services under your control" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "cannot open \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download is turned off." @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "Please download the files separately in smaller chunks or kindly ask your administrator." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "No source specified when installing app" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "No href specified when installing app from http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "No path specified when installing app from local file" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Archives of type %s are not supported" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Failed to open archive when installing app" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "App does not provide an info.xml file" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "App can't be installed because of unallowed code in the App" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "App can't be installed because it is not compatible with this version of ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "App can't be installed because it contains the true tag which is not allowed for non shipped apps" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "App directory already exists" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Can't create app folder. Please fix permissions. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Application is not enabled" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Authentication error" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token expired. Please reload page." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Files" @@ -200,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "You need to enter either an existing account or the administrator." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +227,21 @@ msgstr "Offending command was: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,66 +268,72 @@ msgstr "Set an admin username." msgid "Set an admin password." msgstr "Set an admin password." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Please double check the installation guides." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Could not find category \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "seconds ago" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "today" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "yesterday" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n day go" msgstr[1] "%n days ago" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "last month" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "last year" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "years ago" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index d3903fba58..47b887b598 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.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-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 14:30+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Encryption" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Unable to load list from App Store" @@ -114,62 +156,90 @@ msgstr "Back-end doesn't support password change, but the user's encryption key msgid "Unable to change password" msgstr "Unable to change password" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "User Documentation" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Update to {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Disable" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Enable" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Please wait...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Error whilst disabling app" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Error whilst enabling app" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Updating...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Error whilst updating app" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Error" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Update" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Updated" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Select a profile picture" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decrypting files... Please wait, this can take some time." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Saving..." - #: js/users.js:47 msgid "deleted" msgstr "deleted" @@ -182,40 +252,40 @@ msgstr "undo" msgid "Unable to remove user" msgstr "Unable to remove user" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Groups" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Group Admin" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Delete" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "add group" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "A valid username must be provided" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Error creating user" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "A valid password must be provided" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Warning: Home directory for user \"{user}\" already exists" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -239,18 +309,42 @@ msgstr "Errors and fatal issues" msgid "Fatal issues only" msgstr "Fatal issues only" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Security Warning" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Setup Warning" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Please double check the installation guides." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' missing" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Your PHP version is outdated" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "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." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Locale not working" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "System locale can not be set to a one which supports UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "This means that there might be problems with certain characters in file names." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "We strongly suggest installing the required packages on your system to support one of the following locales: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Internet connection not working" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Execute one task with each page loaded" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use system's cron service to call the cron.php file every 15 minutes." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Sharing" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Enable Share API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Allow apps to use the Share API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Allow links" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Allow users to share items to the public with links" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Allow public uploads" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Allow users to enable others to upload into their publicly shared folders" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Allow resharing" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Allow users to share items shared with them again" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Allow users to share with anyone" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Allow users to only share with users in their groups" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Allow mail notification" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Allow user to send mail notification for shared files" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Security" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forces the clients to connect to %s via an encrypted connection." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Log level" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "More" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Less" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Developed by the ownCloud community, the source code is licensed under the AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Add your App" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "More Apps" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Select an App" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "See application page at apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licensed by " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "User Documentation" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Administrator Documentation" @@ -507,7 +649,7 @@ msgstr "Show First Run Wizard again" msgid "You have used %s of the available %s" msgstr "You have used %s of the available %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Password" @@ -519,151 +661,149 @@ msgstr "Your password was changed" msgid "Unable to change your password" msgstr "Unable to change your password" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Current password" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "New password" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Change password" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Full Name" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Your email address" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Fill in an email address to enable password recovery" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profile picture" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Upload new" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Select new from Files" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Remove image" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Either png or jpg. Ideally square but you will be able to crop it." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Your avatar is provided by your original account." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Abort" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Choose as profile image" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Language" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Help translate" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Use this address to access your Files via WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Encryption" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "The encryption app is no longer enabled, please decrypt all your files" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Log-in password" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Decrypt all Files" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Login Name" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Create" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Admin Recovery Password" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Enter the recovery password in order to recover the user's files during password change" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Default Storage" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Unlimited" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Other" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Username" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Storage" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "change full name" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "set new password" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Default" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index b41d0ae021..ddb78a33b5 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,43 +87,43 @@ msgstr "Success" msgid "Error" msgstr "Error" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Configuration OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Configuration incorrect" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Configuration incomplete" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Select groups" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Select object classes" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Select attributes" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Connection test succeeded" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Connection test failed" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Do you really want to delete the current Server Configuration?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Confirm Deletion" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "%s user found" msgstr[1] "%s users found" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Invalid Host" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Could not find the desired feature" @@ -163,8 +163,8 @@ msgstr "Help" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -199,8 +199,8 @@ msgid "groups found" msgstr "groups found" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "What attribute should be used as login name:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -267,8 +267,8 @@ msgstr "You can specify Base DN for users and groups in the Advanced tab" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -410,41 +410,51 @@ msgstr "Group Search Attributes" msgid "Group-Member association" msgstr "Group-Member association" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Special Attributes" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Quota Field" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Quota Default" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "in bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Email Field" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "User Home Folder Naming Rule" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Internal Username" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +470,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Internal Username Attribute:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Override UUID detection" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +489,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "By default, the UUID attribute is automatically detected. The UUID attribute is used to unambiguously identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID Attribute for Users:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID Attribute for Groups:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Username-LDAP User Mapping" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +515,10 @@ msgid "" "experimental stage." msgstr "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Clear Username-LDAP User Mapping" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Clear Groupname-LDAP Group Mapping" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 66aa1f14f4..5a522bd177 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -4,14 +4,14 @@ # # Translators: # Baptiste , 2013 -# Mariano , 2013 +# Mariano , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s kunhavigis “%s” kun vi" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -39,20 +34,20 @@ msgstr "" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Ĝisdatiĝis datumbazo" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Ĝisdatigante la dosierkaŝmemoron, ĉi tio povas daŭri tro longe..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Ĝisdatiĝis dosierkaŝmemoro" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% plenumiĝis ..." #: avatar/controller.php:62 msgid "No image or file provided" @@ -60,11 +55,11 @@ msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Ne konatas dosiertipo" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Ne validas bildo" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -74,135 +69,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "dimanĉo" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "lundo" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "mardo" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "merkredo" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "ĵaŭdo" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "vendredo" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "sabato" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januaro" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februaro" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Marto" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Aprilo" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Majo" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Junio" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Julio" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Aŭgusto" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Septembro" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktobro" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Novembro" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Decembro" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Agordo" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "antaŭ %n minuto" +msgstr[1] "antaŭ %n minutoj" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "antaŭ %n horo" +msgstr[1] "antaŭ %n horoj" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "hodiaŭ" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "antaŭ %n tago" +msgstr[1] "antaŭ %n tagoj" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "lastamonate" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "antaŭ %n monato" +msgstr[1] "antaŭ %n monatoj" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "lastajare" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "jaroj antaŭe" @@ -233,22 +232,22 @@ msgstr "" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} dosierkonflikto" +msgstr[1] "{count} dosierkonfliktoj" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Unu dosierkonflikto" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Kiujn dosierojn vi volas konservi?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Se vi elektos ambaŭ eldonojn, la kopiota dosiero havos numeron aldonitan al sia nomo." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -260,16 +259,36 @@ msgstr "" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(ĉiuj elektitas)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} elektitas)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Dividita" @@ -278,12 +297,12 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Eraro" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -295,123 +314,123 @@ msgstr "Eraro dum malkunhavigo" msgid "Error while changing permissions" msgstr "Eraro dum ŝanĝo de permesoj" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Kunhavigita kun vi kaj la grupo {group} de {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Kunhavigita kun vi de {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" -msgstr "" +msgstr "Kunhavigi kun uzanto aŭ grupo..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "Konhavigi ligilon" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Pasvorto" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Retpoŝti la ligilon al ulo" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Sendi" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Agordi limdaton" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Limdato" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Kunhavigi per retpoŝto:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupo" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" -msgstr "" +msgstr "avizi per retpoŝto" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "povas redakti" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "krei" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "forigi" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "kunhavigi" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Averto" @@ -421,7 +440,7 @@ msgstr "Ne indikiĝis tipo de la objekto." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Enigu novan" #: js/tags.js:27 msgid "Delete" @@ -433,7 +452,7 @@ msgstr "Aldoni" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Redakti etikedojn" #: js/tags.js:57 msgid "Error loading dialog template: {error}" @@ -441,11 +460,11 @@ msgstr "" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Neniu etikedo elektitas por forigo." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Bonvolu reŝargi la paĝon." #: js/update.js:17 msgid "" @@ -458,11 +477,17 @@ msgstr "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la Ĉu vi certiĝis, ke via retpoŝto/uzantonomo msgid "You will receive a link to reset your password via Email." msgstr "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Uzantonomo" @@ -527,7 +552,7 @@ msgstr "Persona" msgid "Users" msgstr "Uzantoj" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplikaĵoj" @@ -541,23 +566,23 @@ msgstr "Helpo" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Eraris ŝargo de etikedoj" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "La etikedo jam ekzistas" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Eraris forigo de etikedo(j)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Eraris etikedado" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Eraris maletikedado" #: tags/controller.php:97 msgid "Error favoriting" @@ -606,7 +631,7 @@ msgstr "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Bonvolu ĝisdatigi vian PHP-instalon por uzi %s sekure." #: templates/installation.php:33 msgid "" @@ -637,51 +662,49 @@ msgstr "" msgid "Create an admin account" msgstr "Krei administran konton" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Progresinta" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datuma dosierujo" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Agordi la datumbazon" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "estos uzata" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Fini la instalon" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" -msgstr "" +msgstr "Finante..." #: templates/layout.user.php:40 msgid "" @@ -695,7 +718,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Elsaluti" @@ -719,29 +742,29 @@ msgstr "" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Bonvolu kontakti vian administranton." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "memori" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Ensaluti" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternativaj ensalutoj" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 @@ -760,7 +783,7 @@ msgstr "" #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Dankon pro via pacienco." #: templates/update.admin.php:3 #, php-format diff --git a/l10n/eo/files.po b/l10n/eo/files.po index cb3d5db559..0619a45768 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,36 +28,48 @@ msgstr "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas" msgid "Could not move %s" msgstr "Ne eblis movi %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Dosiernomo devas ne malpleni." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "La dosieronomo ne devas enhavi “/”. Bonvolu elekti malsaman nomon." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "La nomo %s jam uziĝas en la dosierujo %s. Bonvolu elekti malsaman nomon." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Nevalida fonto" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Eraris elŝuto de %s al %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Eraris la kreo de la dosiero" @@ -65,236 +77,231 @@ msgstr "Eraris la kreo de la dosiero" msgid "Folder name cannot be empty." msgstr "La dosierujnomo ne povas malpleni." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "La dosiernomo ne devas enhavi “/”. Bonvolu elekti malsaman nomon." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Eraris la kreo de la dosierujo" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Ne povis agordiĝi la alŝuta dosierujo." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "la alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Nevalida dosierujo." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Dosieroj" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Ne povis alŝutiĝi {filename} ĉar ĝi estas dosierujo aŭ ĝi havas 0 duumokojn" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Ne haveblas sufiĉa spaco" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Ne povis ekhaviĝi rezulto el la servilo." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "La URL ne povas malpleni" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Ne povis kreiĝi dosiero" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Ne povis kreiĝi dosierujo" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Kunhavigi" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Ne povis alinomiĝi dosiero" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "malfari" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosierujo" msgstr[1] "%n dosierujoj" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosiero" msgstr[1] "%n dosieroj" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} kaj {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Alŝutatas %n dosiero" msgstr[1] "Alŝutatas %n dosieroj" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' ne estas valida dosiernomo." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Via memoro preskaŭ plenas ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Eraris movo de dosiero" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Eraro" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nomo" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Grando" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modifita" @@ -302,12 +309,12 @@ msgstr "Modifita" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s ne povis alinomiĝi" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Alŝuti" @@ -343,69 +350,69 @@ msgstr "Maksimuma enirgrando por ZIP-dosieroj" msgid "Save" msgstr "Konservi" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nova" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Tekstodosiero" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nova dosierujo" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Dosierujo" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "El ligilo" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Forigitaj dosieroj" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Vi ne havas permeson alŝuti aŭ krei dosierojn ĉi tie" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Forigi" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Alŝuto tro larĝa" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index a6984c3576..7fcbd73bde 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,18 +81,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Mankas neproj." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -100,9 +100,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Konservante..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 15d4809452..da6e5db602 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Alirpermeso donita" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Eraro dum agordado de la memorservo Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Doni alirpermeson" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Eraro dum agordado de la memorservo Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Uzantoj" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Forigi" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Kapabligi malenan memorilon de uzanto" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Permesi al uzantoj surmeti siajn proprajn malenajn memorilojn" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Radikaj SSL-atestoj" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Enporti radikan ateston" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 98301b5390..499d081bc4 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Ĉi tiu kunhavigo estas protektata per pasvorto" @@ -54,32 +58,16 @@ msgstr "kunhavigo malkapablas" msgid "For more info, please ask the person who sent this link." msgstr "Por plia informo, bonvolu peti al la persono, kiu sendis ĉi tiun ligilon." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s kunhavigis la dosierujon %s kun vi" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s kunhavigis la dosieron %s kun vi" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Elŝuti" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Alŝuti" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Nuligi alŝuton" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Ne haveblas antaŭvido por" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Direkta ligilo" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 2417a2e8c6..03f92eb24a 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Ne povis foriĝi %s por ĉiam" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Ne povis restaŭriĝi %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Eraro" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "restaŭrita" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nenio estas ĉi tie. Via rubujo malplenas!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nomo" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Restaŭri" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Forigita" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Forigi" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Forigitaj dosieroj" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index cceb200d02..90ce278d5a 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,59 +18,54 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Helpo" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Persona" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Agordo" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Uzantoj" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administranto" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Ne konatas dosiertipo" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Ne validas bildo" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "La aplikaĵo ne estas kapabligita" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Aŭtentiga eraro" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dosieroj" @@ -200,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "La uzantonomo de MySQL aŭ la pasvorto ne validas" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +227,21 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "La uzanto de MySQL “%s”@“localhost” jam ekzistas." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Forigi ĉi tiun uzanton el MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "La uzanto de MySQL “%s”@“%%” jam ekzistas" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Forigi ĉi tiun uzanton el MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,66 +268,72 @@ msgstr "Starigi administran uzantonomon." msgid "Set an admin password." msgstr "Starigi administran pasvorton." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Bonvolu duoble kontroli la gvidilon por instalo." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ne troviĝis kategorio “%s”" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "antaŭ %n minutoj" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "antaŭ %n horoj" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "hodiaŭ" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "hieraŭ" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "antaŭ %n tagoj" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "lastamonate" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "antaŭ %n monatoj" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "lastajare" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 18451d02c5..4a80a2b315 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Ĉifrado" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Ne eblis ŝargi liston el aplikaĵovendejo" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Dokumentaro por uzantoj" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Malkapabligi" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Kapabligi" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Eraro" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Ĝisdatigi" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Konservante..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "malfari" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupoj" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupadministranto" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Forigi" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Esperanto" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Sekureca averto" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Kunhavigo" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Kapabligi API-on por Kunhavigo" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Kapabligi ligilojn" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Kapabligi rekunhavigon" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Pli" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Malpli" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Eldono" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Ellaborita de la komunumo de ownCloud, la fontokodo publikas laŭ la permesilo AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Aldonu vian aplikaĵon" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Pli da aplikaĵoj" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Elekti aplikaĵon" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-permesilhavigita de " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Dokumentaro por uzantoj" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Dokumentaro por administrantoj" @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "Vi uzas %s el la haveblaj %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Pasvorto" @@ -518,151 +660,149 @@ msgstr "Via pasvorto ŝanĝiĝis" msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profila bildo" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Ĉifrado" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Krei" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Defaŭlta konservejo" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Senlima" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Alia" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Uzantonomo" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Konservejo" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Defaŭlta" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 8ba0c5153c..1251e19bb3 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,43 +87,43 @@ msgstr "Sukceso" msgid "Error" msgstr "Eraro" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Elekti grupojn" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Elekti objektoklasojn" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Elekti atribuojn" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Provo de konekto sukcesis" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Provo de konekto malsukcesis" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Konfirmi forigon" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "%s uzanto troviĝis" msgstr[1] "%s uzanto troviĝis" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Nevalida gastigo" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -163,7 +163,7 @@ msgstr "Helpo" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -199,7 +199,7 @@ msgid "groups found" msgstr "grupoj trovitaj" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -267,7 +267,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -410,41 +410,51 @@ msgstr "Atribuoj de gruposerĉo" msgid "Group-Member association" msgstr "Asocio de grupo kaj membro" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Specialaj atribuoj" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kampo de kvoto" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "duumoke" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Kampo de retpoŝto" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lasu malplena por uzantonomo (defaŭlto). Alie, specifu LDAP/AD-atributon." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Ena uzantonomo" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +470,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atribuo de ena uzantonomo:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +489,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID-atribuo por uzantoj:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID-atribuo por grupoj:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +515,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/es/core.po b/l10n/es/core.po index ed95b47d7f..67333b8c6d 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -5,7 +5,7 @@ # Translators: # Art O. Pal , 2013 # ggam , 2013 -# I Robot , 2013 +# I Robot, 2013 # juanman , 2013 # msoko , 2013 # pablomillaquen , 2013 @@ -13,15 +13,17 @@ # Rubén del Campo , 2013 # saskarip , 2013 # saskarip , 2013 +# xsergiolpx , 2014 # iGerli , 2013 +# victormce , 2014 # xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:10+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,12 +31,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s ha compatido »%s« contigo" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" @@ -84,135 +81,139 @@ msgstr "No hay disponible una imagen temporal de perfil, pruebe de nuevo" msgid "No crop data provided" msgstr "No se proporcionó datos del recorte" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Domingo" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Lunes" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Martes" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Miércoles" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Jueves" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Viernes" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sábado" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Enero" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Febrero" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Marzo" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Abril" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mayo" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Junio" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Julio" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Agosto" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Septiembre" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Octubre" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Noviembre" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Diciembre" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Ajustes" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "hoy" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ayer" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "el mes pasado" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "meses antes" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "el año pasado" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "años antes" @@ -280,6 +281,26 @@ msgstr "({count} seleccionados)" msgid "Error loading file exists template" msgstr "Error cargando plantilla de archivo existente" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartido" @@ -288,12 +309,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Error al compartir" @@ -305,123 +326,123 @@ msgstr "Error al dejar de compartir" msgid "Error while changing permissions" msgstr "Error al cambiar permisos" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido contigo y el grupo {group} por {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Compartido contigo por {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Compartido con el usuario o con el grupo ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Enlace compartido" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Protección con contraseña" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Contraseña" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Enviar enlace por correo electrónico a una persona" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Enviar" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Establecer fecha de caducidad" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Fecha de caducidad" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Compartir por correo electrónico:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupo" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" -msgstr "notificar al usuario por correo electrónico" +msgstr "notificar por correo electrónico" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "puede editar" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "control de acceso" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "crear" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "actualizar" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "eliminar" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "compartir" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Precaución" @@ -468,11 +489,17 @@ msgstr "La actualización ha fracasado. Por favor, informe de este problema a la msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s restablecer contraseña" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Utilice el siguiente enlace para restablecer su contraseña: {link}" @@ -492,8 +519,8 @@ msgstr "La petición ha fallado!
¿Está seguro de que su dirección de cor msgid "You will receive a link to reset your password via Email." msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nombre de usuario" @@ -537,7 +564,7 @@ msgstr "Personal" msgid "Users" msgstr "Usuarios" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplicaciones" @@ -647,49 +674,47 @@ msgstr "Para información de cómo configurar apropiadamente su servidor, por fa msgid "Create an admin account" msgstr "Crear una cuenta de administrador" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avanzado" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Directorio de datos" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Finalizando..." @@ -705,7 +730,7 @@ msgstr "Esta aplicación requiere que se habilite JavaScript para su correcta op msgid "%s is available. Get more information on how to update." msgstr "%s esta disponible. Obtener mas información de como actualizar." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Salir" @@ -731,28 +756,28 @@ msgstr "La autenticación a fallado en el servidor." msgid "Please contact your administrator." msgstr "Por favor, contacte con el administrador." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "¿Ha perdido su contraseña?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "recordar" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Entrar" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Inicios de sesión alternativos" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Hola:

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/es/files.po b/l10n/es/files.po index 0cfd42968e..0cbbc43e07 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,13 +12,14 @@ # qdneren , 2013 # Rubén del Campo , 2013 # saskarip , 2013 +# victormce , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:10+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,36 +37,48 @@ msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" -msgstr "No es un origen válido" +msgstr "No es una fuente válida" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "El servidor no puede acceder URLs; revise la configuración del servidor." +msgstr "La configuración del servidor no le permite abrir URLs, revísela." -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Error al crear el archivo" @@ -73,236 +86,231 @@ msgstr "Error al crear el archivo" msgid "Folder name cannot be empty." msgstr "El nombre de la carpeta no puede estar vacío." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Error al crear la carpeta." -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Incapaz de crear directorio de subida." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Actualización fallida. No se pudo obtener información del archivo." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Actualización fallida. No se pudo obtener información del archivo." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Directorio inválido." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Archivos" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "No hay suficiente espacio disponible" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" +msgstr "En la carpeta home, no se puede usar 'Shared'" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Error al descargar URL." -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "deshacer" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." -msgstr "Error borrando el archivo." +msgstr "Error al borrar el archivo" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' no es un nombre de archivo válido." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "La app de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "La clave privada no es válida para la app de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Error moviendo archivo" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Error" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nombre" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Tamaño" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificado" @@ -310,12 +318,12 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Subir" @@ -351,69 +359,69 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" msgid "Save" msgstr "Guardar" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nuevo" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nuevo archivo de texto" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nueva carpeta" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "No tienes permisos para subir o crear archivos aquí." -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Descargar" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index cb14c25e46..33122c4594 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 22:20+0000\n" -"Last-Translator: Raul Fernandez Garcia \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,18 +92,18 @@ msgid "" "administrator" msgstr "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Requisitos incompletos." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" @@ -111,9 +111,9 @@ msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Encriptación iniciada..... Esto puede tomar un tiempo. Por favor espere." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Guardando..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 503d6f1758..142a2752a0 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Rubén del Campo \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Acceso concedido" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Error configurando el almacenamiento de Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Conceder acceso" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:465 +#: lib/config.php:516 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 "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Usuarios" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Habilitar almacenamiento externo de usuario" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Permitir a los usuarios montar su propio almacenamiento externo" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Certificados raíz SSL" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importar certificado raíz" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index e4fa41f4c8..3d27001363 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Rubén del Campo \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,10 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Este elemento compartido esta protegido por contraseña" @@ -57,32 +61,16 @@ msgstr "compartir está desactivado" msgid "For more info, please ask the person who sent this link." msgstr "Para mayor información, contacte a la persona que le envió el enlace." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s compartió la carpeta %s contigo" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s compartió el fichero %s contigo" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Descargar" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Subir" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Cancelar subida" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "No hay vista previa disponible para" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Enlace directo" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 186909f350..35032c9ba1 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,44 +19,48 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "No se puede eliminar %s permanentemente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "No se puede restaurar %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Error" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "recuperado" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada aquí. ¡Tu papelera esta vacía!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nombre" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Eliminado" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Eliminar" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Archivos Eliminados" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 6e80e0b1fe..8f9007cbae 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -7,14 +7,15 @@ # pablomillaquen , 2013 # Raul Fernandez Garcia , 2013 # Rubén del Campo , 2013 +# victormce , 2014 # xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,38 +23,38 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "No se ha especificado nombre de la aplicación" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Ayuda" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Ajustes" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Usuarios" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administración" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." @@ -66,15 +67,10 @@ msgstr "Tipo de archivo desconocido" msgid "Invalid image" msgstr "Imagen inválida" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Servicios web bajo su control" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "No se puede abrir \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." @@ -95,76 +91,80 @@ msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador." +msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "No se ha especificado origen cuando se ha instalado la aplicación" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "No href especificado cuando se ha instalado la aplicación" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Sin path especificado cuando se ha instalado la aplicación desde el fichero local" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Ficheros de tipo %s no son soportados" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Fallo de apertura de fichero mientras se instala la aplicación" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "La aplicación no suministra un fichero info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "La aplicación no puede ser instalada por tener código no autorizado en la aplicación" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "La aplicación no se puede instalar porque contiene la etiqueta\n\ntrue\n\nque no está permitida para aplicaciones no distribuidas" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "El directorio de la aplicación ya existe" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Error de autenticación" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recarga la página." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Archivos" @@ -204,8 +204,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Usuario y/o contraseña de MySQL no válidos" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -232,21 +232,21 @@ msgstr "Comando infractor: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Usuario MySQL '%s'@'localhost' ya existe." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Eliminar este usuario de MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Usuario MySQL '%s'@'%%' ya existe" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Eliminar este usuario de MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -273,66 +273,72 @@ msgstr "Configurar un nombre de usuario del administrador" msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "No puede encontrar la categoria \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "hace segundos" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "hoy" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ayer" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "mes pasado" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "año pasado" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 6ff8c4bf8e..a8855e8819 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -15,13 +15,14 @@ # Rubén del Campo , 2013 # saskarip , 2013 # scambra , 2013 +# victormce , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 15:41+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,6 +30,48 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Cifrado" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "No se pudo cargar la lista desde el App Store" @@ -125,62 +168,90 @@ msgstr "El back-end no soporta cambios de contraseña, pero la clave de cifrado msgid "Unable to change password" msgstr "No se ha podido cambiar la contraseña" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentación de usuario" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Actualizado a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Activar" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Espere, por favor...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Error mientras se desactivaba la aplicación" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Error mientras se activaba la aplicación" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Error mientras se actualizaba la aplicación" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Error" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Actualizar" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Guardando..." - #: js/users.js:47 msgid "deleted" msgstr "eliminado" @@ -193,40 +264,40 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "Imposible eliminar al usuario" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupos" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Administrador del Grupo" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Eliminar" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "añadir Grupo" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña válida" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Castellano" @@ -250,18 +321,42 @@ msgstr "Errores y problemas fatales" msgid "Fatal issues only" msgstr "Problemas fatales solamente" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -270,68 +365,68 @@ msgid "" "root." msgstr "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Advertencia de configuración" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "No se ha encontrado el módulo \"fileinfo\"" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" -msgstr "Su versión de PHP ha caducado" +msgstr "Su versión de PHP no está actualizada" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "No se puede escoger una configuración regional que soporte UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. " -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "La conexión a Internet no está funcionando" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -340,118 +435,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Registro" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Más" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Menos" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Añade tu aplicación" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Más aplicaciones" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Seleccionar una aplicación" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Ver la página de aplicaciones en apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licencia otorgada por " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentación de usuario" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentación de administrador" @@ -518,7 +661,7 @@ msgstr "Mostrar nuevamente el Asistente de ejecución inicial" msgid "You have used %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contraseña" @@ -530,151 +673,149 @@ msgstr "Su contraseña ha sido cambiada" msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Escriba una dirección de correo electrónico para restablecer la contraseña" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Subir otra" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Seleccionar otra desde Archivos" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Borrar imagen" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proporcionado por su cuenta original." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Cancelar" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Seleccionar como imagen de perfil" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Idioma" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "Utilice esta dirección para acceder a sus archivos vía WebDAV" +msgstr "Utilice esta dirección paraacceder a sus archivos a través de WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Cifrado" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Descifrar archivos" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Nombre de usuario" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Crear" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Recuperación de la contraseña de administración" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña." -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Almacenamiento predeterminado" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Otro" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nombre de usuario" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Almacenamiento" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "cambiar el nombre completo" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "establecer nueva contraseña" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Predeterminado" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 4f999d4127..a5a4dc910b 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -9,14 +9,15 @@ # ordenet , 2013 # Rodrigo Rodríguez , 2013 # Rubén del Campo , 2013 +# victormce , 2014 # xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,43 +94,43 @@ msgstr "Éxito" msgid "Error" msgstr "Error" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" -msgstr "Configuración OK" +msgstr "Configuración Correcta" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Configuración Incorrecta" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Seleccionar la clase de objeto" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Confirmar eliminación" @@ -147,11 +148,11 @@ msgid_plural "%s users found" msgstr[0] "Usuario %s encontrado" msgstr[1] "Usuarios %s encontrados" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." @@ -169,8 +170,8 @@ msgstr "Ayuda" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Limitar el acceso a %s a los grupos que cumplan este criterio:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -205,8 +206,8 @@ msgid "groups found" msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Que atributo debe ser usado como login:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -273,8 +274,8 @@ msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanz #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -416,41 +417,51 @@ msgstr "Atributos de busqueda de grupo" msgid "Group-Member association" msgstr "Asociación Grupo-Miembro" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atributos especiales" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Cuota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Cuota por defecto" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-mail" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Regla para la carpeta Home de usuario" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Nombre de usuario interno" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -466,15 +477,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atributo Nombre de usuario Interno:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Sobrescribir la detección UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -485,19 +496,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Atributo UUID para usuarios:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Atributo UUID para Grupos:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -511,10 +522,10 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 598b6b7cf1..4305bbaa50 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -4,13 +4,14 @@ # # Translators: # cjtess , 2013 +# cnngimenez, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +19,10 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s compartió \"%s\" con vos" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "No se pudieron mandar correos a los siguientes usuarios: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -55,7 +51,7 @@ msgstr "... %d%% hecho ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "No se ha proveído de una imágen o archivo." #: avatar/controller.php:81 msgid "Unknown filetype" @@ -67,141 +63,145 @@ msgstr "Imagen inválida" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "No hay una imágen temporal del perfil disponible, intente de nuevo" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "No se proveyeron datos de recorte" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Domingo" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Lunes" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Martes" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Miércoles" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Jueves" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Viernes" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sábado" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "enero" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "febrero" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "marzo" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "abril" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "mayo" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "junio" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "julio" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "agosto" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "septiembre" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "octubre" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "noviembre" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "diciembre" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Configuración" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "hoy" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ayer" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "el mes pasado" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "meses atrás" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "el año pasado" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "años atrás" @@ -211,7 +211,7 @@ msgstr "Elegir" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Error cargando la plantilla del selector de archivo: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -227,27 +227,27 @@ msgstr "Aceptar" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Error cargando la plantilla del mensaje: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "un archivo en conflicto" +msgstr[1] "{count} archivos en conflicto" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Un archivo en conflicto" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "¿Qué archivos deseas retener?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Si tu seleccionas ambas versiones, el archivo copiado tendrá un número agregado a su nombre." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -255,18 +255,38 @@ msgstr "Cancelar" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(todos están seleccionados)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} seleccionados)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" +msgstr "Error cargando la plantilla de archivo existente" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" msgstr "" #: js/share.js:51 js/share.js:66 js/share.js:106 @@ -277,12 +297,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Error al compartir" @@ -294,123 +314,123 @@ msgstr "Error en al dejar de compartir" msgid "Error while changing permissions" msgstr "Error al cambiar permisos" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido con vos y el grupo {group} por {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Compartido con vos por {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" -msgstr "" +msgstr "Compartir con usuario o grupo ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "Compartir vínculo" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Contraseña" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Enviar el enlace por e-mail." -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Mandar" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Asignar fecha de vencimiento" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Fecha de vencimiento" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Compartir a través de e-mail:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupo" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" -msgstr "" +msgstr "notificar por correo" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "podés editar" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "control de acceso" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "crear" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "actualizar" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "borrar" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "compartir" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "e-mail mandado" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Atención" @@ -420,7 +440,7 @@ msgstr "El tipo de objeto no está especificado. " #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Entrar nuevo" #: js/tags.js:27 msgid "Delete" @@ -432,19 +452,19 @@ msgstr "Agregar" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Editar etiquetas" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Error cargando la plantilla de dialogo: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "No se han seleccionado etiquetas para eliminar." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Por favor, recargue la página." #: js/update.js:17 msgid "" @@ -457,11 +477,17 @@ msgstr "La actualización no pudo ser completada. Por favor, reportá el inconve msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización fue exitosa. Estás siendo redirigido a ownCloud." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s restablecer contraseña" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Usá este enlace para restablecer tu contraseña: {link}" @@ -481,8 +507,8 @@ msgstr "¡Error en el pedido!
¿Estás seguro de que tu dirección de corre msgid "You will receive a link to reset your password via Email." msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nombre de usuario" @@ -526,7 +552,7 @@ msgstr "Personal" msgid "Users" msgstr "Usuarios" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -540,31 +566,31 @@ msgstr "Ayuda" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Error cargando las etiquetas" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "La etiqueta ya existe" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Error borrando etiquetas(s)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Error al etiquetar" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Error al sacar la etiqueta" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Error al favorecer" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Error al desfavorecer" #: templates/403.php:12 msgid "Access forbidden" @@ -582,16 +608,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "¡Hola!\n\nsólo te quería decir que %s acaba de compartir %s contigo.\nVerlo: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "El compartir expirará en %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "¡Saludos!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -636,65 +662,63 @@ msgstr "Para información sobre cómo configurar apropiadamente tu servidor, por msgid "Create an admin account" msgstr "Crear una cuenta de administrador" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avanzado" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "se usarán" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Huésped de la base de datos" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" -msgstr "" +msgstr "Finalizando..." #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Esta aplicación requiere de JavaScript para su correcto funcionamiento. Por favor habilite JavaScript y recargue." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponible. Obtené más información sobre cómo actualizar." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Cerrar la sesión" @@ -714,52 +738,52 @@ msgstr "Por favor, cambiá tu contraseña para incrementar la seguridad de tu cu #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "¡Falló la autenticación del servidor!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Por favor, contacte a su administrador." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "¿Perdiste tu contraseña?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "recordame" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Iniciar sesión" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Nombre alternativos de usuarios" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Esta instancia de ownCloud está en modo de usuario único." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Esto significa que solo administradores pueden usar esta instancia." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Contacte su administrador de sistema si este mensaje persiste o aparece inesperadamente." #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Gracias por su paciencia." #: templates/update.admin.php:3 #, php-format @@ -769,8 +793,8 @@ msgstr "Actualizando ownCloud a la versión %s, puede demorar un rato." #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Esta instancia de ownClod está siendo actualizada, puede tardar un momento." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Por favor, recargue esta página después de un tiempo para continuar usando ownCloud." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 85f0e08744..77494110a7 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -5,15 +5,15 @@ # Translators: # Agustin Ferrario , 2013 # cjtess , 2013 -# cnngimenez, 2013 +# cnngimenez, 2013-2014 # juliabis, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,286 +31,293 @@ msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" msgid "Could not move %s" msgstr "No se pudo mover %s " -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "El nombre del archivo no puede quedar vacío." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format -msgid "" -"The name %s is already used in the folder %s. Please choose a different " -"name." +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:81 -msgid "Not a valid source" -msgstr "" - -#: ajax/newfile.php:86 -msgid "" -"Server is not allowed to open URLs, please check the server configuration" -msgstr "" - -#: ajax/newfile.php:103 -#, php-format -msgid "Error while downloading %s to %s" -msgstr "" - -#: ajax/newfile.php:140 -msgid "Error when creating the file" -msgstr "" - -#: ajax/newfolder.php:21 -msgid "Folder name cannot be empty." -msgstr "" - -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 -msgid "Error when creating the folder" -msgstr "" - -#: ajax/upload.php:18 ajax/upload.php:50 -msgid "Unable to set upload directory." -msgstr "No fue posible crear el directorio de subida." - -#: ajax/upload.php:27 -msgid "Invalid Token" -msgstr "Token Inválido" - -#: ajax/upload.php:64 -msgid "No file was uploaded. Unknown error" -msgstr "El archivo no fue subido. Error desconocido" - -#: ajax/upload.php:71 -msgid "There is no error, the file uploaded with success" -msgstr "No hay errores, el archivo fue subido con éxito" - -#: ajax/upload.php:72 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" - -#: ajax/upload.php:74 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML" - -#: ajax/upload.php:75 -msgid "The uploaded file was only partially uploaded" -msgstr "El archivo fue subido parcialmente" - -#: ajax/upload.php:76 -msgid "No file was uploaded" -msgstr "No se subió ningún archivo " - -#: ajax/upload.php:77 -msgid "Missing a temporary folder" -msgstr "Falta un directorio temporal" - -#: ajax/upload.php:78 -msgid "Failed to write to disk" -msgstr "Error al escribir en el disco" - -#: ajax/upload.php:96 -msgid "Not enough storage available" -msgstr "No hay suficiente almacenamiento" - -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 -msgid "Upload failed. Could not find uploaded file" -msgstr "" - -#: ajax/upload.php:172 -msgid "Invalid directory." -msgstr "Directorio inválido." - -#: appinfo/app.php:11 -msgid "Files" -msgstr "Archivos" - -#: js/file-upload.js:228 -msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" - -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "No hay suficiente espacio disponible" - -#: js/file-upload.js:306 -msgid "Upload cancelled." -msgstr "La subida fue cancelada" - -#: js/file-upload.js:344 -msgid "Could not get result from server." -msgstr "" - -#: js/file-upload.js:436 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." - -#: js/file-upload.js:523 -msgid "URL cannot be empty" -msgstr "" - -#: js/file-upload.js:527 js/filelist.js:377 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:529 js/filelist.js:379 -msgid "{new_name} already exists" -msgstr "{new_name} ya existe" - -#: js/file-upload.js:595 -msgid "Could not create file" -msgstr "" - -#: js/file-upload.js:611 -msgid "Could not create folder" -msgstr "" - -#: js/file-upload.js:661 -msgid "Error fetching URL" -msgstr "" - -#: js/fileactions.js:125 -msgid "Share" -msgstr "Compartir" - -#: js/fileactions.js:137 -msgid "Delete permanently" -msgstr "Borrar permanentemente" - -#: js/fileactions.js:194 -msgid "Rename" -msgstr "Cambiar nombre" - -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 -msgid "Pending" -msgstr "Pendientes" - -#: js/filelist.js:405 -msgid "Could not rename file" -msgstr "" - -#: js/filelist.js:539 -msgid "replaced {new_name} with {old_name}" -msgstr "se reemplazó {new_name} con {old_name}" - -#: js/filelist.js:539 -msgid "undo" -msgstr "deshacer" - -#: js/filelist.js:591 -msgid "Error deleting file." -msgstr "" - -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n carpeta" -msgstr[1] "%n carpetas" - -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n archivo" -msgstr[1] "%n archivos" - -#: js/filelist.js:617 -msgid "{dirs} and {files}" -msgstr "{carpetas} y {archivos}" - -#: js/filelist.js:828 js/filelist.js:866 -msgid "Uploading %n file" -msgid_plural "Uploading %n files" -msgstr[0] "Subiendo %n archivo" -msgstr[1] "Subiendo %n archivos" - -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' es un nombre de archivo inválido." - -#: js/files.js:81 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: js/files.js:93 +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "El nombre %s está en uso en el directorio %s. Por favor elija un otro nombre." + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "No es una fuente válida" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "El servidor no está permitido abrir las URLs, por favor chequee la configuración del servidor" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Error mientras se descargaba %s a %s" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "Error al crear el archivo" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "El nombre del directorio no puede estar vacío." + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "Error al crear el directorio" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "No fue posible crear el directorio de subida." + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "Token Inválido" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "El archivo no fue subido. Error desconocido" + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "No hay errores, el archivo fue subido con éxito" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML" + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "El archivo fue subido parcialmente" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "No se subió ningún archivo " + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "Falta un directorio temporal" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "Error al escribir en el disco" + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "No hay suficiente almacenamiento" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "Falló la carga. No se pudo encontrar el archivo subido." + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Falló la carga. No se pudo obtener la información del archivo." + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "Directorio inválido." + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "Archivos" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "Imposible cargar {filename} puesto que es un directoro o tiene 0 bytes." + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "La subida fue cancelada" + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "No se pudo obtener resultados del servidor." + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "La URL no puede estar vacía" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "En el directorio inicial 'Shared' es un nombre de archivo reservado" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "{new_name} ya existe" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "No se pudo crear el archivo" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "No se pudo crear el directorio" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "Error al obtener la URL" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "Compartir" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "Borrar permanentemente" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "Cambiar nombre" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "Pendientes" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "No se pudo renombrar el archivo" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "se reemplazó {new_name} con {old_name}" + +#: js/filelist.js:591 +msgid "undo" +msgstr "deshacer" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "Error al borrar el archivo." + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n carpeta" +msgstr[1] "%n carpetas" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n archivo" +msgstr[1] "%n archivos" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "{carpetas} y {archivos}" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "Subiendo %n archivo" +msgstr[1] "Subiendo %n archivos" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "La aplicación de encriptación está habilitada pero las llaves no fueron inicializadas, por favor termine y vuelva a iniciar la sesión" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Llave privada inválida para la aplicación de encriptación. Por favor actualice la clave de la llave privada en las configuraciones personales para recobrar el acceso a sus archivos encriptados." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" -msgstr "" +msgstr "Error moviendo el archivo" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Error" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nombre" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Tamaño" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificado" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Nombre de directorio inválido. 'Shared' está reservado." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "No se pudo renombrar %s" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Subir" @@ -346,69 +353,69 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" msgid "Save" msgstr "Guardar" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nuevo" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" -msgstr "" +msgstr "Nuevo archivo de texto" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nueva Carpeta" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Archivos borrados" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "No tienes permisos para subir o crear archivos aquí" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Descargar" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Borrar" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "El tamaño del archivo que querés subir es demasiado grande" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index cb3c9a08a0..ce96c6ce43 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -4,14 +4,14 @@ # # Translators: # cjtess , 2013 -# cnngimenez, 2013 +# cnngimenez, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,7 +60,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "¡La aplicación de encriptación no está inicializada! Es probable que la aplicación fue re-habilitada durante tu sesión. Intenta salir y iniciar sesión para volverla a iniciar." #: files/error.php:16 #, php-format @@ -68,46 +68,46 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "¡Tu llave privada no es válida! Aparenta que tu clave fue cambiada fuera de %s (de tus directorios). Puedes actualizar la contraseña de tu clave privadaen las configuraciones personales para recobrar el acceso a tus archivos encriptados." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "No se puede descibrar este archivo, probablemente sea un archivo compartido. Por favor pídele al dueño que recomparta el archivo contigo." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Error desconocido, por favor chequea la configuración de tu sistema o contacte a su administrador" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Requisitos incompletos." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Por favor, asegúrese de que PHP 5.3.3 o una versión más reciente esté instalado y que OpenSSL junto con la extensión PHP esté habilitado y configurado apropiadamente. Por ahora, la aplicación de encriptación ha sido deshabilitada." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Los siguientes usuarios no fueron configurados para encriptar:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Encriptación inicial comenzada... Esto puede durar un tiempo. Por favor espere." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Guardando..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Ve directamente a tu" #: templates/invalid_private_key.php:8 msgid "personal settings" @@ -128,7 +128,7 @@ msgstr "Contraseña de recuperación de clave" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Repetir la contraseña de la clave de recuperación" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -152,7 +152,7 @@ msgstr "Nueva contraseña de recuperación de clave" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Repetir Nueva contraseña para la clave de recuperación" #: templates/settings-admin.php:58 msgid "Change Password" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index acf6aafe87..5208f40205 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Acceso permitido" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Error al configurar el almacenamiento de Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Permitir acceso" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor, proporcioná un secreto y una contraseña válida para la aplicación Dropbox." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Error al configurar el almacenamiento de Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb \"smbclient\" no está instalado. Montar archivos CIFS/SMB no es posible. Por favor, pedile al administrador de tu sistema que lo instale." -#: lib/config.php:465 +#: lib/config.php:516 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 "Advertencia: El soporte de FTP en PHP no está instalado. Montar archivos FTP no es posible. Por favor, pedile al administrador de tu sistema que lo instale." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Usuarios" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Borrar" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Habilitar almacenamiento de usuario externo" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Permitir a los usuarios montar su propio almacenamiento externo" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "certificados SSL raíz" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importar certificado raíz" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 7cf9250e1c..eac05e3470 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # cjtess , 2013 +# cnngimenez, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,9 +19,13 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Esto está protegido por contraseña" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." @@ -54,32 +59,16 @@ msgstr "compartir está desactivado" msgid "For more info, please ask the person who sent this link." msgstr "Para mayor información, contactá a la persona que te mandó el enlace." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s compartió la carpeta %s con vos" - -#: templates/public.php:21 -#, php-format -msgid "%s shared the file %s with you" -msgstr "%s compartió el archivo %s con vos" - -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Descargar" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Subir" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Cancelar subida" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "La vista preliminar no está disponible para" - -#: templates/public.php:99 -msgid "Direct link" +msgid "shared by %s" msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "Vínculo directo" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 9ace7d23d4..e2a9b90ed0 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "No fue posible borrar %s de manera permanente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "No se pudo restaurar %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Error" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "recuperado" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "No hay nada acá. ¡La papelera está vacía!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nombre" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Recuperar" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Borrado" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Borrar" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Archivos eliminados" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 6fa78e41c1..0506a22d33 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -4,13 +4,14 @@ # # Translators: # cjtess , 2013 +# cnngimenez, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +19,38 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "La app \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "No fue especificado el nombre de la app" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Ayuda" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Configuración" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Usuarios" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administración" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." @@ -62,15 +63,10 @@ msgstr "Tipo de archivo desconocido" msgid "Invalid image" msgstr "Imagen inválida" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "servicios web sobre los que tenés control" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "no se puede abrir \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." @@ -91,76 +87,80 @@ msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Por favor, descargue estos archivos de forma separada en pequeñas partes o pídalo amablemente a su administrador." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "No se especificó el origen al instalar la app" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "No se especificó href al instalar la app" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "No se especificó PATH al instalar la app desde el archivo local" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "No hay soporte para archivos de tipo %s" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Error al abrir archivo mientras se instalaba la app" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "La app no suministra un archivo info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "No puede ser instalada la app por tener código no autorizado" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "No se puede instalar la app porque no es compatible con esta versión de ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "La app no se puede instalar porque contiene la etiqueta true que no está permitida para apps no distribuidas" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "La app no puede ser instalada porque la versión en info.xml/version no es la misma que la establecida en el app store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "El directorio de la app ya existe" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No se puede crear el directorio para la app. Corregí los permisos. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Error al autenticar" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recargá la página." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Archivos" @@ -200,8 +200,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Tenés que ingresar una cuenta existente o el administrador." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Usuario y/o contraseña MySQL no válido" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +228,21 @@ msgstr "El comando no comprendido es: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Usuario MySQL '%s'@'localhost' ya existe." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Borrar este usuario de MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Usuario MySQL '%s'@'%%' ya existe" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Borrar este usuario de MySQL" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,66 +269,72 @@ msgstr "Configurar un nombre de administrador." msgid "Set an admin password." msgstr "Configurar una contraseña de administrador." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, comprobá nuevamente la guía de instalación." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "No fue posible encontrar la categoría \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "segundos atrás" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "hoy" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ayer" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "el mes pasado" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "el año pasado" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "años atrás" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index b7a8c51dea..f1526b291f 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -5,14 +5,14 @@ # Translators: # Agustin Ferrario , 2013 # cjtess , 2013 -# cnngimenez, 2013 +# cnngimenez, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,48 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Encriptación" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Imposible cargar la lista desde el App Store" @@ -31,11 +73,11 @@ msgstr "Error al autenticar" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Su nombre completo ha sido cambiado." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Imposible cambiar el nombre completo" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -89,89 +131,117 @@ msgstr "No se pudo actualizar la App." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Clave incorrecta" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "No se ha indicado el usuario" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Por favor provea de una contraseña de recuperación administrativa, sino se perderá todos los datos del usuario" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Contraseña de recuperación administrativa incorrecta. Por favor, chequee la clave e intente de nuevo" #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "El back-end no soporta cambios de contraseña, pero las claves de encriptación fueron subidas exitosamente." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" +msgstr "Imposible cambiar la contraseña" + +#: js/admin.js:73 +msgid "Sending..." msgstr "" -#: js/apps.js:43 +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentación de Usuario" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Actualizar a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Activar" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Por favor, esperá...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Se ha producido un error mientras se deshabilitaba la aplicación" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Se ha producido un error mientras se habilitaba la aplicación" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Error al actualizar App" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Error" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Actualizar" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" +msgstr "Seleccionar una imágen de perfil" + +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:266 +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Desencriptando archivos... Por favor espere, esto puede tardar." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Guardando..." - #: js/users.js:47 msgid "deleted" msgstr "borrado" @@ -184,75 +254,99 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "Imposible borrar usuario" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupos" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Borrar" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "agregar grupo" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Debe ingresar un nombre de usuario válido" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Error creando usuario" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Advertencia: El directorio Home del usuario \"{user}\" ya existe" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Castellano (Argentina)" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Todo (notificaciones fatales, errores, advertencias, info, debug)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Info, advertencias, errores y notificaciones fatales" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Advertencias, errores y notificaciones fatales" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Errores y notificaciones fatales" #: templates/admin.php:12 msgid "Fatal issues only" +msgstr "Notificaciones fatales solamente" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Está accediendo %s vía HTTP. Se sugiere fuertemente que configure su servidor para requerir el uso de HTTPS en vez del otro." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -261,68 +355,68 @@ msgid "" "root." msgstr "El directorio de datos y tus archivos probablemente sean accesibles desde Internet. El archivo .htaccess no funciona. Sugerimos fuertemente que configures tu servidor web de forma tal que el archivo de directorios no sea accesible o muevas el mismo fuera de la raíz de los documentos del servidor web." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Alerta de Configuración" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, cheque bien la guía de instalación." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "El módulo 'fileinfo' no existe" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Su versión de PHP está fuera de término" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "Su versión de PHP está fuera de término. Recomendamos fuertemente actualizar a 5.3.8 o a una más nueva porque se sabe que versiones anteriores están falladas. Es posible que esta instalación no funcione adecuadamente." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "\"Locale\" no está funcionando" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "La localización del sistema no puede cambiarse a una que soporta UTF-8" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Se sugiere fuertemente instalar los paquetes requeridos en su sistema para soportar uno de las siguientes localizaciones: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "La conexión a Internet no esta funcionando. " -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -331,118 +425,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "El servidor no posee una conexión a Internet activa. Esto significa que algunas características como el montaje de un almacenamiento externo, las notificaciones acerca de actualizaciones o la instalación de aplicaciones de terceros no funcionarán. El acceso a archivos de forma remota y el envío de correos con notificaciones es posible que tampoco funcionen. Sugerimos habilitar la conexión a Internet para este servidor si deseas tener todas estas características." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Ejecutá una tarea con cada pagina cargada." -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "" +msgstr "cron.php está registrado en el servicio webcron para llamarlo cada 15 minutos usando http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "Usar el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Habilitar Share API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la Share API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir enlaces públicos" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que los usuarios autoricen a otros a subir archivos en sus directorios públicos compartidos" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Permitir Re-Compartir" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Permite a los usuarios volver a compartir items que les fueron compartidos" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera." -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los de sus mismos grupos" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" -msgstr "" +msgstr "Permitir notificaciones por correo" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Permitir al usuario enviar notificaciones por correo para archivos compartidos" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Más" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Menos" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Añadí tu App" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Más Apps" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Elegí una App" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Mirá la web de aplicaciones apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licenciado por " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentación de Usuario" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentación de Administrador" @@ -509,7 +651,7 @@ msgstr "Mostrar de nuevo el asistente de primera ejecución" msgid "You have used %s of the available %s" msgstr "Usás %s de los %s disponibles" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contraseña" @@ -521,151 +663,149 @@ msgstr "Tu contraseña fue cambiada" msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "Nombre completo" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "e-mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Escribí una dirección de e-mail para restablecer la contraseña" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" -msgstr "" - -#: templates/personal.php:91 -msgid "Upload new" -msgstr "" - -#: templates/personal.php:93 -msgid "Select new from Files" -msgstr "" - -#: templates/personal.php:94 -msgid "Remove image" -msgstr "" - -#: templates/personal.php:95 -msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" - -#: templates/personal.php:97 -msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Imágen de perfil" #: templates/personal.php:101 -msgid "Abort" -msgstr "Abortar" +msgid "Upload new" +msgstr "Subir nuevo" -#: templates/personal.php:102 -msgid "Choose as profile image" +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "Seleccionar nuevo desde archivos" + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "Remover imagen" + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "Sólo png o jpg. Lo ideal que sea cuadrada sino luego podrás recortarlo." + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "Su avatar es proveído por su cuenta original." + +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:112 +msgid "Choose as profile image" +msgstr "Elegir como imagen de perfil" + +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Idioma" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "" +msgstr "Usar esta dirección para acceder a tus archivos vía WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Encriptación" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "La aplicación de encriptación ya no está habilidata, por favor desencripte todos sus archivos." -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Clave de acceso" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Desencriptar todos los archivos" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Nombre de Usuario" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Crear" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Recuperación de contraseña de administrador" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Ingresá la contraseña de recuperación para recuperar los archivos de usuario al cambiar contraseña" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Almacenamiento Predeterminado" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Por favor ingrese la cuota de almacenamiento (ej.: \"512 MB\" o \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Otros" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nombre de usuario" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Almacenamiento" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "Cambiar nombre completo" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "Configurar nueva contraseña" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Predeterminado" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 4588bc43a2..c896bad5ea 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # cjtess , 2013 +# cnngimenez, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,24 +41,24 @@ msgstr "La configuración es válida, pero el enlace falló. Por favor, comprob msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "La configuración es inválida. Por favor, verifique los logs para más detalles." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "No se ha especificado una acción" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "No se ha especificado una configuración" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "No se ha especificado datos" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "No se pudo asignar la configuración %s" #: js/settings.js:67 msgid "Deletion failed" @@ -87,43 +88,43 @@ msgstr "Éxito" msgid "Error" msgstr "Error" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" -msgstr "" +msgstr "Configuración válida" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuración incorrecta" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuración incompleta" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" -msgstr "" +msgstr "Seleccionar las clases de objetos" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" -msgstr "" +msgstr "Seleccionar atributos" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "El este de conexión ha sido completado satisfactoriamente" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Falló es test de conexión" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea borrar la configuración actual del servidor?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Confirmar borrado" @@ -131,23 +132,23 @@ msgstr "Confirmar borrado" #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s grupo encontrado" +msgstr[1] "%s grupos encontrados" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s usuario encontrado" +msgstr[1] "%s usuarios encontrados" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" -msgstr "" +msgstr "Host inválido" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" -msgstr "" +msgstr "No se pudo encontrar la característica deseada" #: templates/part.settingcontrols.php:2 msgid "Save" @@ -163,56 +164,56 @@ msgstr "Ayuda" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "solo estos objetos de clases:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "solo provenientes de estos grupos:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Editar filtro en bruto" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Filtro LDAP en bruto" #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "El filtro especifica qué grupos LDAP deben tener acceso a la instancia %s." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "Nombre de usuario LDAP:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "Correo electrónico LDAP:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Otros atributos:" #: templates/part.wizard-loginfilter.php:38 #, php-format @@ -267,18 +268,18 @@ msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Av #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" +msgstr "El filtro especifica cuáles usuarios LDAP deben tener acceso a la instancia %s." #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "usuarios encontrados" #: templates/part.wizardcontrols.php:5 msgid "Back" @@ -286,7 +287,7 @@ msgstr "Volver" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Continuar" #: templates/settings.php:11 msgid "" @@ -410,41 +411,51 @@ msgstr "Atributos de búsqueda de grupo" msgid "Group-Member association" msgstr "Asociación Grupo-Miembro" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atributos Especiales" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Campo de cuota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Cuota por defecto" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Campo de e-mail" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Regla de nombre de los directorios de usuario" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especificá un atributo LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Nombre interno de usuario" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Por defecto, el nombre de usuario interno es creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y no es necesaria una conversión de caracteres. El nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso colisiones, se agregará o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para el directorio personal del usuario en ownCloud. También es parte de las URLs remotas, por ejemplo, para los servicios *DAV. Con esta opción, se puede cambiar el comportamiento por defecto. Para conseguir un comportamiento similar a versiones anteriores a ownCloud 5, ingresá el atributo del nombre mostrado en el campo siguiente. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto en los nuevos usuarios LDAP mapeados (agregados)." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atributo Nombre Interno de usuario:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Sobrescribir la detección UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por defecto, el atributo UUID es detectado automáticamente. Este atributo es usado para identificar de manera certera usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no fue especificado otro comportamiento más arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte que el atributo de tu elección sea accesible por los usuarios y grupos y que sea único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP mapeados (agregados)." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Atributo UUID para usuarios:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Atributo UUID para grupos:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +516,10 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar datos (metadatos). Con el fin de identificar de forma precisa y reconocer usuarios, a cada usuario de LDAP se será asignado un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es dejado en caché para reducir la interacción entre el LDAP, pero no es usado para la identificación. Si el DN cambia, los cambios van a ser aplicados. El nombre de usuario interno es usado en todos los lugares. Vaciar los mapeos, deja restos por todas partes. Vaciar los mapeos, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, solamente en fase de desarrollo o experimental." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 05b6eb1d9e..c2fae36dab 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# eganya , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +18,7 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,141 +68,145 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 -msgid "Sunday" -msgstr "" - -#: js/config.php:33 -msgid "Monday" -msgstr "" - -#: js/config.php:34 -msgid "Tuesday" -msgstr "" - -#: js/config.php:35 -msgid "Wednesday" -msgstr "" - #: js/config.php:36 -msgid "Thursday" -msgstr "" +msgid "Sunday" +msgstr "Domingo" #: js/config.php:37 -msgid "Friday" -msgstr "" +msgid "Monday" +msgstr "Lunes" #: js/config.php:38 +msgid "Tuesday" +msgstr "Martes" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "Miércoles" + +#: js/config.php:40 +msgid "Thursday" +msgstr "Jueves" + +#: js/config.php:41 +msgid "Friday" +msgstr "Viernes" + +#: js/config.php:42 msgid "Saturday" -msgstr "" - -#: js/config.php:43 -msgid "January" -msgstr "" - -#: js/config.php:44 -msgid "February" -msgstr "" - -#: js/config.php:45 -msgid "March" -msgstr "" - -#: js/config.php:46 -msgid "April" -msgstr "" +msgstr "Sábado" #: js/config.php:47 -msgid "May" -msgstr "" +msgid "January" +msgstr "Enero" #: js/config.php:48 -msgid "June" -msgstr "" +msgid "February" +msgstr "Febrero" #: js/config.php:49 -msgid "July" -msgstr "" +msgid "March" +msgstr "Marzo" #: js/config.php:50 -msgid "August" -msgstr "" +msgid "April" +msgstr "Abril" #: js/config.php:51 -msgid "September" -msgstr "" +msgid "May" +msgstr "Mayo" #: js/config.php:52 -msgid "October" -msgstr "" +msgid "June" +msgstr "Junio" #: js/config.php:53 -msgid "November" -msgstr "" +msgid "July" +msgstr "Julio" #: js/config.php:54 -msgid "December" -msgstr "" +msgid "August" +msgstr "Agosto" -#: js/js.js:398 +#: js/config.php:55 +msgid "September" +msgstr "Septiembre" + +#: js/config.php:56 +msgid "October" +msgstr "Octubre" + +#: js/config.php:57 +msgid "November" +msgstr "Noviembre" + +#: js/config.php:58 +msgid "December" +msgstr "Diciembre" + +#: js/js.js:458 msgid "Settings" msgstr "Configuración" -#: js/js.js:869 -msgid "seconds ago" +#: js/js.js:496 +msgid "Saving..." msgstr "" -#: js/js.js:870 +#: js/js.js:992 +msgid "seconds ago" +msgstr "segundos antes" + +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" -msgstr "" +msgstr "hoy" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" -msgstr "" +msgstr "ayer" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" -msgstr "" +msgstr "mes anterior" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" -msgstr "" +msgstr "meses antes" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" -msgstr "" +msgstr "último año" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" -msgstr "" +msgstr "años anteriores" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "Choose" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" @@ -214,15 +214,15 @@ msgstr "" #: js/oc-dialogs.js:172 msgid "Yes" -msgstr "" +msgstr "Si" #: js/oc-dialogs.js:182 msgid "No" -msgstr "" +msgstr "No" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" @@ -250,7 +250,7 @@ msgstr "" #: js/oc-dialogs.js:376 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: js/oc-dialogs.js:386 msgid "Continue" @@ -268,154 +268,174 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Compartido" #: js/share.js:109 msgid "Share" -msgstr "" +msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" -msgstr "" +msgstr "Error" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" -msgstr "" +msgstr "Ocurrió un error mientras compartía" #: js/share.js:171 msgid "Error while unsharing" -msgstr "" +msgstr "Ocurrió un error mientras dejaba de compartir" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Ocurrió un error mientras se cambiaban los permisos" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Clave" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "El tipo de objeto no está especificado." #: js/tags.js:13 msgid "Enter new" @@ -456,11 +476,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +506,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Usuario" @@ -525,7 +551,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +661,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +717,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +743,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index 2bb37f65f4..d4c99d3cc2 100644 --- a/l10n/es_CL/files.po +++ b/l10n/es_CL/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Archivos" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" -msgstr "" +msgstr "Compartir" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" -msgstr "" +msgstr "Error" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Subir" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" -msgstr "" +msgstr "Descargar" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/es_CL/files_encryption.po b/l10n/es_CL/files_encryption.po index 27a1d9e6e5..cd2c88e3ae 100644 --- a/l10n/es_CL/files_encryption.po +++ b/l10n/es_CL/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-16 14:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:278 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/es_CL/files_external.po b/l10n/es_CL/files_external.po index 9537ed2468..53d85c6613 100644 --- a/l10n/es_CL/files_external.po +++ b/l10n/es_CL/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-16 14:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:467 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:471 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:474 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/es_CL/files_sharing.po b/l10n/es_CL/files_sharing.po index a4836e6eea..90d1afb2ff 100644 --- a/l10n/es_CL/files_sharing.po +++ b/l10n/es_CL/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 16:42-0500\n" -"PO-Revision-Date: 2013-12-17 15:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Subir" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/es_CL/files_trashbin.po b/l10n/es_CL/files_trashbin.po index 1e0643be9b..e7ad1c4cb6 100644 --- a/l10n/es_CL/files_trashbin.po +++ b/l10n/es_CL/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-16 14:34+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,21 +17,25 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 -msgid "Error" +#: js/filelist.js:23 +msgid "Deleted files" msgstr "" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +msgid "Error" +msgstr "Error" + +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index a6cad8d93c..30b584c236 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Configuración" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Archivos" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" -msgstr "" +msgstr "segundos antes" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 -msgid "today" -msgstr "" - -#: private/template/functions.php:134 -msgid "yesterday" -msgstr "" - #: private/template/functions.php:136 +msgid "today" +msgstr "hoy" + +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "ayer" + +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" -msgstr "" +msgstr "mes anterior" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" -msgstr "" +msgstr "último año" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" -msgstr "" +msgstr "años anteriores" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index 75d4de7ece..2be26ea82e 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 16:42-0500\n" -"PO-Revision-Date: 2013-12-17 15:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" -msgstr "" +msgstr "Error" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Clave" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Usuario" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/es_CL/user_ldap.po b/l10n/es_CL/user_ldap.po index d7d1525094..5a138f0da1 100644 --- a/l10n/es_CL/user_ldap.po +++ b/l10n/es_CL/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 16:42-0500\n" -"PO-Revision-Date: 2013-12-17 15:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,45 +84,45 @@ msgstr "" #: js/settings.js:133 msgid "Error" -msgstr "" +msgstr "Error" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 978e2ba5a4..80aefa2b51 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 01:23+0000\n" -"Last-Translator: byoship\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s ha compartido »%s« contigo" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" @@ -72,135 +67,139 @@ msgstr "No hay disponible una imagen temporal de perfil, pruebe de nuevo" msgid "No crop data provided" msgstr "No se proporcionó datos del recorte" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Domingo" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Lunes" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Martes" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Miércoles" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Jueves" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Viernes" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sábado" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Enero" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Febrero" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Marzo" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Abril" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mayo" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Junio" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Julio" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Agosto" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Septiembre" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Octubre" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Noviembre" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Diciembre" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Ajustes" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "hoy" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ayer" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "el mes pasado" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "meses antes" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "el año pasado" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "años antes" @@ -268,6 +267,26 @@ msgstr "({count} seleccionados)" msgid "Error loading file exists template" msgstr "Error cargando plantilla de archivo existente" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartido" @@ -276,12 +295,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Error al compartir" @@ -293,123 +312,123 @@ msgstr "Error al dejar de compartir" msgid "Error while changing permissions" msgstr "Error al cambiar permisos" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido contigo y el grupo {group} por {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Compartido contigo por {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Compartido con el usuario o con el grupo …" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Enlace compartido" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Protección con contraseña" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Contraseña" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Enviar enlace por correo electrónico a una persona" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Enviar" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Establecer fecha de caducidad" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Fecha de caducidad" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Compartir por correo electrónico:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupo" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "notificar al usuario por correo electrónico" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "puede editar" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "control de acceso" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "crear" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "actualizar" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "eliminar" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "compartir" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Precaución" @@ -456,11 +475,17 @@ msgstr "La actualización ha fracasado. Por favor, informe de este problema a la msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s restablecer contraseña" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Utilice el siguiente enlace para restablecer su contraseña: {link}" @@ -480,8 +505,8 @@ msgstr "La petición ha fallado!
¿Está seguro de que su dirección de cor msgid "You will receive a link to reset your password via Email." msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nombre de usuario" @@ -525,7 +550,7 @@ msgstr "Personal" msgid "Users" msgstr "Usuarios" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplicaciones" @@ -635,49 +660,47 @@ msgstr "Para información de cómo configurar apropiadamente su servidor, por fa msgid "Create an admin account" msgstr "Crear una cuenta de administrador" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avanzado" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Directorio de datos" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Finalizando …" @@ -693,7 +716,7 @@ msgstr "Esta aplicación requiere que se habilite JavaScript para su correcta op msgid "%s is available. Get more information on how to update." msgstr "%s esta disponible. Obtener mas información de como actualizar." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Salir" @@ -719,28 +742,28 @@ msgstr "La autenticación a fallado en el servidor." msgid "Please contact your administrator." msgstr "Por favor, contacte con el administrador." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "¿Ha perdido su contraseña?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "recordar" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Entrar" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Accesos Alternativos" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Hola:

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 3ab8a00fc9..acc521f1fb 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 01:10+0000\n" -"Last-Translator: byoship\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "El nombre del archivo, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "No es un origen válido" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no puede acceder URLs; revise la configuración del servidor." -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Error al crear el archivo" @@ -64,236 +76,231 @@ msgstr "Error al crear el archivo" msgid "Folder name cannot be empty." msgstr "El nombre de la carpeta no puede estar vacío." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "El nombre de la carpeta, NO puede contener el simbolo\"/\", por favor elija un nombre diferente." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Error al crear la carpeta." -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Incapaz de crear directorio de subida." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Actualización fallida. No se pudo obtener información del archivo." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Actualización fallida. No se pudo obtener información del archivo." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Directorio inválido." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Archivos" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "No ha sido posible subir {filename} porque es un directorio o tiene 0 bytes" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "No hay suficiente espacio disponible" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Error al descargar URL." -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "deshacer" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Error borrando el archivo." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' no es un nombre de archivo válido." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Error moviendo archivo" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Error" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nombre" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Tamaño" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificado" @@ -301,12 +308,12 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Subir" @@ -342,69 +349,69 @@ msgstr "Tamaño máximo para archivos ZIP de entrada" msgid "Save" msgstr "Guardar" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nuevo" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nuevo archivo de texto" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Archivo de texto" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nueva carpeta" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Carpeta" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Desde enlace" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "No tienes permisos para subir o crear archivos aquí." -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Descargar" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Subida demasido grande" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_MX/files_encryption.po b/l10n/es_MX/files_encryption.po index 568f9b2783..50a52b5503 100644 --- a/l10n/es_MX/files_encryption.po +++ b/l10n/es_MX/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2013-12-31 19:30+0000\n" -"Last-Translator: byoship\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "Error desconocido. Verifique la configuración de su sistema o póngase en contacto con su administrador" -#: hooks/hooks.php:62 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Requisitos incompletos." -#: hooks/hooks.php:63 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." -#: hooks/hooks.php:281 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" @@ -99,9 +99,9 @@ msgstr "Los siguientes usuarios no han sido configurados para el cifrado:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Guardando..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/es_MX/files_external.po b/l10n/es_MX/files_external.po index 1f535c50fd..bc01ae7106 100644 --- a/l10n/es_MX/files_external.po +++ b/l10n/es_MX/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2013-12-31 19:50+0000\n" -"Last-Translator: byoship\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Acceso concedido" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Error configurando el almacenamiento de Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Conceder acceso" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:467 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente \"smbclient\" no se encuentra instalado. El montado de carpetas CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:471 +#: lib/config.php:516 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 "Advertencia: El soporte de FTP en PHP no se encuentra instalado. El montado de carpetas FTP no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:474 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Usuarios" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Habilitar almacenamiento externo de usuario" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Permitir a los usuarios montar su propio almacenamiento externo" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Certificados raíz SSL" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importar certificado raíz" diff --git a/l10n/es_MX/files_sharing.po b/l10n/es_MX/files_sharing.po index 610c125b72..f21e238fb0 100644 --- a/l10n/es_MX/files_sharing.po +++ b/l10n/es_MX/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 01:10+0000\n" -"Last-Translator: byoship\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Este elemento compartido esta protegido por contraseña" @@ -53,32 +57,16 @@ msgstr "compartir está desactivado" msgid "For more info, please ask the person who sent this link." msgstr "Para mayor información, contacte a la persona que le envió el enlace." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s compartió la carpeta %s contigo" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s compartió el archivo %s contigo" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Descargar" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Subir" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Cancelar subida" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "No hay vista previa disponible para" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Enlace directo" diff --git a/l10n/es_MX/files_trashbin.po b/l10n/es_MX/files_trashbin.po index 7a4bf2cfd7..071dc90578 100644 --- a/l10n/es_MX/files_trashbin.po +++ b/l10n/es_MX/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2013-12-31 19:50+0000\n" -"Last-Translator: byoship\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,21 +17,25 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "No se puede eliminar %s permanentemente" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "No se puede restaurar %s" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Error" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "recuperado" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index e47ddeeee9..dc312ea285 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 00:20+0000\n" -"Last-Translator: byoship\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,34 +17,34 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "La aplicación \"%s\" no puede ser instalada porque no es compatible con esta versión de ownCloud" -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "No se ha especificado nombre de la aplicación" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "Ayuda" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "Personal" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "Ajustes" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" msgstr "Usuarios" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "Administración" @@ -61,15 +61,10 @@ msgstr "Tipo de archivo desconocido" msgid "Invalid image" msgstr "Imagen inválida" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Servicios web bajo su control" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "No se puede abrir \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "No se ha especificado origen cuando se ha instalado la aplicación" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "No href especificado cuando se ha instalado la aplicación" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Sin path especificado cuando se ha instalado la aplicación desde el archivo local" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Archivos de tipo %s no son soportados" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Fallo de abrir archivo mientras se instala la aplicación" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "La aplicación no suministra un archivo info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "La aplicación no puede ser instalada por tener código no autorizado en la aplicación" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "La aplicación no se puede instalar porque no es compatible con esta versión de ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "La aplicación no se puede instalar porque contiene la etiqueta\n\ntrue\n\nque no está permitida para aplicaciones no distribuidas" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "La aplicación no puede ser instalada por que la versión en info.xml/version no es la misma que la establecida en la app store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "El directorio de la aplicación ya existe" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Error de autenticación" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recarga la página." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Archivos" @@ -199,8 +198,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Tiene que ingresar una cuenta existente o la del administrador." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Usuario y/o contraseña de MySQL no válidos" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -227,21 +226,21 @@ msgstr "Comando infractor: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Usuario MySQL '%s'@'localhost' ya existe." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Eliminar este usuario de MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Usuario MySQL '%s'@'%%' ya existe" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Eliminar este usuario de MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -268,66 +267,72 @@ msgstr "Configurar un nombre de usuario del administrador" msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "No puede encontrar la categoria \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "hace segundos" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "hoy" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ayer" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "mes pasado" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "año pasado" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "hace años" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 62fafbc21c..6b1980e167 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2014-01-02 01:42+0000\n" -"Last-Translator: byoship\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Cifrado" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "No se pudo cargar la lista desde el App Store" @@ -113,62 +155,90 @@ msgstr "El back-end no soporta cambios de contraseña, pero la clave de cifrado msgid "Unable to change password" msgstr "No se ha podido cambiar la contraseña" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentación de usuario" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Actualizado a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Activar" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Espere, por favor...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Error mientras se desactivaba la aplicación" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Error mientras se activaba la aplicación" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Error mientras se actualizaba la aplicación" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Error" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Actualizar" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Guardando..." - #: js/users.js:47 msgid "deleted" msgstr "eliminado" @@ -181,40 +251,40 @@ msgstr "deshacer" msgid "Unable to remove user" msgstr "Imposible eliminar al usuario" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupos" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Administrador del Grupo" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Eliminar" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "añadir Grupo" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Se debe proporcionar un nombre de usuario válido" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Se debe proporcionar una contraseña válida" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atención: el directorio de inicio para el usuario \"{user}\" ya existe." -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Español (México)" @@ -238,18 +308,42 @@ msgstr "Errores y problemas fatales" msgid "Fatal issues only" msgstr "Problemas fatales solamente" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Advertencia de configuración" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "No se ha encontrado el módulo \"fileinfo\"" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Su versión de PHP ha caducado" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "No se puede escoger una configuración regional que soporte UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. " -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "La conexión a Internet no está funcionando" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Registro" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Más" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Menos" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Añade tu aplicación" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Más aplicaciones" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Seleccionar una aplicación" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Ver la página de aplicaciones en apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licencia otorgada por " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentación de usuario" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentación de administrador" @@ -506,7 +648,7 @@ msgstr "Mostrar nuevamente el Asistente de ejecución inicial" msgid "You have used %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contraseña" @@ -518,151 +660,149 @@ msgstr "Su contraseña ha sido cambiada" msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Nombre completo" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Escriba una dirección de correo electrónico para restablecer la contraseña" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Foto de perfil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Subir otra" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Seleccionar otra desde Archivos" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Borrar imagen" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Su avatar es proporcionado por su cuenta original." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Cancelar" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Seleccionar como imagen de perfil" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Idioma" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Utilice esta dirección para acceder a sus archivos vía WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Cifrado" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "La aplicación de cifrado ya no está activada, descifre todos sus archivos" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Contraseña de acceso" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Descifrar archivos" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Nombre de usuario" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Crear" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Recuperación de la contraseña de administración" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña." -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Almacenamiento predeterminado" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Otro" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nombre de usuario" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Almacenamiento" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "cambiar el nombre completo" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "establecer nueva contraseña" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Predeterminado" diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index 4a5d82737a..62c2b0dbf4 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-02 01:55-0500\n" -"PO-Revision-Date: 2013-12-31 19:50+0000\n" -"Last-Translator: byoship\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "Éxito" msgid "Error" msgstr "Error" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Configuración OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Configuración Incorrecta" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Seleccionar la clase de objeto" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Confirmar eliminación" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "Usuario %s encontrado" msgstr[1] "Usuarios %s encontrados" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." @@ -162,8 +162,8 @@ msgstr "Ayuda" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Limitar el acceso a %s a los grupos que cumplan este criterio:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -198,8 +198,8 @@ msgid "groups found" msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Que atributo debe ser usado como login:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -266,8 +266,8 @@ msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanz #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Limitar el acceso a %s a los usuarios que cumplan el siguiente criterio:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -409,41 +409,51 @@ msgstr "Atributos de busqueda de grupo" msgid "Group-Member association" msgstr "Asociación Grupo-Miembro" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atributos especiales" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Cuota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Cuota por defecto" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-mail" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Regla para la carpeta Home de usuario" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Vacío para el nombre de usuario (por defecto). En otro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Nombre de usuario interno" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "El nombre de usuario interno será creado de forma predeterminada desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [ a-zA-Z0-9_.@- ]. El resto de caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. En caso de duplicidades, se añadirá o incrementará un número. El nombre de usuario interno es usado para identificar un usuario. Es también el nombre predeterminado para la carpeta personal del usuario en ownCloud. También es parte de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento predeterminado puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduzca el campo del nombre para mostrar del usuario en la siguiente caja. Déjelo vacío para el comportamiento predeterminado. Los cambios solo tendrán efecto en los usuarios LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atributo Nombre de usuario Interno:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Sobrescribir la detección UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por defecto, el atributo UUID es autodetectado. Este atributo es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los usuarios y grupos de LDAP mapeados (añadidos) recientemente." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Atributo UUID para usuarios:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Atributo UUID para Grupos:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Asignación del Nombre de usuario de un usuario LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Borrar la asignación de los Nombres de usuario de los usuarios LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Borrar la asignación de los Nombres de grupo de los grupos de LDAP" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index c9eaf5ba16..5aa8f62553 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# pisike.sipelgas , 2013 +# pisike.sipelgas , 2013-2014 # Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s jagas sinuga »%s«" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Kirja saatmine järgnevatele kasutajatele ebaõnnestus: %s " @@ -74,135 +69,139 @@ msgstr "Ühtegi ajutist profiili pilti pole saadaval, proovi uuesti" msgid "No crop data provided" msgstr "Lõikeandmeid ei leitud" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Pühapäev" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Esmaspäev" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Teisipäev" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Kolmapäev" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Neljapäev" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Reede" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Laupäev" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Jaanuar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Veebruar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Märts" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Aprill" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juuni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juuli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktoober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Detsember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Seaded" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "täna" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "eile" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "aastat tagasi" @@ -270,6 +269,26 @@ msgstr "({count} valitud)" msgid "Error loading file exists template" msgstr "Viga faili olemasolu malli laadimisel" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Jagatud" @@ -278,12 +297,12 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Viga" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -295,123 +314,123 @@ msgstr "Viga jagamise lõpetamisel" msgid "Error while changing permissions" msgstr "Viga õiguste muutmisel" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Jagatud sinu ja {group} grupiga {owner} poolt" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Sinuga jagas {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Jaga kasutaja või grupiga ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Jaga linki" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Parooliga kaitstud" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Parool" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Luba avalik üleslaadimine" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Saada link isikule e-postiga" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Saada" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Määra aegumise kuupäev" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Aegumise kuupäev" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Jaga e-postiga:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupp" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "teavita e-postiga" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "saab muuta" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "loo" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "uuenda" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "kustuta" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "jaga" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-kiri on saadetud" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Hoiatus" @@ -458,11 +477,17 @@ msgstr "Uuendus ebaõnnestus. Palun teavita probleemidest Oled sa veendunud, et e-post/kasutajanimi on õ msgid "You will receive a link to reset your password via Email." msgstr "Sinu parooli taastamise link saadetakse sulle e-postile." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Kasutajanimi" @@ -527,7 +552,7 @@ msgstr "Isiklik" msgid "Users" msgstr "Kasutajad" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Rakendused" @@ -583,7 +608,7 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sulle välja %s.\nVaata seda: %s\n\n" +msgstr "Tere,\n\n%s jagas sulle välja %s.\nVaata siit: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format @@ -637,49 +662,47 @@ msgstr "Serveri korrektseks seadistuseks palun tutvu admin account
" msgstr "Loo admini konto" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Täpsem" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Lõpeta seadistamine" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Lõpetamine ..." @@ -695,7 +718,7 @@ msgstr "See rakendus vajab toimimiseks JavaScripti. Palun
just letting you know that %s shared »%s« with you.
View it!

" -msgstr "Hei,

lihtsalt annan sulle teada, et %s jagas sulle välja »%s«.
Vaata seda!

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index e83960e36b..8b8bf16904 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 07:20+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,36 +29,48 @@ msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" msgid "Could not move %s" msgstr "%s liigutamine ebaõnnestus" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Faili nimi ei saa olla tühi." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Faili nimi ei tohi sisaldada \"/\". Palun vali mõni teine nimi." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nimi %s on juba kasutusel kataloogis %s. Palun vali mõni teine nimi." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Pole korrektne lähteallikas" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server ei võimalda URL-ide avamist, palun kontrolli serveri seadistust" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Viga %s allalaadimisel %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Viga faili loomisel" @@ -66,236 +78,231 @@ msgstr "Viga faili loomisel" msgid "Folder name cannot be empty." msgstr "Kataloogi nimi ei saa olla tühi." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Kataloogi nimi ei tohi sisaldada \"/\". Palun vali mõni teine nimi." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Viga kataloogi loomisel" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Üleslaadimiste kausta määramine ebaõnnestus." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Vigane kontrollkood" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi tõrget polnud, fail on üles laetud" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üleslaetud fail ületab MAX_FILE_SIZE suuruse, mis on HTML vormi jaoks määratud" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Vigane kaust." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Failid" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Ei saa üles laadida {filename}, kuna see on kataloog või selle suurus on 0 baiti" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Pole piisavalt ruumi" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Serverist ei saadud tulemusi" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL ei saa olla tühi" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Ei suuda luua faili" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Ei suuda luua kataloogi" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Viga URL-i haaramisel" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Jaga" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "tagasi" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Viga faili kustutamisel." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" msgstr[1] "Laadin üles %n faili" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' on vigane failinimi." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. " -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Viga faili eemaldamisel" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Viga" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nimi" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Suurus" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Muudetud" @@ -303,12 +310,12 @@ msgstr "Muudetud" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s ümbernimetamine ebaõnnestus" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Lae üles" @@ -344,69 +351,69 @@ msgstr "Maksimaalne ZIP-faili sisestatava faili suurus" msgid "Save" msgstr "Salvesta" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Uus" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Uus tekstifail" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Tekstifail" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Uus kaust" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Kaust" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Allikast" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Kustutatud failid" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Sul puuduvad õigused siia failide üleslaadimiseks või tekitamiseks" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Lae alla" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Kustuta" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index c62b1fa13e..565c6e2090 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 20:10+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,18 +82,18 @@ msgid "" "administrator" msgstr "Tundmatu tõrge. Palun kontrolli süsteemi seadeid või võta ühendust oma süsteemi administraatoriga" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Nõutavad on puudu." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Järgmised kasutajad pole seadistatud krüpteeringuks:" @@ -101,9 +101,9 @@ msgstr "Järgmised kasutajad pole seadistatud krüpteeringuks:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Algne krüpteerimine käivitati... See võib võtta natuke aega. Palun oota." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Salvestamine..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 8b5da6014e..1a9f3c5430 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Ligipääs on antud" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Viga Dropboxi salvestusruumi seadistamisel" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Anna ligipääs" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Viga Google Drive'i salvestusruumi seadistamisel" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi." -#: lib/config.php:465 +#: lib/config.php:516 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 "Hoiatus: PHP-s puudub FTP tugi. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Kasutajad" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Kustuta" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Luba kasutajatele väline salvestamine" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Luba kasutajatel ühendada külge nende enda välised salvestusseadmed" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL root sertifikaadid" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Impordi root sertifikaadid" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 5e8201efb5..1ba131b983 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,10 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "See jagamine on parooliga kaitstud" @@ -55,32 +59,16 @@ msgstr "jagamine on peatatud" msgid "For more info, please ask the person who sent this link." msgstr "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s jagas sinuga kausta %s" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s jagas sinuga faili %s" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Lae alla" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Lae üles" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Tühista üleslaadimine" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Eelvaadet pole saadaval" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Otsene link" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index b14ecfceb1..1f1eafe895 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s jäädavalt kustutamine ebaõnnestus" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "%s ei saa taastada" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Viga" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "taastatud" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Siin pole midagi. Sinu prügikast on tühi!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nimi" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Taasta" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Kustutatud" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Kustuta" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Kustutatud failid" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 7f76fa1522..6937b6b9a7 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,38 +19,38 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Rakendit \"%s\" ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Ühegi rakendi nime pole määratletud" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Abiinfo" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Isiklik" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Seaded" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Kasutajad" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." @@ -63,15 +63,10 @@ msgstr "Tundmatu failitüüp" msgid "Invalid image" msgstr "Vigane pilt" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "ei suuda avada \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." @@ -94,74 +89,78 @@ msgid "" "administrator." msgstr "Palun laadi failid alla eraldi väiksemate osadena või palu abi oma süsteemihaldurilt." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Ühegi lähteallikat pole rakendi paigalduseks määratletud" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Ühtegi aadressi pole määratletud rakendi paigalduseks veebist" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Ühtegi teed pole määratletud paigaldamaks rakendit kohalikust failist" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "%s tüüpi arhiivid pole toetatud" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Arhiivi avamine ebaõnnestus rakendi paigalduse käigus" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Rakend ei paku ühtegi info.xml faili" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Rakendit ei saa paigaldada, kuna sisaldab lubamatud koodi" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Rakendit ei saa paigaldada, kuna see pole ühilduv selle ownCloud versiooniga." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Rakendit ei saa paigaldada, kuna see sisaldab \n\n\ntrue\n\nmärgendit, mis pole lubatud mitte veetud (non shipped) rakendites" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Rakendit ei saa paigaldada, kuna selle versioon info.xml/version pole sama, mis on märgitud rakendite laos." -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Rakendi kataloog on juba olemas" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Ei saa luua rakendi kataloogi. Palun korrigeeri õigusi. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Rakendus pole sisse lülitatud" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Autentimise viga" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Kontrollkood aegus. Paelun lae leht uuesti." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Failid" @@ -201,8 +200,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Sisesta kas juba olemasolev konto või administrator." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL kasutajatunnus ja/või parool pole õiged" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -229,21 +228,21 @@ msgstr "Tõrkuv käsk oli: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL kasutaja '%s'@'localhost' on juba olemas." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Kustuta see kasutaja MySQL-ist" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL kasutaja '%s'@'%%' on juba olemas" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Kustuta see kasutaja MySQL-ist." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -270,66 +269,72 @@ msgstr "Määra admin kasutajanimi." msgid "Set an admin password." msgstr "Määra admini parool." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Palun tutvu veelkord paigalduse juhenditega." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ei leia kategooriat \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekundit tagasi" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutit tagasi" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n tundi tagasi" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "täna" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "eile" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n päeva tagasi" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "viimasel kuul" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n kuud tagasi" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "viimasel aastal" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index e8e52f6d3d..b4629be9ec 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 10:10+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,48 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Krüpteerimine" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "App Store'i nimekirja laadimine ebaõnnestus" @@ -115,62 +157,90 @@ msgstr "Tagarakend ei toeta parooli vahetust, kuid kasutaja krüptimisvõti uuen msgid "Unable to change password" msgstr "Ei suuda parooli muuta" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Kasutaja dokumentatsioon" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Uuenda versioonile {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Lülita välja" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Lülita sisse" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Palun oota..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Viga rakenduse keelamisel" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Viga rakenduse lubamisel" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Uuendamine..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Viga rakenduse uuendamisel" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Viga" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Uuenda" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Uuendatud" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Vali profiili pilt" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrüpteerin faile... Palun oota, see võib võtta veidi aega." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Salvestamine..." - #: js/users.js:47 msgid "deleted" msgstr "kustutatud" @@ -183,40 +253,40 @@ msgstr "tagasi" msgid "Unable to remove user" msgstr "Kasutaja eemaldamine ebaõnnestus" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupid" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupi admin" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Kustuta" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "lisa grupp" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Viga kasutaja loomisel" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Hoiatus: kasutaja \"{user}\" kodukataloog on juba olemas" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Eesti" @@ -240,18 +310,42 @@ msgstr "Veateated ja tõsised probleemid" msgid "Fatal issues only" msgstr "Ainult tõsised probleemid" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Turvahoiatus" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Sa kasutad %s ligipääsuks HTTP protokolli. Soovitame tungivalt seadistada oma server selle asemel kasutama HTTPS-i." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -260,68 +354,68 @@ msgid "" "root." msgstr "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, ei toimi. Soovitame tungivalt veebiserver seadistada selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi juurkataloogist mujale." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Paigalduse hoiatus" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Palun kontrolli uuesti paigaldusjuhendeid." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Moodul 'fileinfo' puudub" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "PHP versioon on aegunud" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3.8 või uuemale, kuna varasemad versioonid on teadaolevalt vigased. On võimalik, et see käesolev paigaldus ei toimi korrektselt." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Lokalisatsioon ei toimi" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Internetiühendus ei toimi" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -330,118 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Käivita toiming igal lehe laadimisel" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php on registreeritud webcron teenuses, et käivitada fail cron.php iga 15 minuti tagant üle http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Kasuta süsteemi cron teenust, et käivitada fail cron.php iga 15 minuti tagant." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Jagamine" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Luba Share API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada Share API-t" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Luba lingid" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Luba avalikud üleslaadimised" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Luba kasutajatel üleslaadimine teiste poolt oma avalikult jagatud kataloogidesse " -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Luba teavitused e-postiga" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Palun ühendu oma %s üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Logi" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Rohkem" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Vähem" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versioon" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Arendatud ownCloud kogukonna poolt. Lähtekood on avaldatud ja kaetud AGPL litsentsiga." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Lisa oma rakendus" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Veel rakendusi" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Vali programm" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-litsenseeritud " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Kasutaja dokumentatsioon" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Administraatori dokumentatsioon" @@ -508,7 +650,7 @@ msgstr "Näita veelkord Esmase Käivituse Juhendajat" msgid "You have used %s of the available %s" msgstr "Kasutad %s saadavalolevast %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Parool" @@ -520,151 +662,149 @@ msgstr "Sinu parooli on muudetud" msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Täispikk nimi" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-post" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profiili pilt" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Laadi uus üles" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Vali failidest uus" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Eemalda pilt" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Kas png või jpg. Võimalikult ruudukujuline, kuid sul on võimalus seda veel lõigata." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Sinu avatari pakub sinu algne konto." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Katkesta" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Vali profiilipildiks" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Keel" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Kasuta seda aadressi oma failidele ligipääsuks WebDAV kaudu" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Krüpteerimine" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Sisselogimise parool" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Dekrüpteeri kõik failid" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Kasutajanimi" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Lisa" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Admini parooli taastamine" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Sisesta taasteparool kasutaja failide taastamiseks paroolivahetuse käigus" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Vaikimisi maht" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Piiramatult" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Muu" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Kasutajanimi" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Maht" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "Muuda täispikka nime" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "määra uus parool" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Vaikeväärtus" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index afe426888c..e8915930b1 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,43 +88,43 @@ msgstr "Korras" msgid "Error" msgstr "Viga" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Seadistus on korras" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Seadistus on vigane" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Seadistus on puudulik" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Vali grupid" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Vali objekti klassid" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Vali atribuudid" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Ühenduse testimine õnnestus" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Ühenduse testimine ebaõnnestus" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Kinnita kustutamine" @@ -142,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "%s kasutaja leitud" msgstr[1] "%s kasutajat leitud" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Vigane server" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Ei suuda leida soovitud funktsioonaalsust" @@ -164,8 +164,8 @@ msgstr "Abiinfo" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Piira ligipääs %s grupile, mis sobivad kriteeriumiga:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -200,8 +200,8 @@ msgid "groups found" msgstr "gruppi leitud" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Mis atribuuti kasutada sisselogimise kasutajatunnusena:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -268,8 +268,8 @@ msgstr "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaar #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Piira ligipääs %s kasutajale, kes sobivad kriteeriumiga:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -411,41 +411,51 @@ msgstr "Grupi otsingu atribuudid" msgid "Group-Member association" msgstr "Grupiliikme seotus" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Spetsiifilised atribuudid" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Mahupiirangu atribuut" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Vaikimisi mahupiirang" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "baitides" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-posti väli" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Kasutaja kodukataloogi nimetamise reegel" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Kasutajanime (vaikeväärtus) kasutamiseks jäta tühjaks. Vastasel juhul määra LDAP/AD omadus." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Sisemine kasutajanimi" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Vaikimisi tekitatakse sisemine kasutajanimi UUID atribuudist. See tagab, et kasutajanimi on unikaalne ja sümboleid pole vaja muuta. Sisemisel kasutajatunnuse puhul on lubatud ainult järgmised sümbolid: [ a-zA-Z0-9_.@- ]. Muud sümbolid asendatakse nende ASCII vastega või lihtsalt hüljatakse. Tõrgete korral lisatakse number või suurendatakse seda. Sisemist kasutajatunnust kasutatakse kasutaja sisemiseks tuvastamiseks. Ühtlasi on see ownCloudis kasutaja vaikimisi kodukataloogi nimeks. See on ka serveri URLi osaks, näiteks kõikidel *DAV teenustel. Selle seadistusega saab tühistada vaikimisi käitumise. Saavutamaks sarnast käitumist eelnevate ownCloud 5 versioonidega, sisesta kasutaja kuvatava nime atribuut järgnevale väljale. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Sisemise kasutajatunnuse atribuut:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Tühista UUID tuvastus" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID atribuut kasutajatele:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID atribuut gruppidele:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Puhasta LDAP-Grupinimi Grupp Vastendus" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index ccd0336727..b446645ab4 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -19,12 +19,7 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s-ek »%s« zurekin partekatu du" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Ezin izan da posta bidali hurrengo erabiltzaileei: %s" @@ -74,135 +69,139 @@ msgstr "Ez dago behin-behineko profil irudirik, saiatu berriro" msgid "No crop data provided" msgstr "Ez da ebaketarako daturik zehaztu" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Igandea" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Astelehena" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Asteartea" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Asteazkena" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Osteguna" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Ostirala" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Larunbata" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Urtarrila" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Otsaila" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Martxoa" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Apirila" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maiatza" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Ekaina" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Uztaila" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Abuztua" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Iraila" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Urria" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Azaroa" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Abendua" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "segundu" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "gaur" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "atzo" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "hilabete" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "joan den urtean" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "urte" @@ -270,6 +269,26 @@ msgstr "({count} hautatuta)" msgid "Error loading file exists template" msgstr "Errorea fitxategia existitzen da txantiloiak kargatzerakoan" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Elkarbanatuta" @@ -278,12 +297,12 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Errorea" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -295,123 +314,123 @@ msgstr "Errore bat egon da elkarbanaketa desegitean" msgid "Error while changing permissions" msgstr "Errore bat egon da baimenak aldatzean" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner}-k zu eta {group} taldearekin elkarbanatuta" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner}-k zurekin elkarbanatuta" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Elkarbanatu erabiltzaile edo taldearekin..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Elkarbanatu lotura" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Pasahitza" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Gaitu igotze publikoa" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Postaz bidali lotura " -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Bidali" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Ezarri muga data" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Muga data" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Elkarbanatu eposta bidez:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "taldea" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "jakinarazi eposta bidez" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "sortu" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "eguneratu" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "ezabatu" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "elkarbanatu" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Eposta bidalia" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Abisua" @@ -458,11 +477,17 @@ msgstr "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat Ziur zaude posta/pasahitza zuzenak direla?" msgid "You will receive a link to reset your password via Email." msgstr "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Erabiltzaile izena" @@ -527,7 +552,7 @@ msgstr "Pertsonala" msgid "Users" msgstr "Erabiltzaileak" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplikazioak" @@ -637,49 +662,47 @@ msgstr "Zure zerbitrzaria ongi konfiguratzeko, mezedez admin account" msgstr "Sortu kudeatzaile kontu bat" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Aurreratua" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Bukatu konfigurazioa" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Bukatzen..." @@ -695,7 +718,7 @@ msgstr "Aplikazio honek ongi funtzionatzeko JavaScript gaitua behar du. Mesedez msgid "%s is available. Get more information on how to update." msgstr "%s erabilgarri dago. Eguneratzeaz argibide gehiago eskuratu." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Saioa bukatu" @@ -721,28 +744,28 @@ msgstr "Zerbitzari aldeko autentifikazioak huts egin du!" msgid "Please contact your administrator." msgstr "Mesedez jarri harremetan zure administradorearekin." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Galdu duzu pasahitza?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "gogoratu" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Hasi saioa" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Beste erabiltzaile izenak" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Kaixo

%s-ek %s zurekin partekatu duela jakin dezazun.
\nIkusi ezazu

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 98e24d2cd0..1fbb62dabe 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# asieriko , 2013 +# asieriko , 2013-2014 # Piarres Beobide , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -29,36 +29,48 @@ msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" msgid "Could not move %s" msgstr "Ezin dira fitxategiak mugitu %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Fitxategi izena ezin da hutsa izan." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Fitxategi izenak ezin du \"/\" izan. Mesedez hautatu beste izen bat." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s izena dagoeneko erabilita dago %s karpetan. Mesdez hautatu izen ezberdina." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Ez da jatorri baliogarria" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Zerbitzaria ez dago URLak irekitzeko baimendua, mesedez egiaztatu zerbitzariaren konfigurazioa" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Errorea %s %sra deskargatzerakoan" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Errorea fitxategia sortzerakoan" @@ -66,236 +78,231 @@ msgstr "Errorea fitxategia sortzerakoan" msgid "Folder name cannot be empty." msgstr "Karpeta izena ezin da hutsa izan." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Karpeta izenak ezin du \"/\" izan. Mesedez hautatu beste izen bat." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Errorea karpeta sortzerakoan" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Ezin da igoera direktorioa ezarri." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Lekuko baliogabea" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Ez da errorerik egon, fitxategia ongi igo da" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategia HTML formularioan zehaztutako MAX_FILE_SIZE direktiba baino handidagoa da." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Baliogabeko karpeta." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Fitxategiak" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Ezin da {filename} igo karpeta bat delako edo 0 byte dituelako" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Ez dago leku nahikorik." +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Ezin da zerbitzaritik emaitzik lortu" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URLa ezin da hutsik egon" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Ezin izan da fitxategia sortu" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Ezin izan da karpeta sortu" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" -msgstr "" +msgstr "Errorea URLa eskuratzerakoan" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Elkarbanatu" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Zain" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Ezin izan da fitxategia berrizendatu" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "desegin" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Errorea fitxategia ezabatzerakoan." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" msgstr[1] "%n fitxategi" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} eta {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Fitxategi %n igotzen" msgstr[1] "%n fitxategi igotzen" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' ez da fitxategi izen baliogarria." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Errorea fitxategia mugitzean" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Errorea" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Izena" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Tamaina" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Aldatuta" @@ -303,12 +310,12 @@ msgstr "Aldatuta" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s ezin da berrizendatu" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Igo" @@ -344,69 +351,69 @@ msgstr "ZIP fitxategien gehienezko tamaina" msgid "Save" msgstr "Gorde" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Berria" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Testu fitxategi berria" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Testu fitxategia" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Karpeta berria" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Karpeta" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Estekatik" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ezabatutako fitxategiak" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Ez duzu fitxategiak hona igotzeko edo hemen sortzeko baimenik" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Ezabatu" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Igoera handiegia da" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index 5384b72963..9013cba3e0 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-07 14:40+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -83,18 +83,18 @@ msgid "" "administrator" msgstr "Errore ezezaguna mesedez egiaztatu zure sistemaren ezarpenak edo harremanetan jarri zure administradorearekin" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Eskakizun batzuk ez dira betetzen." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Mesedez ziurtatu PHP 5.3.3 edo berriago bat instalatuta dagoela eta OpenSSL PHP hedapenarekin gaitua eta ongi konfiguratuta dagoela. Oraingoz, enkriptazio aplikazioa desgaituta dago." -#: hooks/hooks.php:278 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:" @@ -102,9 +102,9 @@ msgstr "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Hasierako enkriptazioa hasi da... Honek denbora har dezake. Mesedez itxaron." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Gordetzen..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 68f29e218e..4fb61478a3 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Piarres Beobide \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,40 +18,44 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Sarrera baimendua" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Errore bat egon da Dropbox biltegiratzea konfiguratzean" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Baimendu sarrera" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:465 +#: lib/config.php:516 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 "Abisua: PHPren FTP modulua ez dago instalatuta edo gaitua. FTP partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Erabiltzaileak" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Ezabatu" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Gaitu erabiltzaileentzako Kanpo Biltegiratzea" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Baimendu erabiltzaileak bere kanpo biltegiratzeak muntatzen" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL erro ziurtagiriak" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Inportatu Erro Ziurtagiria" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 608ec647a9..5a6faa950e 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-14 21:50+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,6 +18,10 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Elkarbanatutako hau pasahitzarekin babestuta dago" @@ -54,32 +58,16 @@ msgstr "elkarbanatzea ez dago gaituta" msgid "For more info, please ask the person who sent this link." msgstr "Informazio gehiagorako, mesedez eskatu lotura hau bidali zuen pertsonari" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%sk zurekin %s karpeta elkarbanatu du" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%sk zurekin %s fitxategia elkarbanatu du" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Deskargatu" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Igo" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Ezeztatu igoera" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Ez dago aurrebista eskuragarririk hauentzat " - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Lotura zuzena" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 1687760864..d36439ff1f 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,44 +18,48 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Ezin izan da %s betirako ezabatu" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Ezin izan da %s berreskuratu" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Errorea" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "Berrezarrita" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ez dago ezer ez. Zure zakarrontzia hutsik dago!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Izena" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Berrezarri" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Ezabatuta" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Ezabatu" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Ezabatutako Fitxategiak" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index aca65bbef7..e9ea92c468 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -19,38 +19,38 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "\"%s\" Aplikazioa ezin da instalatu ownCloud bertsio honekin bateragarria ez delako" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Ez da aplikazioaren izena zehaztu" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Laguntza" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Pertsonala" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Ezarpenak" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Erabiltzaileak" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." @@ -63,15 +63,10 @@ msgstr "Fitxategi mota ezezaguna" msgid "Invalid image" msgstr "Baliogabeko irudia" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "ezin da \"%s\" ireki" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." @@ -94,74 +89,78 @@ msgid "" "administrator." msgstr "Mesedez deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Ez da jatorririk zehaztu aplikazioa instalatzerakoan" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Ez da href parametrorik zehaztu http bidez aplikazioa instalatzerakoan" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Ez da kokalekurik zehaztu fitxategi lokal moduan aplikazioa instalatzerakoan" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "%s motako fitxategiak ez dira onartzen" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Fitxategia irekitzeak huts egin du aplikazioa instalatzerakoan" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Aplikazioak ez du info.xml fitxategia" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Aplikazioa ezin da instalatu bertan duen baimendu gabeko kodea dela eta" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Aplikazioa ezin da instalatu ownCloud bertsio honekin bateragarria ez delako" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Aplikazioa ezin da instalatu true etiketa duelako eta etiketa hau ez da onartzen banaketan ez datozen aplikazioetan" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Aplikazioa ezin da instalatu info.xml/version bertsioa ez delako \"app store\"an jartzen duenaren berdina" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Aplikazioaren karpeta dagoeneko existitzen da" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Ezin izan da aplikazioaren karpeta sortu. Mesdez konpondu baimenak. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Aplikazioa ez dago gaituta" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Autentifikazio errorea" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Tokena iraungitu da. Mesedez birkargatu orria." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fitxategiak" @@ -201,8 +200,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Existitzen den kontu bat edo administradorearena jarri behar duzu." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL erabiltzaile edota pasahitza ez dira egokiak." +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -229,21 +228,21 @@ msgstr "Errorea komando honek sortu du: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL '%s'@'localhost' erabiltzailea dagoeneko existitzen da." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Ezabatu erabiltzaile hau MySQLtik" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL '%s'@'%%' erabiltzailea dagoeneko existitzen da" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Ezabatu erabiltzaile hau MySQLtik." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -270,66 +269,72 @@ msgstr "Ezarri administraziorako erabiltzaile izena." msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Mesedez begiratu instalazio gidak." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ezin da \"%s\" kategoria aurkitu" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "segundu" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "gaur" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "atzo" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "joan den hilabetean" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "joan den urtean" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "urte" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index fcb7b61c60..57ceca5c5f 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-10 21:50+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -20,6 +20,48 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Enkriptazioa" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Ezin izan da App Dendatik zerrenda kargatu" @@ -116,61 +158,89 @@ msgstr "" msgid "Unable to change password" msgstr "Ezin izan da pasahitza aldatu" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Erabiltzaile dokumentazioa" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Eguneratu {appversion}-ra" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Ez-gaitu" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Gaitu" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Itxoin mesedez..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Erroea izan da aplikazioa desgaitzerakoan" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Erroea izan da aplikazioa gaitzerakoan" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Eguneratzen..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Errorea aplikazioa eguneratzen zen bitartean" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Errorea" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Eguneratu" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Eguneratuta" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Profil argazkia aukeratu" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Gordetzen..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -184,40 +254,40 @@ msgstr "desegin" msgid "Unable to remove user" msgstr "Ezin izan da erabiltzailea aldatu" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Taldeak" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Talde administradorea" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Ezabatu" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "gehitu taldea" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Errore bat egon da erabiltzailea sortzean" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Abisua: \"{user}\" erabiltzailearen Home karpeta dagoeneko exisititzen da" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Euskera" @@ -241,18 +311,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Segurtasun abisua" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "%s HTTP bidez erabiltzen ari zara. Aholkatzen dizugu zure zerbitzaria HTTPS erabil dezan." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -261,68 +355,68 @@ msgid "" "root." msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Konfiguratu Abisuak" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Mesedez birpasatu instalazio gidak." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "'fileinfo' Modulua falta da" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Zure PHP bertsioa zaharkituta dago" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Zure PHP bertsioa zaharkituta dago. Gure aholkua 5.3.8 edo bertsio berriago batera eguneratzea da, bertsio zaharragoak arazoak ematen baitituzte. Posible da instalazio honek ez funtzionatzea ongi." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Lokala ez dabil" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistemaren lokala ezin da UTF-8 onartzen duen batera ezarri." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Interneteko konexioak ez du funtzionatzen" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -331,118 +425,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Exekutatu zeregin bat orri karga bakoitzean" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php webcron zerbitzu batean erregistratua dago cron.php 15 minuturo http bidez deitzeko." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Erabili sistemaren cron zerbitzua cron.php fitxategia 15 minuturo deitzeko." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Partekatzea" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Gaitu Elkarbanatze APIa" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Baimendu igoera publikoak" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Baimendu erabiltzaileak besteak bere partekatutako karpetetan fitxategiak igotzea" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Baimendu posta bidezko jakinarazpenak" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Gehiago" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "ownCloud komunitateak garatuta, itubruru kodeaAGPL lizentziarekin banatzen da." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Gehitu zure aplikazioa" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "App gehiago" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Aukeratu programa bat" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Ikusi programen orria apps.owncloud.com en" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-lizentziatua " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Erabiltzaile dokumentazioa" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Administradore dokumentazioa" @@ -509,7 +651,7 @@ msgstr "Erakutsi berriz Lehenengo Aldiko Morroia" msgid "You have used %s of the available %s" msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %setatik" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Pasahitza" @@ -521,151 +663,149 @@ msgstr "Zere pasahitza aldatu da" msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Izena" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-posta" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilaren irudia" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Igo berria" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Hautatu berria Fitxategietatik" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Irudia ezabatu" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png edo jpg. Hobe karratua baina mozteko aukera izango duzu." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "Bertan-behera utzi" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Profil irudi bezala aukeratu" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Enkriptazioa" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak." -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Saioa hasteko pasahitza" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Desenkripattu fitxategi guztiak" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Sarrera Izena" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Sortu" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Kudeatzaile pasahitz berreskuratzea" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxategiak berreskuratzeko" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Lehenetsitako Biltegiratzea" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Mugarik gabe" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Bestelakoa" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Erabiltzaile izena" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Biltegiratzea" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "aldatu izena" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "ezarri pasahitz berria" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Lehenetsia" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 017372efcd..167e3b5eb2 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -87,43 +87,43 @@ msgstr "Arrakasta" msgid "Error" msgstr "Errorea" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Konfigurazioa ongi dago" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Konfigurazioa ez dago ongi" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Konfigurazioa osatu gabe dago" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Hautatu taldeak" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Hautatu objektu klaseak" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Hautatu atributuak" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Konexio froga ongi burutu da" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Konexio frogak huts egin du" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ziur zaude Zerbitzariaren Konfigurazioa ezabatu nahi duzula?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Baieztatu Ezabatzea" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "Erabiltzaile %s aurkitu da" msgstr[1] "%s erabiltzaile aurkitu dira" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Baliogabeko hostalaria" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Ezin izan da nahi zen ezaugarria aurkitu" @@ -163,8 +163,8 @@ msgstr "Laguntza" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Mugatu sarrera baldintza hauek betetzen dituzten %s taldetara:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -199,8 +199,8 @@ msgid "groups found" msgstr "talde aurkituta" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Sarrera izen gisa erabiliko den atributua:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -267,8 +267,8 @@ msgstr "Erabiltzaile eta taldeentzako Oinarrizko DN zehaztu dezakezu Aurreratu f #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Mugatu sarrera hurrengo baldintzak betetzen duten %s erabiltzaileei:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -410,41 +410,51 @@ msgstr "Taldekatu Bilaketa Atributuak " msgid "Group-Member association" msgstr "Talde-Kide elkarketak" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atributu Bereziak" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kuota Eremua" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Kuota Lehenetsia" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "bytetan" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Eposta eremua" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Erabiltzailearen Karpeta Nagusia Izendatzeko Patroia" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD atributua." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Barneko erabiltzaile izena" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +470,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Baliogabeko Erabiltzaile Izen atributua" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Gainidatzi UUID antzematea" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +489,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Erabiltzaileentzako UUID atributuak:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Taldeentzako UUID atributuak:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +515,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 0bb862f9f4..6a9f5788f1 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-18 02:03+0200\n" -"PO-Revision-Date: 2012-10-18 00:04+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,227 +17,513 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 -msgid "Application name not provided." +#: ajax/share.php:112 +#, php-format +msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/vcategories/add.php:29 -msgid "No category to add?" +#: ajax/update.php:11 +msgid "Turned on maintenance mode" msgstr "" -#: ajax/vcategories/add.php:36 -msgid "This category already exists: " +#: ajax/update.php:14 +msgid "Turned off maintenance mode" msgstr "" -#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 -msgid "Settings" +#: ajax/update.php:17 +msgid "Updated database" msgstr "" -#: js/js.js:670 +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 msgid "January" msgstr "" -#: js/js.js:670 +#: js/config.php:48 msgid "February" msgstr "" -#: js/js.js:670 +#: js/config.php:49 msgid "March" msgstr "" -#: js/js.js:670 +#: js/config.php:50 msgid "April" msgstr "" -#: js/js.js:670 +#: js/config.php:51 msgid "May" msgstr "" -#: js/js.js:670 +#: js/config.php:52 msgid "June" msgstr "" -#: js/js.js:671 +#: js/config.php:53 msgid "July" msgstr "" -#: js/js.js:671 +#: js/config.php:54 msgid "August" msgstr "" -#: js/js.js:671 +#: js/config.php:55 msgid "September" msgstr "" -#: js/js.js:671 +#: js/config.php:56 msgid "October" msgstr "" -#: js/js.js:671 +#: js/config.php:57 msgid "November" msgstr "" -#: js/js.js:671 +#: js/config.php:58 msgid "December" msgstr "" +#: js/js.js:458 +msgid "Settings" +msgstr "" + +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 +msgid "seconds ago" +msgstr "" + +#: js/js.js:993 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:994 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:995 +msgid "today" +msgstr "" + +#: js/js.js:996 +msgid "yesterday" +msgstr "" + +#: js/js.js:997 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:998 +msgid "last month" +msgstr "" + +#: js/js.js:999 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1000 +msgid "months ago" +msgstr "" + +#: js/js.js:1001 +msgid "last year" +msgstr "" + +#: js/js.js:1002 +msgid "years ago" +msgstr "" + #: js/oc-dialogs.js:123 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 -msgid "Cancel" +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:159 -msgid "No" -msgstr "" - -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:172 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:177 +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 msgid "Ok" msgstr "" -#: js/oc-vcategories.js:68 -msgid "No categories selected for deletion." +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 -#: js/share.js:509 +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "Ezeztatu" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:103 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" -#: js/share.js:114 +#: js/share.js:171 msgid "Error while unsharing" msgstr "" -#: js/share.js:121 +#: js/share.js:178 msgid "Error while changing permissions" msgstr "" -#: js/share.js:130 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:132 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:137 -msgid "Share with" +#: js/share.js:214 +msgid "Share with user or group …" msgstr "" -#: js/share.js:142 -msgid "Share with link" +#: js/share.js:220 +msgid "Share link" msgstr "" -#: js/share.js:143 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:152 +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:153 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:185 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:187 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:214 +#: js/share.js:324 js/share.js:363 +msgid "group" +msgstr "" + +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:250 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:271 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:283 +#: js/share.js:409 +msgid "notify by email" +msgstr "" + +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:285 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:288 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:291 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:294 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:297 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:322 js/share.js:484 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:497 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:509 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: lostpassword/index.php:26 -msgid "ownCloud password reset" +#: js/share.js:742 +msgid "Sending ..." +msgstr "" + +#: js/share.js:753 +msgid "Email sent" +msgstr "" + +#: js/share.js:777 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "Ezabatu" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" -#: lostpassword/templates/lostpassword.php:3 +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:5 -msgid "Requested" -msgstr "" - -#: lostpassword/templates/lostpassword.php:8 -msgid "Login failed!" -msgstr "" - -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:14 -msgid "Request reset" +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" msgstr "" #: lostpassword/templates/resetpassword.php:4 @@ -258,13 +544,13 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Pertsonala" #: strings.php:6 msgid "Users" msgstr "" -#: strings.php:7 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -276,148 +562,237 @@ msgstr "" msgid "Help" msgstr "" +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + #: templates/403.php:12 msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" msgstr "" -#: templates/edit_categories_dialog.php:14 -msgid "Add" +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 msgid "Security Warning" msgstr "" -#: templates/installation.php:24 +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:34 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:40 msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." msgstr "" -#: templates/installation.php:36 -msgid "Create an admin account" +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." msgstr "" #: templates/installation.php:48 -msgid "Advanced" +msgid "Create an admin account" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:38 -msgid "web services under your control" +#: templates/installation.php:150 +msgid "Finishing …" msgstr "" -#: templates/layout.user.php:34 +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." +#: templates/login.php:60 +msgid "Alternative Logins" msgstr "" -#: templates/part.pagenavi.php:3 -msgid "prev" -msgstr "" - -#: templates/part.pagenavi.php:20 -msgid "next" -msgstr "" - -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 +#: templates/mail.php:15 +#, php-format msgid "" -"Please verify your password.
For security reasons you may be " -"occasionally asked to enter your password again." +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" -#: templates/verify.php:16 -msgid "Verify" +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 473f8ab054..b553d1d733 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-19 02:03+0200\n" -"PO-Revision-Date: 2012-10-19 00:04+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,199 +17,304 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/upload.php:20 +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:57 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:21 -msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini" +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:22 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:24 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:25 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: appinfo/app.php:6 +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/fileactions.js:108 templates/index.php:62 -msgid "Unshare" +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/fileactions.js:110 templates/index.php:64 -msgid "Delete" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/fileactions.js:182 -msgid "Rename" +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/filelist.js:194 js/filelist.js:196 -msgid "{new_name} already exists" -msgstr "" - -#: js/filelist.js:194 js/filelist.js:196 -msgid "replace" -msgstr "" - -#: js/filelist.js:194 -msgid "suggest name" -msgstr "" - -#: js/filelist.js:194 js/filelist.js:196 -msgid "cancel" -msgstr "" - -#: js/filelist.js:243 -msgid "replaced {new_name}" -msgstr "" - -#: js/filelist.js:243 js/filelist.js:245 js/filelist.js:277 js/filelist.js:279 -msgid "undo" -msgstr "" - -#: js/filelist.js:245 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:277 -msgid "unshared {files}" -msgstr "" - -#: js/filelist.js:279 -msgid "deleted {files}" -msgstr "" - -#: js/files.js:179 -msgid "generating ZIP-file, it may take some time." -msgstr "" - -#: js/files.js:214 -msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" - -#: js/files.js:214 -msgid "Upload Error" -msgstr "" - -#: js/files.js:242 js/files.js:347 js/files.js:377 -msgid "Pending" -msgstr "" - -#: js/files.js:262 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:265 js/files.js:310 js/files.js:325 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:328 js/files.js:361 +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/files.js:430 +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:500 -msgid "Invalid name, '/' is not allowed." +#: js/file-upload.js:562 +msgid "URL cannot be empty" msgstr "" -#: js/files.js:681 -msgid "{count} files scanned" +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/files.js:689 -msgid "error while scanning" +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" msgstr "" -#: js/files.js:762 templates/index.php:48 +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:591 +msgid "undo" +msgstr "" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:379 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error moving file" +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error" +msgstr "" + +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:763 templates/index.php:56 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:764 templates/index.php:58 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:791 -msgid "1 folder" +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: js/files.js:793 -msgid "{count} folders" +#: lib/app.php:111 +#, php-format +msgid "%s could not be renamed" msgstr "" -#: js/files.js:801 -msgid "1 file" -msgstr "" - -#: js/files.js:803 -msgid "{count} files" -msgstr "" - -#: js/files.js:846 -msgid "seconds ago" -msgstr "" - -#: js/files.js:847 -msgid "1 minute ago" -msgstr "" - -#: js/files.js:848 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/files.js:851 -msgid "today" -msgstr "" - -#: js/files.js:852 -msgid "yesterday" -msgstr "" - -#: js/files.js:853 -msgid "{days} days ago" -msgstr "" - -#: js/files.js:854 -msgid "last month" -msgstr "" - -#: js/files.js:856 -msgid "months ago" -msgstr "" - -#: js/files.js:857 -msgid "last year" -msgstr "" - -#: js/files.js:858 -msgid "years ago" +#: lib/helper.php:14 templates/index.php:23 +msgid "Upload" msgstr "" #: templates/admin.php:5 @@ -220,80 +325,96 @@ msgstr "" msgid "Maximum upload size" msgstr "" -#: templates/admin.php:7 +#: templates/admin.php:10 msgid "max. possible: " msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." msgstr "" -#: templates/admin.php:9 +#: templates/admin.php:17 msgid "Enable ZIP-download" msgstr "" -#: templates/admin.php:11 +#: templates/admin.php:20 msgid "0 is unlimited" msgstr "" -#: templates/admin.php:12 +#: templates/admin.php:22 msgid "Maximum input size for ZIP files" msgstr "" -#: templates/admin.php:14 +#: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Gorde" -#: templates/index.php:7 +#: templates/index.php:6 msgid "New" msgstr "" #: templates/index.php:9 -msgid "Text file" +msgid "New text file" msgstr "" #: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:13 +msgid "New folder" +msgstr "" + +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:11 -msgid "From url" +#: templates/index.php:17 +msgid "From link" msgstr "" -#: templates/index.php:20 -msgid "Upload" +#: templates/index.php:41 +msgid "Deleted files" msgstr "" -#: templates/index.php:27 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:50 -msgid "Share" -msgstr "" - -#: templates/index.php:52 +#: templates/index.php:74 msgid "Download" -msgstr "" +msgstr "Deskargatu" -#: templates/index.php:75 +#: templates/index.php:85 templates/index.php:86 +msgid "Delete" +msgstr "Ezabatu" + +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:77 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:82 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:85 +#: templates/index.php:108 msgid "Current scanning" msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/eu_ES/files_encryption.po b/l10n/eu_ES/files_encryption.po index 04e045a38e..8e857a6076 100644 --- a/l10n/eu_ES/files_encryption.po +++ b/l10n/eu_ES/files_encryption.po @@ -6,29 +6,196 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-13 23:12+0200\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: templates/settings.php:3 +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" msgstr "" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" msgstr "" -#: templates/settings.php:5 -msgid "None" +#: templates/settings-admin.php:11 +msgid "Recovery key password" msgstr "" -#: templates/settings.php:10 -msgid "Enable Encryption" +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" msgstr "" diff --git a/l10n/eu_ES/files_external.po b/l10n/eu_ES/files_external.po index 834d0a9c29..2795b2e529 100644 --- a/l10n/eu_ES/files_external.po +++ b/l10n/eu_ES/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-02 23:16+0200\n" -"PO-Revision-Date: 2012-10-02 21:17+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,90 +17,111 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:25 js/google.js:7 js/google.js:23 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:28 js/dropbox.js:74 js/dropbox.js:79 js/dropbox.js:86 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:34 js/dropbox.js:45 js/google.js:31 js/google.js:40 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:73 js/google.js:72 -msgid "Fill out all required fields" -msgstr "" - -#: js/dropbox.js:85 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:26 js/google.js:73 js/google.js:78 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:516 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:519 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + #: templates/settings.php:3 msgid "External Storage" msgstr "" -#: templates/settings.php:7 templates/settings.php:19 -msgid "Mount point" -msgstr "" - -#: templates/settings.php:8 -msgid "Backend" -msgstr "" - -#: templates/settings.php:9 -msgid "Configuration" +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" msgstr "" #: templates/settings.php:10 -msgid "Options" +msgid "External storage" msgstr "" #: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 msgid "Applicable" msgstr "" -#: templates/settings.php:23 -msgid "Add mount point" +#: templates/settings.php:33 +msgid "Add storage" msgstr "" -#: templates/settings.php:54 templates/settings.php:62 +#: templates/settings.php:90 msgid "None set" msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:91 msgid "All Users" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:92 msgid "Groups" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:100 msgid "Users" msgstr "" -#: templates/settings.php:77 templates/settings.php:107 +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" -msgstr "" +msgstr "Ezabatu" -#: templates/settings.php:87 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:88 -msgid "Allow users to mount their own external storage" +#: templates/settings.php:130 +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:99 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:113 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/eu_ES/files_sharing.po b/l10n/eu_ES/files_sharing.po index 73be8ca650..449e26af6b 100644 --- a/l10n/eu_ES/files_sharing.po +++ b/l10n/eu_ES/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,32 +17,56 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 msgid "Password" msgstr "" -#: templates/authenticate.php:6 -msgid "Submit" +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." msgstr "" -#: templates/public.php:9 +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:11 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:14 templates/public.php:30 -msgid "Download" -msgstr "" - -#: templates/public.php:29 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:37 -msgid "web services under your control" +#: templates/public.php:48 +msgid "Direct link" msgstr "" diff --git a/l10n/eu_ES/files_trashbin.po b/l10n/eu_ES/files_trashbin.po new file mode 100644 index 0000000000..6705f5cbf2 --- /dev/null +++ b/l10n/eu_ES/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:852 lib/trashbin.php:854 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "Ezabatu" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/eu_ES/files_versions.po b/l10n/eu_ES/files_versions.po index 522299c7a2..1cf374bd9a 100644 --- a/l10n/eu_ES/files_versions.po +++ b/l10n/eu_ES/files_versions.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-01-27 08:21+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,26 +17,27 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 -msgid "Expire all versions" +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" msgstr "" -#: js/versions.js:16 -msgid "History" -msgstr "" - -#: templates/settings-personal.php:4 +#: js/versions.js:14 msgid "Versions" msgstr "" -#: templates/settings-personal.php:7 -msgid "This will delete all existing backup versions of your files" +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: templates/settings.php:3 -msgid "Files Versioning" +#: js/versions.js:87 +msgid "More versions..." msgstr "" -#: templates/settings.php:4 -msgid "Enable" +#: js/versions.js:125 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:155 +msgid "Restore" msgstr "" diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index 120167c892..f24e2561ea 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -6,120 +6,333 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-01 02:01+0200\n" -"PO-Revision-Date: 2012-09-01 00:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:288 +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 msgid "Help" msgstr "" -#: app.php:295 +#: private/app.php:366 msgid "Personal" -msgstr "" +msgstr "Pertsonala" -#: app.php:300 +#: private/app.php:377 msgid "Settings" msgstr "" -#: app.php:305 +#: private/app.php:389 msgid "Users" msgstr "" -#: app.php:312 -msgid "Apps" -msgstr "" - -#: app.php:314 +#: private/app.php:402 msgid "Admin" msgstr "" -#: files.php:280 +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:281 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:281 files.php:306 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: files.php:305 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: json.php:28 +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:63 json.php:75 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" -#: template.php:86 +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:198 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:199 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: template.php:87 -msgid "1 minute ago" -msgstr "" +#: private/template/functions.php:134 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: template.php:88 -#, php-format -msgid "%d minutes ago" -msgstr "" +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: template.php:91 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: template.php:92 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: template.php:93 -#, php-format -msgid "%d days ago" -msgstr "" +#: private/template/functions.php:139 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template.php:94 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: template.php:95 -msgid "months ago" -msgstr "" +#: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template.php:96 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: template.php:97 +#: private/template/functions.php:145 msgid "years ago" msgstr "" - -#: updater.php:66 -#, php-format -msgid "%s is available. Get more information" -msgstr "" - -#: updater.php:68 -msgid "up to date" -msgstr "" - -#: updater.php:71 -msgid "updates check is disabled" -msgstr "" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 10af27c233..5dd0686b02 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-09 02:03+0200\n" -"PO-Revision-Date: 2012-10-09 00:04+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,159 +17,567 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/apps/ocs.php:23 +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + +#: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" -#: ajax/creategroup.php:9 ajax/removeuser.php:13 ajax/setquota.php:18 -#: ajax/togglegroups.php:15 +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 msgid "Authentication error" msgstr "" -#: ajax/creategroup.php:19 +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 msgid "Group already exists" msgstr "" -#: ajax/creategroup.php:28 +#: ajax/creategroup.php:19 msgid "Unable to add group" msgstr "" -#: ajax/enableapp.php:14 -msgid "Could not enable app. " -msgstr "" - -#: ajax/lostpassword.php:14 +#: ajax/lostpassword.php:12 msgid "Email saved" msgstr "" -#: ajax/lostpassword.php:16 +#: ajax/lostpassword.php:14 msgid "Invalid email" msgstr "" -#: ajax/openid.php:16 -msgid "OpenID Changed" -msgstr "" - -#: ajax/openid.php:18 ajax/setlanguage.php:20 ajax/setlanguage.php:23 -msgid "Invalid request" -msgstr "" - -#: ajax/removegroup.php:16 +#: ajax/removegroup.php:13 msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:22 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" -#: ajax/setlanguage.php:18 +#: ajax/setlanguage.php:15 msgid "Language changed" msgstr "" -#: ajax/togglegroups.php:25 +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Eskakizun baliogabea" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" msgstr "" -#: ajax/togglegroups.php:31 +#: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" msgstr "" -#: js/apps.js:28 js/apps.js:65 +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:28 js/apps.js:54 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/personal.js:69 -msgid "Saving..." +#: js/apps.js:95 +msgid "Please wait...." msgstr "" -#: personal.php:47 personal.php:48 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:54 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:244 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "Ezabatu" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" -#: templates/admin.php:14 -msgid "Security Warning" +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" msgstr "" #: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." msgstr "" -#: templates/admin.php:31 -msgid "Cron" -msgstr "" - -#: templates/admin.php:37 -msgid "Execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:43 -msgid "" -"cron.php is registered at a webcron service. Call the cron.php page in the " -"owncloud root once a minute over http." -msgstr "" - -#: templates/admin.php:49 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "" - -#: templates/admin.php:56 -msgid "Sharing" -msgstr "" - -#: templates/admin.php:61 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:62 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:67 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:68 -msgid "Allow users to share items to the public with links" -msgstr "" - -#: templates/admin.php:73 -msgid "Allow resharing" +#: templates/admin.php:71 +msgid "Setup Warning" msgstr "" #: templates/admin.php:74 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:75 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:86 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:89 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:100 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:103 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:114 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:119 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:123 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:127 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:139 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:142 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:156 +msgid "Cron" +msgstr "" + +#: templates/admin.php:163 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:171 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:179 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:184 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:190 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:191 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:198 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:199 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:207 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:208 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:216 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:81 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:88 +#: templates/admin.php:234 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:242 +msgid "Security" +msgstr "" + +#: templates/admin.php:255 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:257 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:263 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:116 +#: templates/admin.php:358 +msgid "Log level" +msgstr "" + +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:124 +#: templates/admin.php:391 +msgid "Less" +msgstr "" + +#: templates/admin.php:397 templates/personal.php:181 +msgid "Version" +msgstr "" + +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:10 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:27 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:31 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:32 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:6 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:9 +msgid "Online Documentation" msgstr "" #: templates/help.php:11 -msgid "Ask a question" +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Problems connecting to help database." +#: templates/help.php:14 +msgid "Bugtracker" msgstr "" -#: templates/help.php:24 -msgid "Go there manually." -msgstr "" - -#: templates/help.php:32 -msgid "Answer" +#: templates/help.php:17 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "" - -#: templates/personal.php:13 -msgid "Download" +msgid "Get the apps to sync your files" msgstr "" #: templates/personal.php:19 -msgid "Your password was changed" +msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:20 -msgid "Unable to change your password" +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:21 -msgid "Current password" -msgstr "" - -#: templates/personal.php:22 -msgid "New password" -msgstr "" - -#: templates/personal.php:23 -msgid "show" -msgstr "" - -#: templates/personal.php:24 -msgid "Change password" -msgstr "" - -#: templates/personal.php:30 -msgid "Email" -msgstr "" - -#: templates/personal.php:31 -msgid "Your email address" -msgstr "" - -#: templates/personal.php:32 -msgid "Fill in an email address to enable password recovery" -msgstr "" - -#: templates/personal.php:38 templates/personal.php:39 -msgid "Language" -msgstr "" - -#: templates/personal.php:44 -msgid "Help translate" -msgstr "" - -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "" - -#: templates/users.php:21 templates/users.php:76 -msgid "Name" -msgstr "" - -#: templates/users.php:23 templates/users.php:77 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" -#: templates/users.php:26 templates/users.php:78 templates/users.php:98 -msgid "Groups" +#: templates/personal.php:40 +msgid "Your password was changed" msgstr "" -#: templates/users.php:32 +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:43 +msgid "Current password" +msgstr "" + +#: templates/personal.php:46 +msgid "New password" +msgstr "" + +#: templates/personal.php:50 +msgid "Change password" +msgstr "" + +#: templates/personal.php:64 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:81 +msgid "Email" +msgstr "" + +#: templates/personal.php:83 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:101 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:112 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:120 templates/personal.php:121 +msgid "Language" +msgstr "" + +#: templates/personal.php:140 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:147 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:149 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:161 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:167 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:172 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:35 -msgid "Default Quota" +#: templates/users.php:34 +msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:55 templates/users.php:138 +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 msgid "Other" +msgstr "Bestea" + +#: templates/users.php:85 +msgid "Username" msgstr "" -#: templates/users.php:80 templates/users.php:112 -msgid "Group Admin" +#: templates/users.php:92 +msgid "Storage" msgstr "" -#: templates/users.php:82 -msgid "Quota" +#: templates/users.php:106 +msgid "change full name" msgstr "" -#: templates/users.php:146 -msgid "Delete" +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" msgstr "" diff --git a/l10n/eu_ES/user_ldap.po b/l10n/eu_ES/user_ldap.po index 2999d7de98..20c3e494db 100644 --- a/l10n/eu_ES/user_ldap.po +++ b/l10n/eu_ES/user_ldap.po @@ -6,165 +6,518 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-08-29 02:01+0200\n" -"PO-Revision-Date: 2012-08-29 00:03+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: eu_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: templates/settings.php:8 +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:963 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "Gorde" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 msgid "Host" msgstr "" -#: templates/settings.php:8 +#: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:9 -msgid "Base DN" +#: templates/part.wizard-server.php:36 +msgid "Port" msgstr "" -#: templates/settings.php:9 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" - -#: templates/settings.php:10 +#: templates/part.wizard-server.php:44 msgid "User DN" msgstr "" -#: templates/settings.php:10 +#: templates/part.wizard-server.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:11 +#: templates/part.wizard-server.php:52 msgid "Password" msgstr "" -#: templates/settings.php:11 +#: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:12 -msgid "User Login Filter" +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" msgstr "" -#: templates/settings.php:12 +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 #, php-format msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action." +"The filter specifies which LDAP users shall have access to the %s instance." msgstr "" -#: templates/settings.php:12 -#, php-format -msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +#: templates/part.wizard-userfilter.php:38 +msgid "users found" msgstr "" -#: templates/settings.php:13 -msgid "User List Filter" +#: templates/part.wizardcontrols.php:5 +msgid "Back" msgstr "" -#: templates/settings.php:13 -msgid "Defines the filter to apply, when retrieving users." +#: templates/part.wizardcontrols.php:8 +msgid "Continue" msgstr "" -#: templates/settings.php:13 -msgid "without any placeholder, e.g. \"objectClass=person\"." +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." msgstr "" #: templates/settings.php:14 -msgid "Group Filter" -msgstr "" - -#: templates/settings.php:14 -msgid "Defines the filter to apply, when retrieving groups." -msgstr "" - -#: templates/settings.php:14 -msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" - -#: templates/settings.php:17 -msgid "Port" -msgstr "" - -#: templates/settings.php:18 -msgid "Base User Tree" -msgstr "" - -#: templates/settings.php:19 -msgid "Base Group Tree" +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." msgstr "" #: templates/settings.php:20 -msgid "Group-Member association" -msgstr "" - -#: templates/settings.php:21 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:21 -msgid "Do not use it for SSL connections, it will fail." +msgid "Connection Settings" msgstr "" #: templates/settings.php:22 -msgid "Case insensitve LDAP server (Windows)" +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." msgstr "" #: templates/settings.php:23 -msgid "Turn off SSL certificate validation." +msgid "Backup (Replica) Host" msgstr "" #: templates/settings.php:23 msgid "" -"If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "" - -#: templates/settings.php:23 -msgid "Not recommended, use for testing only." +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." msgstr "" #: templates/settings.php:24 -msgid "User Display Name Field" -msgstr "" - -#: templates/settings.php:24 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "Backup (Replica) Port" msgstr "" #: templates/settings.php:25 -msgid "Group Display Name Field" +msgid "Disable Main Server" msgstr "" #: templates/settings.php:25 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" msgstr "" #: templates/settings.php:27 -msgid "in bytes" +msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:29 +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 msgid "in seconds. A change empties the cache." msgstr "" #: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:44 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:45 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:46 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:32 -msgid "Help" +#: templates/settings.php:52 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:53 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:54 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:55 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:56 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:59 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/eu_ES/user_webdavauth.po b/l10n/eu_ES/user_webdavauth.po new file mode 100644 index 0000000000..8de443590b --- /dev/null +++ b/l10n/eu_ES/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-01-27 08:22+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 0aa0b374c6..7cc6f5ec25 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,131 +68,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "یکشنبه" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "دوشنبه" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "سه شنبه" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "چهارشنبه" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "پنجشنبه" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "جمعه" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "شنبه" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "ژانویه" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "فبریه" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "مارس" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "آوریل" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "می" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "ژوئن" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "جولای" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "آگوست" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "سپتامبر" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "اکتبر" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "نوامبر" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "دسامبر" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "امروز" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "دیروز" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "ماه قبل" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "سال قبل" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "سال‌های قبل" @@ -264,6 +263,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "اشتراک گذاشته شده" @@ -272,12 +291,12 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "خطا" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -289,123 +308,123 @@ msgstr "خطا درحال لغو اشتراک" msgid "Error while changing permissions" msgstr "خطا در حال تغییر مجوز" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "به اشتراک گذاشته شده با شما و گروه {گروه} توسط {دارنده}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "به اشتراک گذاشته شده با شما توسط { دارنده}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "اشتراک گذاشتن لینک" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "نگهداری کردن رمز عبور" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "گذرواژه" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "اجازه آپلود عمومی" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "پیوند ایمیل برای شخص." -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "ارسال" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "تنظیم تاریخ انقضا" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "تاریخ انقضا" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "از طریق ایمیل به اشتراک بگذارید :" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "گروه" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "ایجاد" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "به روز" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "پاک کردن" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "ایمیل ارسال شد" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "اخطار" @@ -452,11 +471,17 @@ msgstr "به روز رسانی ناموفق بود. لطفا این خطا را msgid "The update was successful. Redirecting you to ownCloud now." msgstr "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}" @@ -476,8 +501,8 @@ msgstr "درخواست رد شده است !
آیا مطمئن هستید ک msgid "You will receive a link to reset your password via Email." msgstr "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "نام کاربری" @@ -521,7 +546,7 @@ msgstr "شخصی" msgid "Users" msgstr "کاربران" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr " برنامه ها" @@ -631,49 +656,47 @@ msgstr "" msgid "Create an admin account" msgstr "لطفا یک شناسه برای مدیر بسازید" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "پیشرفته" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "پایگاه داده برنامه ریزی شدند" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "استفاده خواهد شد" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "جدول پایگاه داده" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "اتمام نصب" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -689,7 +712,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s در دسترس است. برای چگونگی به روز رسانی اطلاعات بیشتر را دریافت نمایید." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "خروج" @@ -715,27 +738,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "آیا گذرواژه تان را به یاد نمی آورید؟" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "بیاد آوری" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "ورود" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "ورود متناوب" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 9f8d9edde2..f2f483ea58 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -4,13 +4,14 @@ # # Translators: # miki_mika1362 , 2013 +# S. Wasim Tayyeb, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,43 +22,55 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. " +msgstr "%s نمی توان جابجا کرد - در حال حاضر پرونده با این نام وجود دارد. " #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" msgstr "%s نمی تواند حرکت کند " -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "نام پرونده نمی تواند خالی باشد." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -65,233 +78,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "قادر به تنظیم پوشه آپلود نمی باشد." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "رمز نامعتبر" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "پرونده‌ها" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "فضای کافی در دسترس نیست" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "اشتراک‌گذاری" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" -msgstr[0] "" +msgstr[0] "در حال بارگذاری %n فایل" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' یک نام پرونده نامعتبر است." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "خطا" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "نام" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "اندازه" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "تاریخ" @@ -299,12 +307,12 @@ msgstr "تاریخ" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s نمیتواند تغییر نام دهد." -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "بارگزاری" @@ -340,69 +348,69 @@ msgstr "حداکثرمقدار برای بار گزاری پرونده های ف msgid "Save" msgstr "ذخیره" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "جدید" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "فایل متنی" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "پوشه جدید" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "پوشه" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "از پیوند" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "فایل های حذف شده" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "اینجا هیچ چیز نیست." -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "دانلود" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "حذف" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "پرونده ها در حال بازرسی هستند لطفا صبر کنید" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "بازرسی کنونی" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 302940faf3..d649081bcf 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,18 +81,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "نیازمندی های گمشده" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -100,9 +100,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "در حال ذخیره سازی..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index dc90b713f0..639992e119 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "مجوز دسترسی صادر شد" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "خطا به هنگام تنظیم فضای دراپ باکس" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr " مجوز اعطا دسترسی" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "لطفا یک کلید و کد امنیتی صحیح دراپ باکس وارد کنید." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "خطا به هنگام تنظیم فضای Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:516 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 امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "کاربران" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "حذف" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "فعال سازی حافظه خارجی کاربر" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "اجازه به کاربران برای متصل کردن منابع ذخیره ی خارجی خودشان" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "گواهی های اصلی SSL " -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "وارد کردن گواهی اصلی" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index f14d78619a..1a177756fc 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -54,32 +58,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%sپوشه %s را با شما به اشتراک گذاشت" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%sفایل %s را با شما به اشتراک گذاشت" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "دانلود" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "بارگزاری" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "متوقف کردن بار گذاری" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "هیچگونه پیش نمایشی موجود نیست" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index f986d7c13c..f6176d9e06 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s را نمی توان برای همیشه حذف کرد" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "%s را نمی توان بازگرداند" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "خطا" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است." -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "نام" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "بازیابی" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "حذف شده" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "حذف" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "فایلهای حذف شده" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index d33ebcdc1f..909994eaf8 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "راه‌نما" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "شخصی" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "تنظیمات" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "کاربران" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "مدیر" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -62,15 +62,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "برنامه فعال نشده است" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "خطا در اعتبار سنجی" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "رمز منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "پرونده‌ها" @@ -200,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "نام کاربری و / یا رمزعبور MySQL معتبر نیست." +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +227,21 @@ msgstr "دستور متخلف عبارت است از: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "کاربرMySQL '%s'@'localhost' درحال حاضر موجود است." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "این کاربر را از MySQL حذف نمایید." +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "کاربر'%s'@'%%' MySQL در حال حاضر موجود است." +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "این کاربر را از MySQL حذف نمایید." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,62 +268,68 @@ msgstr "یک نام کاربری برای مدیر تنظیم نمایید." msgid "Set an admin password." msgstr "یک رمزعبور برای مدیر تنظیم نمایید." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "دسته بندی %s یافت نشد" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "امروز" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "دیروز" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "ماه قبل" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "سال قبل" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "سال‌های قبل" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index f24912b2a7..251811fdfc 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -4,13 +4,15 @@ # # Translators: # miki_mika1362 , 2013 +# hajibaba , 2014 +# S. Wasim Tayyeb, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +20,48 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "رمزگذاری" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "قادر به بارگذاری لیست از فروشگاه اپ نیستم" @@ -87,88 +131,116 @@ msgstr "برنامه را نمی توان به هنگام ساخت." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "رمز عبور اشتباه است" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "هیچ کاربری تعریف نشده است" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "لطفاً یک رمز مدیریتی برای بازیابی کردن تعریف نمایید. در غیر اینصورت اطلاعات تمامی کاربران از دست خواهند رفت." #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "رمز مدیریتی بازیابی غلط است. لطفاً رمز را کنترل کرده و دوباره امتحان نمایید." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "سیستم مدیریتی امکان تغییر رمز را پشتیبانی نمی‌کند. ولی کلید رمزنگاری کاربران با موفقیت به روز شد." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" +msgstr "نمی‌توان رمز را تغییر داد" + +#: js/admin.js:73 +msgid "Sending..." msgstr "" -#: js/apps.js:43 +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "مستندات کاربر" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "بهنگام شده به {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "غیرفعال" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "فعال" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "لطفا صبر کنید ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" -msgstr "" +msgstr "خطا در هنگام غیر فعال سازی برنامه" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" -msgstr "" +msgstr "خطا در هنگام فعال سازی برنامه" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "در حال بروز رسانی..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "خطا در هنگام بهنگام سازی برنامه" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "خطا" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "به روز رسانی" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" +msgstr "انتخاب تصویر پروفایل" + +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:266 +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" - -#: js/personal.js:287 -msgid "Saving..." -msgstr "در حال ذخیره سازی..." +msgstr "در حال بازگشایی رمز فایل‌ها... لطفاً صبر نمایید. این امر ممکن است مدتی زمان ببرد." #: js/users.js:47 msgid "deleted" @@ -182,40 +254,40 @@ msgstr "بازگشت" msgid "Unable to remove user" msgstr "حذف کاربر امکان پذیر نیست" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "گروه ها" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "گروه مدیران" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "حذف" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "افزودن گروه" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "خطا در ایجاد کاربر" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "اخطار: پوشه‌ی خانه برای کاربر \"{user}\" در حال حاضر وجود دارد" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -239,208 +311,276 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "اخطار امنیتی" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " "configure your webserver in a way that the data directory is no longer " "accessible or you move the data directory outside the webserver document " "root." -msgstr "" +msgstr "به احتمال زیاد پوشه‌ی data و فایل‌های شما از طریق اینترنت قابل دسترسی هستند. فایل .htaccess برنامه کار نمی‌کند. ما شدیداً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که پوشه‌ی data شما غیر قابل دسترسی باشد یا اینکه پوشه‌‎ی data را به خارج از ریشه‌ی اصلی وب سرور انتقال دهید." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "هشدار راه اندازی" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "ماژول 'fileinfo' از کار افتاده" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "زبان محلی کار نمی کند." -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "اتصال اینترنت کار نمی کند" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " "installation of 3rd party apps don´t work. Accessing files from remote and " "sending of notification emails might also not work. We suggest to enable " "internet connection for this server if you want to have all features." -msgstr "" +msgstr "این سرور ارتباط اینترنتی ندارد. این بدین معناست که بعضی از امکانات نظیر مرتبط سازی یک منبع ذخیره‌ی خارجی، اطلاعات رسانی در مورد بروزرسانی‌ها یا نصب برنامه های جانبی کار نمی‌کنند. دسترسی به فایل ها از راه دور و ارسال اطلاع رسانی توسط ایمیل ممکن است همچنان کار نکند. ما پیشنهاد می‌کنیم که ارتباط اینترنتی مربوط به این سرور را فعال کنید تا تمامی امکانات را در اختیار داشته باشید." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "زمانبند" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "" +msgstr "cron.php در یک سرویس webcron ثبت شده است که هر 15 دقیقه یک بار بر روی بستر http فراخوانی شود." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "از سرویس کرون سرور استفاده شده است که فایل cron.php را هر 15 دقیقه یک بار فراخوانی کند." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "اشتراک گذاری" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "فعال کردن API اشتراک گذاری" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "اجازه ی لینک ها" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" -msgstr "" +msgstr "اجازه بارگذاری عمومی" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "به کاربران اجازه داده شود که امکان بارگذاری در پوشه هایی که بصورت عمومی به اشتراک گذاشته اند را برای سایرین فعال سازند" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "مجوز اشتراک گذاری مجدد" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "اجازه به کابران برای اشتراک گذاری با همه" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" -msgstr "" +msgstr "مجاز نمودن اطلاع رسانی توسط ایمیل" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "مجاز نمودن ارسال ایمیل توسط کاربر برای فایل‌های به اشتراک گذاشته شده" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "امنیت" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "کلاینت‌ها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." +msgstr "برای فعال سازی یا عدم فعال سازی اجبار استفاده از SSL، لطفاً از طریق HTTPS به %s وصل شوید." + +#: templates/admin.php:275 +msgid "Email Server" msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "نسخه" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "توسعه یافته به وسیله ی انجمن ownCloud, the کد اصلی مجاز زیر گواهی AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "برنامه خود را بیافزایید" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "برنامه های بیشتر" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "یک برنامه انتخاب کنید" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-مجاز از طرف " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "مستندات کاربر" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "مستندات مدیر" @@ -507,7 +651,7 @@ msgstr "راهبری کمکی اجرای اول را دوباره نمایش ب msgid "You have used %s of the available %s" msgstr "شما استفاده کردید از %s از میزان در دسترس %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "گذرواژه" @@ -519,151 +663,149 @@ msgstr "رمز عبور شما تغییر یافت" msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "نام کامل" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "ایمیل" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "تصویر پروفایل" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" -msgstr "" +msgstr "بارگذاری جدید" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" -msgstr "" +msgstr "انتخاب جدید از میان فایل ها" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" -msgstr "" +msgstr "تصویر پاک شود" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" +msgstr "هردوی jpg و png ها مربع گونه می‌باشند. با این حال شما می‌توانید آنها را برش بزنید." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" -msgstr "" +msgstr "یک تصویر پروفایل انتخاب کنید" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "زبان" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "" +msgstr "از این آدرس استفاده کنید تا بتوانید به فایل‌های خود توسط WebDAV دسترسی پیدا کنید" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "رمزگذاری" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" -msgstr "" +msgstr "رمز ورود" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" -msgstr "" +msgstr "تمام فایلها رمزگشایی شود" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "نام کاربری" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "ایجاد کردن" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "مدیریت بازیابی رمز عبور" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "در حین تغییر رمز عبور به منظور بازیابی فایل های کاربران، رمز عبور بازیابی را وارد کنید" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "ذخیره سازی پیش فرض" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "نامحدود" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "دیگر" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "نام کاربری" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "حافظه" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "تنظیم کلمه عبور جدید" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "پیش فرض" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index d3a7150690..90b632b387 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,43 +87,43 @@ msgstr "موفقیت" msgid "Error" msgstr "خطا" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "تست اتصال با موفقیت انجام گردید" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "تست اتصال ناموفق بود" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "آیا واقعا می خواهید پیکربندی کنونی سرور را حذف کنید؟" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "تایید حذف" @@ -139,11 +139,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -161,7 +161,7 @@ msgstr "راه‌نما" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -197,7 +197,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -265,7 +265,7 @@ msgstr "شما می توانید پایه DN را برای کاربران و گ #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -408,41 +408,51 @@ msgstr "گروه صفات جستجو" msgid "Group-Member association" msgstr "انجمن گروه کاربران" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "ویژگی های مخصوص" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "سهمیه بندی انجام نشد." -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "سهمیه بندی پیش فرض" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "در بایت" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "ایمیل ارسال نشد." -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "قانون نامگذاری پوشه خانه کاربر" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "خالی گذاشتن برای نام کاربری (پیش فرض). در غیر این صورت، تعیین یک ویژگی LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "نام کاربری داخلی" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -458,15 +468,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "ویژگی نام کاربری داخلی:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "نادیده گرفتن تشخیص UUID " -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -477,19 +487,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "نام کاربری - نگاشت کاربر LDAP " -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -503,10 +513,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "پاک کردن نام کاربری- LDAP نگاشت کاربر " -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "پاک کردن نام گروه -LDAP گروه نقشه برداری" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index c70d3fda2c..96fdde4c8a 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jan-Erik Finlander , 2014 # Jiri Grönroos , 2013 # ioxo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +20,7 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s jakoi kohteen »%s« kanssasi" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Sähköpostin lähetys seuraaville käyttäjille epäonnistui: %s" @@ -72,137 +68,141 @@ msgstr "Väliaikaista profiilikuvaa ei ole käytettävissä, yritä uudelleen" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Puutteellinen tieto" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "sunnuntai" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "maanantai" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "tiistai" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "keskiviikko" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "torstai" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "perjantai" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "lauantai" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "tammikuu" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "helmikuu" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "maaliskuu" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "huhtikuu" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "toukokuu" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "kesäkuu" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "heinäkuu" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "elokuu" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "syyskuu" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "lokakuu" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "marraskuu" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "joulukuu" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Asetukset" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "tänään" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "eilen" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "viime kuussa" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "viime vuonna" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "vuotta sitten" @@ -212,7 +212,7 @@ msgstr "Valitse" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Virhe ladatessa tiedostopohjia: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -268,6 +268,26 @@ msgstr "({count} valittu)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" +msgstr "Virhe ladatessa mallipohjaa" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" msgstr "" #: js/share.js:51 js/share.js:66 js/share.js:106 @@ -278,12 +298,12 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Virhe" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -295,129 +315,129 @@ msgstr "Virhe jakoa peruttaessa" msgid "Error while changing permissions" msgstr "Virhe oikeuksia muuttaessa" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Jaettu kanssasi käyttäjän {owner} toimesta" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Jaa käyttäjän tai ryhmän kanssa…" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Jaa linkki" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Salasana" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Salli julkinen lähetys" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Lähetä linkki sähköpostitse" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Lähetä" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Aseta päättymispäivä" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Päättymispäivä" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Jaa sähköpostilla:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "ryhmä" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "{item} on jaettu {user} kanssa" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "ilmoita sähköpostitse" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "voi muokata" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "luo" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "päivitä" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "poista" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "jaa" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Sähköposti lähetetty" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Varoitus" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "The object type is not specified." #: js/tags.js:13 msgid "Enter new" @@ -437,7 +457,7 @@ msgstr "Muokkaa tunnisteita" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Virhe ladatessa keskustelupohja: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." @@ -458,11 +478,17 @@ msgstr "Päivitys epäonnistui. Ilmoita ongelmasta Olihan sähköpostiosoitteesi/käyttäjätunnuk msgid "You will receive a link to reset your password via Email." msgstr "Saat sähköpostitse linkin nollataksesi salasanan." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Käyttäjätunnus" @@ -527,7 +553,7 @@ msgstr "Henkilökohtainen" msgid "Users" msgstr "Käyttäjät" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Sovellukset" @@ -553,19 +579,19 @@ msgstr "Virhe tunnisteita poistaessa" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Tunnisteiden kirjoitusvirhe" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Tunisteiden poisto virhe" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Suosituksen kirjoitusvirhe" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Suosituksen poisto virhe" #: templates/403.php:12 msgid "Access forbidden" @@ -592,7 +618,7 @@ msgstr "Jakaminen päättyy %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Kippis!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -618,7 +644,7 @@ msgstr "Turvallista satunnaislukugeneraattoria ei ole käytettävissä, ota käy msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Ilman turvallinen satunnaislukugeneraattori, hyökkääjä saattaa pystyä ennustamaan salasanan tunnuksineen ja ottaa tilisi." #: templates/installation.php:40 msgid "" @@ -637,49 +663,47 @@ msgstr "Lisätietoja palvelimen asetuksien määrittämisestä on saatavilla admin account
" msgstr "Luo ylläpitäjän tunnus" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Lisäasetukset" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datakansio" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Muokkaa tietokantaa" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "käytetään" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Viimeistele asennus" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Valmistellaan…" @@ -695,7 +719,7 @@ msgstr "Tämä sovellus vaatii toimiakseen JavaScriptin käyttöä.
just letting you know that %s shared »%s« with you.
View it!

" -msgstr "Hei sinä!

%s jakoi kohteen »%s« kanssasi.
Tutustu siihen!

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 87ec5b64f6..d1968fdbf5 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -4,14 +4,15 @@ # # Translators: # Jiri Grönroos , 2013 +# nahka , 2014 # ioxo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,36 +30,48 @@ msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemas msgid "Could not move %s" msgstr "Kohteen %s siirto ei onnistunut" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Tiedoston nimi ei voi olla tyhjä." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Tiedoston nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Virheellinen lähde" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Palvelimen ei ole lupa avata verkko-osoitteita. Tarkista palvelimen asetukset" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Virhe ladatessa kohdetta %s sijaintiin %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Virhe tiedostoa luotaessa" @@ -66,236 +79,231 @@ msgstr "Virhe tiedostoa luotaessa" msgid "Folder name cannot be empty." msgstr "Kansion nimi ei voi olla tyhjä." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Kansion nimessä ei saa olla merkkiä \"/\". Valitse toinen nimi." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Virhe kansiota luotaessa" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Virheellinen kansio." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Tiedostot" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kohdetta {filename} ei voi lähettää, koska se on joko kansio tai sen koko on 0 tavua" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Tilaa ei ole riittävästi" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Tuloksien saaminen palvelimelta ei onnistunut." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "Osoite ei voi olla tyhjä" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Tiedoston luominen epäonnistui" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Kansion luominen epäonnistui" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Virhe noutaessa verkko-osoitetta" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Jaa" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "kumoa" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Virhe tiedostoa poistaessa." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" msgstr[1] "Lähetetään %n tiedostoa" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' on virheellinen nimi tiedostolle." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Tallennustila on melkein loppu ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Virhe tiedostoa siirrettäessä" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Virhe" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nimi" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Koko" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Muokattu" @@ -303,12 +311,12 @@ msgstr "Muokattu" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Virheellinen kansion nimi. 'Shared':n käyttö on varattu." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "kohteen %s nimeäminen uudelleen epäonnistui" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Lähetä" @@ -344,69 +352,69 @@ msgstr "ZIP-tiedostojen enimmäiskoko" msgid "Save" msgstr "Tallenna" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Uusi" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Uusi tekstitiedosto" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Tekstitiedosto" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Uusi kansio" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Kansio" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Linkistä" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Poistetut tiedostot" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Käyttöoikeutesi eivät riitä tiedostojen lähettämiseen tai kansioiden luomiseen tähän sijaintiin" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Lataa" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Poista" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index e4e35b2150..c9a41514ac 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # muro , 2013 # Jiri Grönroos , 2013 +# nahka , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,7 +48,7 @@ msgstr "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Yksityisen avaimen salasana päivitetty onnistuneesti." #: ajax/updatePrivateKeyPassword.php:54 msgid "" @@ -82,18 +83,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Seuraavat käyttäjät eivät ole määrittäneet salausta:" @@ -101,9 +102,9 @@ msgstr "Seuraavat käyttäjät eivät ole määrittäneet salausta:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Tallennetaan..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 0813c9ede0..d8d85099fe 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Pääsy sallittu" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Virhe Dropbox levyn asetuksia tehtäessä" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Salli pääsy" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Virhe Google Drive levyn asetuksia tehtäessä" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." -#: lib/config.php:465 +#: lib/config.php:516 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 "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Käyttäjät" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Poista" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Ota käyttöön ulkopuoliset tallennuspaikat" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Salli käyttäjien liittää omia erillisiä tallennusvälineitä" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL-juurivarmenteet" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Tuo juurivarmenne" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 046e8cf960..61f3c79665 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Tämä jako on suojattu salasanalla" @@ -54,32 +58,16 @@ msgstr "jakaminen on poistettu käytöstä" msgid "For more info, please ask the person who sent this link." msgstr "Kysy lisätietoja henkilöltä, jolta sait linkin." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s jakoi kansion %s kanssasi" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s jakoi tiedoston %s kanssasi" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Lataa" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Lähetä" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Peru lähetys" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Ei esikatselua kohteelle" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Suora linkki" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 55da622da0..f5d441f49c 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kohdetta %s ei voitu poistaa pysyvästi" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Kohteen %s palautus epäonnistui" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Virhe" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "palautettu" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Tyhjää täynnä! Roskakorissa ei ole mitään." -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nimi" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Palauta" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Poistettu" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Poista" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Poistetut tiedostot" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index fa1f6eebd0..920db41e6e 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Sovellusta \"%s\" ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Sovelluksen nimeä ei määritelty" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Ohje" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Henkilökohtainen" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Asetukset" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Käyttäjät" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Ylläpitäjä" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kohteen \"%s\" päivitys epäonnistui." @@ -62,15 +62,10 @@ msgstr "Tuntematon tiedostotyyppi" msgid "Invalid image" msgstr "Virheellinen kuva" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Lähdettä ei määritelty sovellusta asennettaessa" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Href-määritettä ei asetettu asennettaessa sovellusta http:n yli" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Polkua ei määritelty sovellusta asennettaessa paikallisesta tiedostosta" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Tyypin %s arkistot eivät ole tuettuja" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Pakettitiedoston avaaminen epäonnistui sovellusta asennettaessa" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Sovellus ei sisällä info.xml-tiedostoa" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Sovellusta ei voi asentaa, koska sovellus sisältää kiellettyä koodia" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Sovellusta ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Sovelluskansio on jo olemassa" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Sovellusta ei ole otettu käyttöön" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Tunnistautumisvirhe" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Valtuutus vanheni. Lataa sivu uudelleen." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Tiedostot" @@ -200,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL:n käyttäjätunnus ja/tai salasana on väärin" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +227,21 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL-käyttäjä '%s'@'localhost' on jo olemassa." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Pudota tämä käyttäjä MySQL:stä" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL-käyttäjä '%s'@'%%' on jo olemassa" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Pudota tämä käyttäjä MySQL:stä." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,66 +268,72 @@ msgstr "Aseta ylläpitäjän käyttäjätunnus." msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Lue tarkasti asennusohjeet." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Luokkaa \"%s\" ei löytynyt" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekuntia sitten" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "tänään" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "eilen" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "viime kuussa" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "viime vuonna" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index d06a815707..c05b52be28 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.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-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 06:30+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Salaus" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)" @@ -114,62 +156,90 @@ msgstr "" msgid "Unable to change password" msgstr "Salasanan vaihto ei onnistunut" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Käyttäjäohjeistus" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Päivitä versioon {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Poista käytöstä" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Käytä" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Odota hetki..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Virhe poistaessa sovellusta käytöstä" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Virhe ottaessa sovellusta käyttöön" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Päivitetään..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Virhe sovellusta päivittäessä" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Virhe" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Päivitä" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Valitse profiilikuva" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Tallennetaan..." - #: js/users.js:47 msgid "deleted" msgstr "poistettu" @@ -182,40 +252,40 @@ msgstr "kumoa" msgid "Unable to remove user" msgstr "Käyttäjän poistaminen ei onnistunut" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Ryhmät" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Poista" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "lisää ryhmä" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Anna kelvollinen käyttäjätunnus" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Virhe käyttäjää luotaessa" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Anna kelvollinen salasana" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varoitus: käyttäjällä \"{user}\" on jo olemassa kotikansio" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "_kielen_nimi_" @@ -239,18 +309,42 @@ msgstr "Virheet ja vakavat ongelmat" msgid "Fatal issues only" msgstr "Vain vakavat ongelmat" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Turvallisuusvaroitus" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Asetusvaroitus" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Lue asennusohjeet tarkasti." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Moduuli 'fileinfo' puuttuu" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Käytössä oleva PHP-versio on vanhentunut" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Käytössä oleva PHP on vanhentunut. Päivitä versioon 5.3.8 tai uudempaan, koska aiemmat versiot eivät ole toimivia. On mahdollista, että tämä ownCloud-asennus ei toimi kunnolla." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Maa-asetus ei toimi" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Internet-yhteys ei toimi" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita käyttäen linkkejä" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Salli julkiset lähetykset" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Salli sähköposti-ilmoitukset" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Loki" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Enemmän" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versio" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Lisää sovelluksesi" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Lisää sovelluksia" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Valitse sovellus" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-lisensoija " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Käyttäjäohjeistus" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Ylläpito-ohjeistus" @@ -507,7 +649,7 @@ msgstr "Näytä ensimmäisen käyttökerran avustaja uudelleen" msgid "You have used %s of the available %s" msgstr "Käytössäsi on %s/%s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Salasana" @@ -519,151 +661,149 @@ msgstr "Salasanasi vaihdettiin" msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Koko nimi" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Sähköpostiosoite" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profiilikuva" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Lähetä uusi" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Valitse uusi tiedostoista" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Poista kuva" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "Keskeytä" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Valitse profiilikuvaksi" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Kieli" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Käytä tätä osoitetta käyttääksesi tiedostojasi WebDAVin kautta" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Salaus" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Pura kaikkien tiedostojen salaus" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Kirjautumisnimi" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Luo" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Oletustallennustila" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Rajoittamaton" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Muu" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Käyttäjätunnus" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Tallennustila" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "muuta koko nimi" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "aseta uusi salasana" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Oletus" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index fbdfcd5cd6..45f6126fce 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "Onnistui!" msgid "Error" msgstr "Virhe" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Valitse ryhmät" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Yhteystesti onnistui" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Yhteystesti epäonnistui" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Vahvista poisto" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "Ohje" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "Voit määrittää käyttäjien ja ryhmien oletus DN:n (distinguished na #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "Ryhmän ja jäsenen assosiaatio (yhteys)" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "tavuissa" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Sähköpostikenttä" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 29d5bd0216..c6e1796bd3 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-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,12 +25,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s partagé »%s« avec vous" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Impossible d'envoyer un mail aux utilisateurs suivant : %s" @@ -80,135 +75,139 @@ msgstr "Aucune image temporaire disponible pour le profil. Essayez à nouveau." msgid "No crop data provided" msgstr "Aucune donnée de culture fournie" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Dimanche" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Lundi" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Mardi" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Mercredi" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Jeudi" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Vendredi" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Samedi" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "janvier" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "février" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "mars" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "avril" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "juin" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "juillet" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "août" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "septembre" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "octobre" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "novembre" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "décembre" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Paramètres" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:870 +#: js/js.js:993 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:871 +#: js/js.js:994 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:872 +#: js/js.js:995 msgid "today" msgstr "aujourd'hui" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "hier" -#: js/js.js:874 +#: js/js.js:997 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:875 +#: js/js.js:998 msgid "last month" msgstr "le mois dernier" -#: js/js.js:876 +#: js/js.js:999 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:877 +#: js/js.js:1000 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "l'année dernière" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "il y a plusieurs années" @@ -276,6 +275,26 @@ msgstr "({count} sélectionnés)" msgid "Error loading file exists template" msgstr "Erreur de chargement du modèle de fichier existant" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Partagé" @@ -284,12 +303,12 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Erreur" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -301,123 +320,123 @@ msgstr "Erreur lors de l'annulation du partage" msgid "Error while changing permissions" msgstr "Erreur lors du changement des permissions" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Partagé par {owner} avec vous et le groupe {group}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Partagé avec vous par {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Partager avec un utilisateur ou un groupe..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Partager le lien" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Mot de passe" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Autoriser l'upload par les utilisateurs non enregistrés" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Envoyez le lien par email" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Envoyer" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Spécifier la date d'expiration" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Date d'expiration" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Partager via e-mail :" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "groupe" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "Notifier par email" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "créer" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "mettre à jour" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "supprimer" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "partager" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email envoyé" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Attention" @@ -464,11 +483,17 @@ msgstr "La mise à jour a échoué. Veuillez signaler ce problème à la Avez-vous vérifié vos courriel/nom d'utilisateu msgid "You will receive a link to reset your password via Email." msgstr "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nom d'utilisateur" @@ -533,7 +558,7 @@ msgstr "Personnel" msgid "Users" msgstr "Utilisateurs" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Applications" @@ -643,49 +668,47 @@ msgstr "Pour les informations de configuration de votre serveur, veuillez lire l msgid "Create an admin account" msgstr "Créer un compte administrateur" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avancé" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Répertoire des données" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configurer la base de données" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "sera utilisé" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Terminer l'installation" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "En cours de finalisation..." @@ -701,7 +724,7 @@ msgstr "Cette application nécessite que JavaScript soit activé pour fonctionne msgid "%s is available. Get more information on how to update." msgstr "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Se déconnecter" @@ -727,28 +750,28 @@ msgstr "L'authentification côté serveur a échoué !" msgid "Please contact your administrator." msgstr "Veuillez contacter votre administrateur." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Connexion" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Logins alternatifs" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Bonjour,

Nous vous informons que %s a partagé »%s« avec vous.
Consultez-le !

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index c6057d1fd5..b90514ed01 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -6,15 +6,15 @@ # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 # etiess , 2013 -# MathieuP , 2013 +# MathieuP, 2013 # ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 14:30+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,36 +32,48 @@ msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" msgid "Could not move %s" msgstr "Impossible de déplacer %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Le nom de fichier ne peut être vide." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Le nom de fichier ne doit pas contenir \"/\". Merci de choisir un nom différent." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un nom différent." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "La source n'est pas valide" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Le serveur n'est pas autorisé à ouvrir des URL, veuillez vérifier la configuration du serveur" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Erreur pendant le téléchargement de %s à %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Erreur pendant la création du fichier" @@ -69,236 +81,231 @@ msgstr "Erreur pendant la création du fichier" msgid "Folder name cannot be empty." msgstr "Le nom de dossier ne peux pas être vide." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Le nom de dossier ne doit pas contenir \"/\". Merci de choisir un nom différent." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Erreur pendant la création du dossier" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Impossible de définir le dossier pour l'upload, charger." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Jeton non valide" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été envoyé avec succès." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse l'instruction upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier envoyé dépasse l'instruction MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "L'envoi a échoué. Impossible de trouver le fichier envoyé." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Dossier invalide." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Fichiers" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Impossible d'envoyer {filename} car il s'agit d'un répertoire ou d'un fichier de taille nulle" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Espace disponible insuffisant" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Envoi annulé." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Ne peut recevoir les résultats du serveur." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "L'URL ne peut pas être vide" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Impossible de créer le fichier" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Impossible de créer le dossier" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Erreur d'accès à l'URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Partager" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Renommer" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "En attente" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Impossible de renommer le fichier" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "annuler" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Erreur pendant la suppression du fichier." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} et {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" msgstr[1] "Téléversement de %n fichiers" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' n'est pas un nom de fichier valide." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Erreur lors du déplacement du fichier" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Erreur" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nom" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Taille" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modifié" @@ -306,12 +313,12 @@ msgstr "Modifié" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s ne peut être renommé" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Envoyer" @@ -347,69 +354,69 @@ msgstr "Taille maximale pour les fichiers ZIP" msgid "Save" msgstr "Sauvegarder" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nouveau" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nouveau fichier texte" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Fichier texte" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nouveau dossier" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Dossier" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Fichiers supprimés" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Vous n'avez pas la permission de téléverser ou de créer des fichiers ici" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Télécharger" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Supprimer" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Téléversement trop volumineux" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 8fe287b228..82746146bb 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.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-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 20:30+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,18 +86,18 @@ msgid "" "administrator" msgstr "Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter votre administrateur." -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Système minimum requis non respecté." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :" @@ -105,9 +105,9 @@ msgstr "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Chiffrement initial démarré... Cela peut prendre un certain temps. Veuillez patienter." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Enregistrement..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 7eb1176ba8..29b07c40fc 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Accès autorisé" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Erreur lors de la configuration du support de stockage Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Autoriser l'accès" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de passe valides." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Erreur lors de la configuration du support de stockage Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:465 +#: lib/config.php:516 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 "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Utilisateurs" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Supprimer" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Activer le stockage externe pour les utilisateurs" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Autoriser les utilisateurs à monter leur propre stockage externe" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Certificats racine SSL" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importer un certificat racine" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 3dbac303a0..0a7c9c9130 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 14:30+0000\n" -"Last-Translator: etiess \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,10 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Ce partage est protégé par un mot de passe" @@ -57,32 +61,16 @@ msgstr "le partage est désactivé" msgid "For more info, please ask the person who sent this link." msgstr "Pour plus d'informations, veuillez contacter la personne qui a envoyé ce lien." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s a partagé le répertoire %s avec vous" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s a partagé le fichier %s avec vous" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Télécharger" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Envoyer" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Annuler l'envoi" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Pas d'aperçu disponible pour" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Lien direct" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 351fde9dda..16e51b12bd 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Impossible d'effacer %s de façon permanente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Impossible de restaurer %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Erreur" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "restauré" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Il n'y a rien ici. Votre corbeille est vide !" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nom" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Restaurer" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Effacé" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Supprimer" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Fichiers effacés" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index a0d3113e8e..a4a91563d2 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,38 +21,38 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "L'application \"%s\" ne peut être installée car elle n'est pas compatible avec cette version de ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Aucun nom d'application spécifié" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Aide" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personnel" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Paramètres" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Utilisateurs" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administration" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Echec de la mise à niveau \"%s\"." @@ -65,15 +65,10 @@ msgstr "Type de fichier inconnu" msgid "Invalid image" msgstr "Image invalide" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "services web sous votre contrôle" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "impossible d'ouvrir \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." @@ -96,74 +91,78 @@ msgid "" "administrator." msgstr "Merci de télécharger les fichiers séparément en parties plus petites, ou demandez aimablement à votre administrateur." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Aucune source spécifiée pour installer l'application" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Aucun href spécifié pour installer l'application par http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Aucun chemin spécifié pour installer l'application depuis un fichier local" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Les archives de type %s ne sont pas supportées" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Échec de l'ouverture de l'archive lors de l'installation de l'application" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "L'application ne fournit pas de fichier info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "L'application ne peut être installée car elle contient du code non-autorisé" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "L'application ne peut être installée car elle n'est pas compatible avec cette version de ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "L'application ne peut être installée car elle contient la balise true qui n'est pas autorisée pour les applications non-diffusées" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "L'application ne peut être installée car la version de info.xml/version n'est identique à celle indiquée sur l'app store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Le dossier de l'application existe déjà" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Impossible de créer le dossier de l'application. Corrigez les droits d'accès. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "L'application n'est pas activée" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Erreur d'authentification" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "La session a expiré. Veuillez recharger la page." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fichiers" @@ -203,8 +202,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -231,21 +230,21 @@ msgstr "La requête en cause est : \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "L'utilisateur MySQL '%s'@'localhost' existe déjà." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Retirer cet utilisateur de la base MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "L'utilisateur MySQL '%s'@'%%' existe déjà" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Retirer cet utilisateur de la base MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -272,66 +271,72 @@ msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez vous référer au guide d'installation." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Impossible de trouver la catégorie \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "il y a quelques secondes" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "il y a %n minutes" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Il y a %n heures" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "aujourd'hui" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "hier" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "il y a %n jours" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "le mois dernier" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Il y a %n mois" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "l'année dernière" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index d0edd3b5c4..14db4ea306 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,13 +11,15 @@ # ogre_sympathique , 2013 # red0ne , 2013 # RyDroid , 2013 +# tcit , 2014 +# PVince81 , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-18 10:30+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,6 +27,48 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Chiffrement" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Impossible de charger la liste depuis l'App Store" @@ -121,62 +165,90 @@ msgstr "L'infrastructure d'arrière-plan ne supporte pas la modification de mot msgid "Unable to change password" msgstr "Impossible de modifier le mot de passe" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentation utilisateur" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Mettre à jour vers {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Désactiver" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Activer" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Veuillez patienter…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Erreur lors de la désactivation de l'application" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Erreur lors de l'activation de l'application" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Mise à jour..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Erreur lors de la mise à jour de l'application" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Erreur" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Mettre à jour" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Selectionner une photo de profil " -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Déchiffrement en cours... Cela peut prendre un certain temps." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Enregistrement..." - #: js/users.js:47 msgid "deleted" msgstr "supprimé" @@ -189,40 +261,40 @@ msgstr "annuler" msgid "Unable to remove user" msgstr "Impossible de retirer l'utilisateur" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Groupes" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" -msgstr "Groupe Admin" +msgstr "Admin Groupe" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Supprimer" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "ajouter un groupe" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Attention : Le dossier Home pour l'utilisateur \"{user}\" existe déjà" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Français" @@ -246,18 +318,42 @@ msgstr "Erreurs et erreurs fatales" msgid "Fatal issues only" msgstr "Erreurs fatales uniquement" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Avertissement de sécurité" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Vous accédez à %s via HTTP. Nous vous recommandons fortement de configurer votre serveur pour forcer l'utilisation de HTTPS à la place." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -266,68 +362,68 @@ msgid "" "root." msgstr "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou bien de le déplacer à l'extérieur de la racine du serveur web." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Avertissement, problème de configuration" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez consulter à nouveau les guides d'installation." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' manquant" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "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." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Votre version de PHP est trop ancienne" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "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 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Localisation non fonctionnelle" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Les paramètres régionaux ne peuvent pas être configurés avec un qui supporte UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Nous conseillons vivement d'installer les paquets requis sur votre système pour supporter l'un des paramètres régionaux suivants : %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "La connexion internet ne fonctionne pas" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -336,118 +432,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php est enregistré en tant que service webcron pour appeler cron.php toutes les 15 minutes via http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utilise le service cron du système pour appeler le fichier cron.php toutes les 15 minutes." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Autoriser les téléversements publics" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permet d'autoriser les autres utilisateurs à téléverser dans le dossier partagé public de l'utilisateur" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Autoriser les notifications par couriel" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forcer les clients à se connecter à %s via une connexion chiffrée." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Plus" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Moins" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Développé par la communauté ownCloud, le code source est publié sous license AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Ajoutez votre application" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Plus d'applications…" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Sélectionner une Application" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Voir la page des applications à l'url apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "Distribué sous licence , par " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentation utilisateur" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentation administrateur" @@ -514,7 +658,7 @@ msgstr "Revoir le premier lancement de l'installeur" msgid "You have used %s of the available %s" msgstr "Vous avez utilisé %s des %s disponibles" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Mot de passe" @@ -526,151 +670,149 @@ msgstr "Votre mot de passe a été changé" msgid "Unable to change your password" msgstr "Impossible de changer votre mot de passe" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Mot de passe actuel" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nouveau mot de passe" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Nom complet" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Adresse mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Photo de profil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Télécharger nouveau" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Sélectionner un nouveau depuis les documents" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Supprimer l'image" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "Soit png ou jpg. idéalement carée mais vous pourrez la recadrer ." +msgstr "Soit png ou jpg. Idéalement carrée mais vous pourrez la recadrer." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Votre avatar est fourni par votre compte original." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Abandonner" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Choisir en temps que photo de profil " -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Langue" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Utiliser cette adresse pour accéder à vos fichiers par WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Chiffrement" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'app de chiffrement n’est plus activée, veuillez déchiffrer tous vos fichiers" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Mot de passe de connexion" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Déchiffrer tous les fichiers" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" -msgstr "Nom de la connexion" +msgstr "Nom d'utilisateur" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Créer" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Récupération du mot de passe administrateur" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Entrer le mot de passe de récupération dans le but de récupérer les fichiers utilisateurs pendant le changement de mot de passe" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" -msgstr "Support de stockage par défaut" +msgstr "Espace de stockage par défaut" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Illimité" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Autre" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nom d'utilisateur" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" -msgstr "Support de stockage" +msgstr "Espace de stockage" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "Modifier le nom complet" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "Changer le mot de passe" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Défaut" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 9a26a1a2d9..e29504ebdf 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,43 +89,43 @@ msgstr "Succès" msgid "Error" msgstr "Erreur" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Configuration OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Configuration incorrecte" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Configuration incomplète" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Sélectionnez les groupes" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Sélectionner les classes d'objet" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Sélectionner les attributs" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Test de connexion réussi" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Test de connexion échoué" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Êtes-vous vraiment sûr de vouloir effacer la configuration actuelle du serveur ?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Confirmer la suppression" @@ -143,11 +143,11 @@ msgid_plural "%s users found" msgstr[0] "%s utilisateur trouvé" msgstr[1] "%s utilisateurs trouvés" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Hôte invalide" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Impossible de trouver la fonction souhaitée" @@ -165,8 +165,8 @@ msgstr "Aide" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Limiter l'accès à %s aux groupes respectant ce critère :" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -201,8 +201,8 @@ msgid "groups found" msgstr "groupes trouvés" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Quel attribut doit être utilisé comme nom de login:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -269,8 +269,8 @@ msgstr "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Limiter l'accès à %s aux utilisateurs respectant ce critère :" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -412,41 +412,51 @@ msgstr "Recherche des attributs du groupe" msgid "Group-Member association" msgstr "Association groupe-membre" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Attributs spéciaux" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Champ du quota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Quota par défaut" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Champ Email" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Convention de nommage du répertoire utilisateur" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Laisser vide " -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Nom d'utilisateur interne" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -462,15 +472,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Par défaut le nom d'utilisateur interne sera créé à partir de l'attribut UUID. Ceci permet d'assurer que le nom d'utilisateur est unique et que les caractères ne nécessitent pas de conversion. Le nom d'utilisateur interne doit contenir uniquement les caractères suivants : [ a-zA-Z0-9_.@- ]. Les autres caractères sont remplacés par leur correspondance ASCII ou simplement omis. En cas de collision, un nombre est incrémenté/décrémenté. Le nom d'utilisateur interne est utilisé pour identifier l'utilisateur au sein du système. C'est aussi le nom par défaut du répertoire utilisateur dans ownCloud. C'est aussi le port d'URLs distants, par exemple pour tous les services *DAV. Le comportement par défaut peut être modifié à l'aide de ce paramètre. Pour obtenir un comportement similaire aux versions précédentes à ownCloud 5, saisir le nom d'utilisateur à afficher dans le champ suivant. Laissez à blanc pour le comportement par défaut. Les modifications prendront effet seulement pour les nouveaux (ajoutés) utilisateurs LDAP." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Nom d'utilisateur interne:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Surcharger la détection d'UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -481,19 +491,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Par défaut, l'attribut UUID est automatiquement détecté. Cet attribut est utilisé pour identifier les utilisateurs et groupes de façon fiable. Un nom d'utilisateur interne basé sur l'UUID sera automatiquement créé, sauf s'il est spécifié autrement ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Attribut UUID pour les utilisateurs :" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Attribut UUID pour les groupes :" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Association Nom d'utilisateur-Utilisateur LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -507,10 +517,10 @@ msgid "" "experimental stage." msgstr "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentation." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Supprimer l'association utilisateur interne-utilisateur LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Supprimer l'association nom de groupe-groupe LDAP" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index 559ab10642..4f7c1524a6 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/fr_CA/files.po b/l10n/fr_CA/files.po index 945c90682d..345fad56c8 100644 --- a/l10n/fr_CA/files.po +++ b/l10n/fr_CA/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/fr_CA/files_encryption.po b/l10n/fr_CA/files_encryption.po index cbf1900218..f709719466 100644 --- a/l10n/fr_CA/files_encryption.po +++ b/l10n/fr_CA/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/fr_CA/files_external.po b/l10n/fr_CA/files_external.po index 373a3e669a..adbbd6c0af 100644 --- a/l10n/fr_CA/files_external.po +++ b/l10n/fr_CA/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-26 21:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:466 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:470 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:473 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/fr_CA/files_sharing.po b/l10n/fr_CA/files_sharing.po index dfe5c2c332..4aea61c17c 100644 --- a/l10n/fr_CA/files_sharing.po +++ b/l10n/fr_CA/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-26 21:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/fr_CA/files_trashbin.po b/l10n/fr_CA/files_trashbin.po index a526cc8e7e..79e8ab337e 100644 --- a/l10n/fr_CA/files_trashbin.po +++ b/l10n/fr_CA/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-26 21:30+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,16 +22,20 @@ msgstr "" msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:45 js/trash.js:123 js/trash.js:176 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" @@ -55,6 +59,6 @@ msgstr "" msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index 37d8be2602..5ecda61550 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index 0653592a54..233e751f53 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/fr_CA/user_ldap.po b/l10n/fr_CA/user_ldap.po index 89e3883b60..e513ed6934 100644 --- a/l10n/fr_CA/user_ldap.po +++ b/l10n/fr_CA/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 760ba73cc7..dc12b95670 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s compartiu «%s» con vostede" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Non é posíbel enviar correo aos usuarios seguintes: %s" @@ -73,135 +68,139 @@ msgstr "Non hai unha imaxe temporal de perfil dispoñíbel, volva tentalo" msgid "No crop data provided" msgstr "Non indicou como recortar" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "domingo" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "luns" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "martes" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "mércores" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "xoves" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "venres" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "sábado" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "xaneiro" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "febreiro" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "marzo" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "abril" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "maio" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "xuño" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "xullo" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "agosto" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "setembro" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "outubro" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "novembro" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "decembro" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Axustes" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "hoxe" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "onte" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "hai %n días" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "último mes" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "meses atrás" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "último ano" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "anos atrás" @@ -269,6 +268,26 @@ msgstr "({count} seleccionados)" msgid "Error loading file exists template" msgstr "Produciuse un erro ao cargar o modelo de ficheiro existente" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartir" @@ -277,12 +296,12 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -294,123 +313,123 @@ msgstr "Produciuse un erro ao deixar de compartir" msgid "Error while changing permissions" msgstr "Produciuse un erro ao cambiar os permisos" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido con vostede e co grupo {group} por {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Compartido con vostede por {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Compartir cun usuario ou grupo ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Ligazón para compartir" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Contrasinal" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Permitir o envío público" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Enviar ligazón por correo" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Enviar" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Definir a data de caducidade" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Data de caducidade" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Compartir por correo:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupo" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "notificar por correo" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "pode editar" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "control de acceso" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "crear" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "actualizar" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "eliminar" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "compartir" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Correo enviado" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Aviso" @@ -457,11 +476,17 @@ msgstr "A actualización non foi satisfactoria, informe deste problema á Asegúrese de que o seu enderezo msgid "You will receive a link to reset your password via Email." msgstr "Recibirá unha ligazón por correo para restabelecer o contrasinal" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nome de usuario" @@ -526,7 +551,7 @@ msgstr "Persoal" msgid "Users" msgstr "Usuarios" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplicativos" @@ -636,49 +661,47 @@ msgstr "Para obter información sobre como como configurar axeitadamente o seu s msgid "Create an admin account" msgstr "Crear unha contra de administrador" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avanzado" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "vai ser utilizado" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Rematar a configuración" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Rematado ..." @@ -694,7 +717,7 @@ msgstr "Este aplicativo require que o JavaScript estea activado para unha operat msgid "%s is available. Get more information on how to update." msgstr "%s está dispoñíbel. Obteña máis información sobre como actualizar." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Desconectar" @@ -720,28 +743,28 @@ msgstr "A autenticación fracasou do lado do servidor!" msgid "Please contact your administrator." msgstr "Contacte co administrador." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Perdeu o contrasinal?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "lembrar" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Conectar" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Accesos alternativos" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Ola,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 00a61f78a7..7bb93a1eef 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,36 +28,48 @@ msgstr "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome." msgid "Could not move %s" msgstr "Non foi posíbel mover %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "O nome de ficheiro non pode estar baleiro" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "O nome do ficheiro non pode conter «/». Escolla outro nome." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Xa existe o nome %s no cartafol %s. Escolla outro nome." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Esta orixe non é correcta" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "O servidor non ten permisos para abrir os enderezos URL, comprobe a configuración do servidor" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Produciuse un erro ao descargar %s en %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Produciuse un erro ao crear o ficheiro" @@ -65,236 +77,231 @@ msgstr "Produciuse un erro ao crear o ficheiro" msgid "Folder name cannot be empty." msgstr "O nome de cartafol non pode estar baleiro." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "O nome do cartafol non pode conter «/». Escolla outro nome." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Produciuse un erro ao crear o cartafol" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Non é posíbel configurar o directorio de envíos." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Marca incorrecta" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Non houbo erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede da directiva MAX_FILE_SIZE especificada no formulario HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "O envío fracasou. Non foi posíbel obter información do ficheiro." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "O envío fracasou. Non foi posíbel atopar o ficheiro enviado" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "O envío fracasou. Non foi posíbel obter información do ficheiro." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "O directorio é incorrecto." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Ficheiros" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Non é posíbel enviar {filename}, xa que ou é un directorio ou ten 0 bytes" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "O espazo dispoñíbel é insuficiente" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Non foi posíbel obter o resultado do servidor." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "O URL non pode quedar en branco." -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Non foi posíbel crear o ficheiro" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Non foi posíbel crear o cartafol" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Produciuse un erro ao obter o URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} por {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "desfacer" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Produciuse un erro ao eliminar o ficheiro." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" msgstr[1] "Cargando %n ficheiros" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "«.» é un nome de ficheiro incorrecto" +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou sincronizar máis os ficheiros!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "O aplicativo de cifrado está activado, mais as chaves non foron inicializadas, saia da sesión e volva a acceder de novo" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "A chave privada para o aplicativo de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Produciuse un erro ao mover o ficheiro" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Erro" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nome" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Tamaño" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificado" @@ -302,12 +309,12 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nome de cartafol non válido. O uso de «Shared» está reservado." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s non pode cambiar de nome" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Enviar" @@ -343,69 +350,69 @@ msgstr "Tamaño máximo de descarga para os ficheiros ZIP" msgid "Save" msgstr "Gardar" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Novo" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Ficheiro novo de texto" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Ficheiro de texto" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Novo cartafol" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Cartafol" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Desde a ligazón" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Non ten permisos para enviar ou crear ficheiros aquí." -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Aquí non hai nada. Envíe algo." -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Descargar" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Envío demasiado grande" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarde." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 32805bfde6..79b1b165fb 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-01 11:50+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,18 +83,18 @@ msgid "" "administrator" msgstr "Produciuse un erro descoñecido. Comprobe os axustes do sistema ou póñase en contacto co administrador" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Non se cumpren os requisitos." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Os seguintes usuarios non teñen configuración para o cifrado:" @@ -102,9 +102,9 @@ msgstr "Os seguintes usuarios non teñen configuración para o cifrado:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Comezou o cifrado inicial... Isto pode levar bastante tempo. Agarde." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Gardando..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 1c5aff7b46..3e2452de8a 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Concedeuse acceso" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Produciuse un erro ao configurar o almacenamento en Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Permitir o acceso" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Forneza unha chave correcta e segreda do Dropbox." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." -#: lib/config.php:465 +#: lib/config.php:516 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 "Aviso: A compatibilidade de FTP en PHP non está activada ou instalada. Non é posibel a montaxe de comparticións FTP. Consulte co administrador do sistema para instalalo." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Usuarios" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Activar o almacenamento externo do usuario" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Permitir aos usuarios montar os seus propios almacenamentos externos" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Certificados SSL root" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importar o certificado root" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 1058585dc1..23c66cdbce 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Esta compartición está protexida con contrasinal" @@ -54,32 +58,16 @@ msgstr "foi desactivada a compartición" msgid "For more info, please ask the person who sent this link." msgstr "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s compartiu o cartafol %s con vostede" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s compartiu o ficheiro %s con vostede" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Descargar" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Enviar" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Cancelar o envío" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Sen vista previa dispoñíbel para" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Ligazón directa" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index eea63f9317..ec8374bda7 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Non foi posíbel eliminar %s permanente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Non foi posíbel restaurar %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Erro" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "restaurado" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Aquí non hai nada. O cesto do lixo está baleiro!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nome" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Restablecer" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Eliminado" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Eliminar" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Ficheiros eliminados" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index daba9df132..1ef98cc37c 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Non é posíbel instalar o aplicativo «%s» por non seren compatíbel con esta versión do ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Non se especificou o nome do aplicativo" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Axuda" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Persoal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Axustes" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Usuarios" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administración" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." @@ -62,15 +62,10 @@ msgstr "Tipo de ficheiro descoñecido" msgid "Invalid image" msgstr "Imaxe incorrecta" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "servizos web baixo o seu control" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "non foi posíbel abrir «%s»" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "Descargue os ficheiros en fragmentos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Non foi especificada ningunha orixe ao instalar aplicativos" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Non foi especificada ningunha href ao instalar aplicativos" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Non foi especificada ningunha ruta ao instalar aplicativos desde un ficheiro local" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Os arquivos do tipo %s non están admitidos" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Non foi posíbel abrir o arquivo ao instalar aplicativos" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "O aplicativo non fornece un ficheiro info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Non é posíbel instalar o aplicativo por mor de conter código non permitido" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Non é posíbel instalar o aplicativo por non seren compatíbel con esta versión do ownCloud." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Non é posíbel instalar o aplicativo por conter a etiqueta\n\n\ntrue\n\nque non está permitida para os aplicativos non enviados" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Non é posíbel instalar o aplicativo xa que a versión en info.xml/version non é a mesma que a versión informada desde a App Store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Xa existe o directorio do aplicativo" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Non é posíbel crear o cartafol de aplicativos. Corrixa os permisos. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "O aplicativo non está activado" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Produciuse un erro de autenticación" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Testemuña caducada. Recargue a páxina." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Ficheiros" @@ -200,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Deberá introducir unha conta existente ou o administrador." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Nome de usuario e/ou contrasinal de MySQL incorrecto" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +227,21 @@ msgstr "A orde ofensiva foi: «%s»" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "O usuario MySQL '%s'@'localhost' xa existe." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Omitir este usuario de MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "O usuario MySQL «%s»@«%%» xa existe." +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Omitir este usuario de MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,66 +268,72 @@ msgstr "Estabeleza un nome de usuario administrador" msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Volva comprobar as guías de instalación" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Non foi posíbel atopar a categoría «%s»" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "segundos atrás" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "hoxe" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "onte" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "hai %n días" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "último mes" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "último ano" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c52ea62a0a..b358e2b7df 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 08:40+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Cifrado" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Non foi posíbel cargar a lista desde a App Store" @@ -114,62 +156,90 @@ msgstr "A infraestrutura non admite o cambio de contrasinal, mais a chave de cif msgid "Unable to change password" msgstr "Non é posíbel cambiar o contrasinal" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentación do usuario" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Actualizar á {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Activar" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Agarde..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Produciuse un erro ao desactivar o aplicativo" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Produciuse un erro ao activar o aplicativo" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Actualizando..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Produciuse un erro mentres actualizaba o aplicativo" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Erro" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Actualizar" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Seleccione unha imaxe para o perfil" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando ficheiros... isto pode levar un anaco." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Gardando..." - #: js/users.js:47 msgid "deleted" msgstr "eliminado" @@ -182,40 +252,40 @@ msgstr "desfacer" msgid "Unable to remove user" msgstr "Non é posíbel retirar o usuario" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupos" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupo Admin" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Eliminar" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "engadir un grupo" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Produciuse un erro ao crear o usuario" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Aviso: O directorio persoal para o usuario «{user}» xa existe" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Galego" @@ -239,18 +309,42 @@ msgstr "Erros e problemas críticos" msgid "Fatal issues only" msgstr "Só problemas críticos" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Aviso de seguranza" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Está accedendo a %s a través de HTTP. Suxerímoslle que configure o seu servidor para requirir, no seu canto, o uso de HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través de internet. O ficheiro .htaccess non está a traballar. Suxerímoslle que configure o seu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou que mova o o directorio de datos fóra da raíz de documentos do servidor web." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Configurar os avisos" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Volva comprobar as guías de instalación" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Non se atopou o módulo «fileinfo»" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "A versión de PHP está desactualizada" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "A versión de PHP está desactualizada. Recomendámoslle que a actualice á versión 5.3.8 ou posterior xa que as versións anteriores son coñecidas por estragarse. É probábel que esta instalación no estea a funcionar correctamente." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "A configuración rexional non funciona" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Non é posíbel estabelecer a configuración rexional do sistema a unha que admita UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Isto significa que pode haber problemas con certos caracteres en nomes de ficheiro." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Recomendamoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "A conexión á Internet non funciona" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Executar unha tarefa con cada páxina cargada" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o servizo de sistema cron para chamar ao ficheiro cron.php cada 15 minutos." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Compartindo" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Activar o API para compartir" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Permitir que os aplicativos empreguen o API para compartir" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Permitir ligazóns" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Permitir que os usuarios compartan elementos ao público con ligazóns" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Permitir os envíos públicos" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que os usuarios lle permitan a outros enviar aos seus cartafoles compartidos publicamente" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Permitir compartir" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Permitir que os usuarios compartan de novo os elementos compartidos con eles" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Permitir que os usuarios compartan con calquera" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os usuarios compartan só cos usuarios dos seus grupos" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Permitir o envío de notificacións por correo" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar que os clientes se conecten a %s empregando unha conexión cifrada." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Conéctese a %s empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Máis" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Menos" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desenvolvido pola comunidade ownCloud, o código fonte está baixo a licenza AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Engada o seu aplicativo" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Máis aplicativos" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Escolla un aplicativo" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Consulte a páxina do aplicativo en apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licenciado por" -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentación do usuario" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentación do administrador" @@ -507,7 +649,7 @@ msgstr "Amosar o axudante da primeira execución outra vez" msgid "You have used %s of the available %s" msgstr "Ten en uso %s do total dispoñíbel de %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contrasinal" @@ -519,151 +661,149 @@ msgstr "O seu contrasinal foi cambiado" msgid "Unable to change your password" msgstr "Non é posíbel cambiar o seu contrasinal" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Correo" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Escriba un enderezo de correo para activar o contrasinal de recuperación" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Imaxe do perfil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Novo envío" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Seleccione unha nova de ficheiros" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Retirar a imaxe" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Calquera png ou jpg. É preferíbel que sexa cadrada, mais poderá recortala." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "O seu avatar é fornecido pola súa conta orixinal." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Cancelar" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Escolla unha imaxe para o perfil" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Idioma" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Empregue esta ligazón para acceder aos sus ficheiros mediante WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Cifrado" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "O aplicativo de cifrado non está activado, descifre todos os ficheiros" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Contrasinal de acceso" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Descifrar todos os ficheiros" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Nome de acceso" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Crear" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Contrasinal de recuperación do administrador" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Introduza o contrasinal de recuperación para recuperar os ficheiros dos usuarios durante o cambio de contrasinal" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Almacenamento predeterminado" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Introduza a cota de almacenamento (p.ex. «512 MB» ou «12 GB»)" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Sen límites" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Outro" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nome de usuario" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Almacenamento" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "Cambiar o nome completo" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "estabelecer un novo contrasinal" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Predeterminado" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index f2492dc699..c281ed0bdc 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,43 +87,43 @@ msgstr "Correcto" msgid "Error" msgstr "Erro" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Configuración correcta" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Configuración incorrecta" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Seleccione as clases de obxectos" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Seleccione os atributos" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "A proba de conexión foi satisfactoria" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "A proba de conexión fracasou" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Confirma que quere eliminar a configuración actual do servidor?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Confirmar a eliminación" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "Atopouse %s usuario" msgstr[1] "Atopáronse %s usuarios" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Máquina incorrecta" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Non foi posíbel atopar a función desexada" @@ -163,8 +163,8 @@ msgstr "Axuda" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Limitar o acceso a %s aos grupos que coincidan con estes criterios:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -199,8 +199,8 @@ msgid "groups found" msgstr "atopáronse grupos" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Atributo que utilizar como nome de usuario:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -267,8 +267,8 @@ msgstr "Pode especificar a DN base para usuarios e grupos na lapela de «Avanzad #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Limitar o acceso a %s aos usuarios que coincidan con estes criterios:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -410,41 +410,51 @@ msgstr "Atributos de busca do grupo" msgid "Group-Member association" msgstr "Asociación de grupos e membros" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atributos especiais" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Campo de cota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Cota predeterminada" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "en bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Campo do correo" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Regra de nomeado do cartafol do usuario" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixar baleiro para o nome de usuario (predeterminado). Noutro caso, especifique un atributo LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Nome de usuario interno" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +470,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "De xeito predeterminado, o nome de usuario interno crease a partires do atributo UUID. Asegurase de que o nome de usuario é único e de non ter que converter os caracteres. O nome de usuario interno ten a limitación de que só están permitidos estes caracteres: [ a-zA-Z0-9_.@- ]. Os outros caracteres substitúense pola súa correspondencia ASCII ou simplemente omítense. Nas colisións engadirase/incrementarase un número. O nome de usuario interno utilizase para identificar a un usuario interno. É tamén o nome predeterminado do cartafol persoal do usuario. Tamén é parte dun URL remoto, por exemplo, para todos os servizos *DAV. Con este axuste, o comportamento predeterminado pode ser sobrescrito. Para lograr un comportamento semellante ao anterior ownCloud 5 introduza o atributo do nome para amosar do usuario no seguinte campo. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atributo do nome de usuario interno:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Ignorar a detección do UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +489,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Atributo do UUID para usuarios:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Atributo do UUID para grupos:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +515,10 @@ msgid "" "experimental stage." msgstr "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar a asignación do usuario ao «nome de usuario LDAP»" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar a asignación do grupo ao «nome de grupo LDAP»" diff --git a/l10n/he/core.po b/l10n/he/core.po index 9489597492..b1601126da 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s שיתף/שיתפה איתך את »%s«" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -74,135 +69,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "יום ראשון" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "יום שני" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "יום שלישי" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "יום רביעי" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "יום חמישי" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "יום שישי" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "שבת" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "ינואר" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "פברואר" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "מרץ" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "אפריל" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "מאי" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "יוני" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "יולי" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "אוגוסט" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "ספטמבר" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "אוקטובר" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "נובמבר" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "דצמבר" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "הגדרות" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "שניות" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "לפני %n דקה" msgstr[1] "לפני %n דקות" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "לפני %n שעה" msgstr[1] "לפני %n שעות" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "היום" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "אתמול" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "לפני %n יום" msgstr[1] "לפני %n ימים" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "לפני %n חודש" msgstr[1] "לפני %n חודשים" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "חודשים" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "שנים" @@ -270,6 +269,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "שותף" @@ -278,12 +297,12 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "שגיאה" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -295,123 +314,123 @@ msgstr "שגיאה במהלך ביטול השיתוף" msgid "Error while changing permissions" msgstr "שגיאה במהלך שינוי ההגדרות" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "שותף אתך ועם הקבוצה {group} שבבעלות {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "שותף אתך על ידי {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "הגנה בססמה" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "סיסמא" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "שליחת קישור בדוא״ל למשתמש" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "שליחה" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "הגדרת תאריך תפוגה" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "תאריך התפוגה" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "שיתוף באמצעות דוא״ל:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "קבוצה" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "יצירה" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "עדכון" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "מחיקה" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "שיתוף" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "אזהרה" @@ -458,11 +477,17 @@ msgstr "תהליך העדכון לא הושלם בהצלחה. נא דווח את msgid "The update was successful. Redirecting you to ownCloud now." msgstr "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}" @@ -482,8 +507,8 @@ msgstr "הבקשה נכשלה!
האם כתובת הדוא״ל/שם המשתמ msgid "You will receive a link to reset your password via Email." msgstr "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "שם משתמש" @@ -527,7 +552,7 @@ msgstr "אישי" msgid "Users" msgstr "משתמשים" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "יישומים" @@ -637,49 +662,47 @@ msgstr "" msgid "Create an admin account" msgstr "יצירת חשבון מנהל" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "מתקדם" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "תיקיית נתונים" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "הגדרת מסד הנתונים" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "ינוצלו" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "שם משתמש במסד הנתונים" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "ססמת מסד הנתונים" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "שם מסד הנתונים" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד הנתונים" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "שרת בסיס נתונים" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "סיום התקנה" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -695,7 +718,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s זמינה להורדה. ניתן ללחוץ כדי לקבל מידע נוסף כיצד לעדכן." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "התנתקות" @@ -721,27 +744,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "שכחת את ססמתך?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "שמירת הססמה" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "כניסה" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "כניסות אלטרנטיביות" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/he/files.po b/l10n/he/files.po index d688db7c53..e61195f479 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,36 +29,48 @@ msgstr "לא ניתן להעביר את %s - קובץ בשם הזה כבר קי msgid "Could not move %s" msgstr "לא ניתן להעביר את %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "שם קובץ אינו יכול להיות ריק" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -66,236 +78,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "תיקייה שגויה." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "קבצים" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "לא ניתן לגשת לתוצאות מהשרת." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "שתף" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "ביטול" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "שגיאה" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "שם" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "גודל" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "זמן שינוי" @@ -303,12 +310,12 @@ msgstr "זמן שינוי" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "העלאה" @@ -344,69 +351,69 @@ msgstr "גודל הקלט המרבי לקובצי ZIP" msgid "Save" msgstr "שמירה" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "חדש" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "קובץ טקסט" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "תיקייה" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "מקישור" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "קבצים שנמחקו" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו?" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "הורדה" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "מחיקה" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "העלאה גדולה מידי" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "הקבצים נסרקים, נא להמתין." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "הסריקה הנוכחית" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 1ca4a5dfcb..c401f90b5f 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "שמירה…" +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 91ae5a6c44..913a0768ee 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "הוענקה גישה" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "הענקת גישה" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "משתמשים" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "מחיקה" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "הפעלת אחסון חיצוני למשתמשים" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "יאפשר למשתמשים לעגן את האחסון החיצוני שלהם" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "שורש אישורי אבטחת SSL " -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "ייבוא אישור אבטחת שורש" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 0a12ef9671..67d7c08d4b 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s שיתף עמך את התיקייה %s" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s שיתף עמך את הקובץ %s" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "הורדה" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "העלאה" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "ביטול ההעלאה" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "אין תצוגה מקדימה זמינה עבור" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index b13e9732c8..e9148e238f 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pinzerbib , 2014 # Yaron Shahrabani , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +19,48 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "לא ניתן למחוק את %s לצמיתות" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "לא ניתן לשחזר את %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "שגיאה" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" -msgstr "" +msgstr "שוחזר" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "אין כאן שום דבר. סל המיחזור שלך ריק!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "שם" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "שחזור" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "נמחק" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "מחיקה" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "קבצים שנמחקו" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 641d9c7665..db4f93b0b8 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "עזרה" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "אישי" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "הגדרות" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "משתמשים" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "מנהל" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "יישומים אינם מופעלים" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "שגיאת הזדהות" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "פג תוקף. נא לטעון שוב את הדף." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "קבצים" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "נא לעיין שוב במדריכי ההתקנה." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "לא ניתן למצוא את הקטגוריה „%s“" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "שניות" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "לפני %n דקות" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "לפני %n שעות" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "היום" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "אתמול" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "לפני %n ימים" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "חודש שעבר" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "לפני %n חודשים" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "שנה שעברה" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index d27b262279..3fd69ee932 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "הצפנה" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "לא ניתן לטעון רשימה מה־App Store" @@ -114,61 +156,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "תיעוד משתמש" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "עדכון לגרסה {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "בטל" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "הפעלה" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "נא להמתין…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "מתבצע עדכון…" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "אירעה שגיאה בעת עדכון היישום" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "שגיאה" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "עדכון" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "מעודכן" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "שמירה…" +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -182,40 +252,40 @@ msgstr "ביטול" msgid "Unable to remove user" msgstr "לא ניתן להסיר את המשתמש" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "קבוצות" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "מנהל הקבוצה" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "מחיקה" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "הוספת קבוצה" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "יש לספק שם משתמש תקני" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "יצירת המשתמש נכשלה" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "עברית" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "אזהרת אבטחה" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "שגיאת הגדרה" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "המודול „fileinfo“ חסר" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "החיבור לאינטרנט אינו פעיל" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "יש להפעיל משימה אחת עם כל עמוד שנטען" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "שיתוף" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "הפעלת API השיתוף" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "לאפשר ליישום להשתמש ב־API השיתוף" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "לאפשר קישורים" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "לאפשר למשתמשים לשתף פריטים " -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "לאפשר שיתוף מחדש" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "לאפשר למשתמשים לשתף הלאה פריטים ששותפו אתם" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "לאפשר למשתמשים לשתף עם כל אחד" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "יומן" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "יותר" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "פחות" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "גרסא" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "פותח על די קהילתownCloud, קוד המקור מוגן ברישיון AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "הוספת היישום שלך" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "יישומים נוספים" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "בחירת יישום" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "צפה בעמוד הישום ב apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "ברישיון לטובת " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "תיעוד משתמש" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "תיעוד מנהלים" @@ -507,7 +649,7 @@ msgstr "הצגת אשף ההפעלה הראשונית שוב" msgid "You have used %s of the available %s" msgstr "השתמשת ב־%s מתוך %s הזמינים לך" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "סיסמא" @@ -519,151 +661,149 @@ msgstr "הססמה שלך הוחלפה" msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "דואר אלקטרוני" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "תמונת פרופיל" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "פה" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "הצפנה" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "שם כניסה" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "יצירה" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "ססמת השחזור של המנהל" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "אחסון בררת המחדל" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "ללא הגבלה" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "אחר" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "שם משתמש" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "אחסון" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "הגדרת ססמה חדשה" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "בררת מחדל" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 33d85f4fc8..a6dfb3ff83 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "שגיאה" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "בדיקת החיבור עברה בהצלחה" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "בדיקת החיבור נכשלה" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "האם אכן למחוק את הגדרות השרת הנוכחיות?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "אישור המחיקה" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -163,7 +163,7 @@ msgstr "עזרה" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -199,7 +199,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -267,7 +267,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -410,41 +410,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "בבתים" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +470,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +489,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +515,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index c254844765..abdd0fb3ee 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -74,135 +69,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "रविवार" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "सोमवार" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "मंगलवार" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "बुधवार" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "बृहस्पतिवार" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "शुक्रवार" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "शनिवार" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "जनवरी" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "फरवरी" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "मार्च" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "अप्रैल" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "मई" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "जून" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "जुलाई" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "अगस्त" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "सितम्बर" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "अक्टूबर" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "नवंबर" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "दिसम्बर" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -270,6 +269,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -278,12 +297,12 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "त्रुटि" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -295,123 +314,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "पासवर्ड" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "भेजें" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "कोई व्यक्ति नहीं मिले " -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "चेतावनी " @@ -458,11 +477,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "आगे दिये गये लिंक का उपयोग पासवर्ड बदलने के लिये किजीये: {link}" @@ -482,8 +507,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "प्रयोक्ता का नाम" @@ -527,7 +552,7 @@ msgstr "यक्तिगत" msgid "Users" msgstr "उपयोगकर्ता" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -637,49 +662,47 @@ msgstr "" msgid "Create an admin account" msgstr "व्यवस्थापक खाता बनाएँ" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "उन्नत" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "डाटा फोल्डर" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "डेटाबेस कॉन्फ़िगर करें " -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "उपयोग होगा" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "डेटाबेस का नाम" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "सेटअप समाप्त करे" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -695,7 +718,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "लोग आउट" @@ -721,27 +744,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "याद रखें" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 1438dd1547..5a0c1ce275 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "साझा करें" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "त्रुटि" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "अपलोड " @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "सहेजें" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 7d5c5247a2..104713bda5 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index d437731724..9992c8ee11 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "उपयोगकर्ता" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index da1af71a1e..810bbf305c 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "अपलोड " - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 64da02cb00..759f8e01d2 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "त्रुटि" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 31789dfce8..a0e8492a73 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "सहयोग" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "यक्तिगत" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "सेटिंग्स" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "उपयोगकर्ता" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index a255b6e1db..1906795331 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "त्रुटि" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "अद्यतन" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "सुरक्षा चेतावनी " -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "पासवर्ड" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "रद्द करना " +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "प्रयोक्ता का नाम" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index f5133c43d7..f001017d01 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "त्रुटि" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "सहयोग" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 6289c6939a..d31c00d1bb 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,139 +67,143 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "nedelja" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "ponedeljak" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "utorak" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "srijeda" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "četvrtak" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "petak" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "subota" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Siječanj" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Veljača" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Ožujak" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Travanj" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Svibanj" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Lipanj" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Srpanj" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Kolovoz" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Rujan" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Listopad" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Studeni" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Prosinac" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Postavke" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "danas" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "jučer" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "mjeseci" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "godina" @@ -273,6 +272,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -281,12 +300,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -298,123 +317,123 @@ msgstr "Greška prilikom isključivanja djeljenja" msgid "Error while changing permissions" msgstr "Greška prilikom promjena prava" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Lozinka" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Postavi datum isteka" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Dijeli preko email-a:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "kreiraj" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "ažuriraj" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "izbriši" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "djeli" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -461,11 +480,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Koristite ovaj link da biste poništili lozinku: {link}" @@ -485,8 +510,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Primit ćete link kako biste poništili zaporku putem e-maila." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Korisničko ime" @@ -530,7 +555,7 @@ msgstr "Osobno" msgid "Users" msgstr "Korisnici" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplikacije" @@ -640,49 +665,47 @@ msgstr "" msgid "Create an admin account" msgstr "Stvori administratorski račun" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Napredno" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Završi postavljanje" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -698,7 +721,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odjava" @@ -724,27 +747,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "zapamtiti" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Prijava" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 42ad420919..5348b43b4a 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,239 +76,234 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Nema pogreške, datoteka je poslana uspješno." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Poslana datoteka je parcijalno poslana" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Datoteka nije poslana" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Nedostaje privremeni direktorij" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Datoteke" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Podijeli" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "vrati" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Greška" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Ime" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Veličina" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Zadnja promjena" @@ -304,12 +311,12 @@ msgstr "Zadnja promjena" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Učitaj" @@ -345,69 +352,69 @@ msgstr "Maksimalna veličina za ZIP datoteke" msgid "Save" msgstr "Snimi" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "novo" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "tekstualna datoteka" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "mapa" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Preuzimanje" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Obriši" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Prijenos je preobiman" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 63899770e5..c74c2e8dff 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Spremanje..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index f33a72e663..b93a5ef818 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Korisnici" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Obriši" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 36eee3f2dd..faa06e0f5e 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Preuzimanje" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Učitaj" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Prekini upload" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index d2e83f8fae..c4f62d494f 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Greška" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Ime" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Obriši" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 3b8b04bcff..e9e53e4718 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Pomoć" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Osobno" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Postavke" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Korisnici" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administrator" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Greška kod autorizacije" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Datoteke" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,70 +267,76 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekundi prije" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "danas" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "jučer" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "prošli mjesec" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "prošlu godinu" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index f509f28456..bda952d5f2 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Nemogićnost učitavanja liste sa Apps Stora" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Isključi" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Uključi" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Greška" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Spremanje..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "vrati" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupe" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupa Admin" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Obriši" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__ime_jezika__" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "više" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Dodajte vašu aplikaciju" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Odaberite Aplikaciju" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Pogledajte stranicu s aplikacijama na apps.owncloud.com" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Lozinka" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Jezik" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Izradi" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "ostali" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Korisničko ime" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 83f2f5b9f3..c5facc60a2 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Greška" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -164,7 +164,7 @@ msgstr "Pomoć" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -200,7 +200,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -268,7 +268,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -411,41 +411,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 06314bc8c8..f39730b92a 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -20,12 +20,7 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s megosztotta Önnel ezt: »%s«" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nem sikerült e-mailt küldeni a következő felhasználóknak: %s" @@ -75,135 +70,139 @@ msgstr "Az átmeneti profil kép nem elérhető, próbáld újra" msgid "No crop data provided" msgstr "Vágáshoz nincs adat megadva" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "vasárnap" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "hétfő" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "kedd" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "szerda" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "csütörtök" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "péntek" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "szombat" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "január" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "február" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "március" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "április" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "május" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "június" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "július" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "augusztus" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "szeptember" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "október" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "november" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "december" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Beállítások" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n perccel ezelőtt" msgstr[1] "%n perccel ezelőtt" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "ma" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "tegnap" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "több hónapja" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "tavaly" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "több éve" @@ -271,6 +270,26 @@ msgstr "({count} kiválasztva)" msgid "Error loading file exists template" msgstr "Hiba a létező sablon betöltésekor" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Megosztott" @@ -279,12 +298,12 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Hiba" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -296,123 +315,123 @@ msgstr "Nem sikerült visszavonni a megosztást" msgid "Error while changing permissions" msgstr "Nem sikerült módosítani a jogosultságokat" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Megosztotta Önnel és a(z) {group} csoporttal: {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Megosztotta Önnel: {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Megosztani egy felhasználóval vagy csoporttal ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Megosztás hivatkozással" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Jelszóval is védem" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Jelszó" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Feltöltést is engedélyezek" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Email címre küldjük el" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Küldjük el" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Legyen lejárati idő" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "A lejárati idő" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Megosztás emaillel:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Nincs találat" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "csoport" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "email értesítés" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "módosíthat" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "jogosultság" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "létrehoz" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "szerkeszt" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "töröl" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "megoszt" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Az emailt elküldtük" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Figyelmeztetés" @@ -459,11 +478,17 @@ msgstr "A frissítés nem sikerült. Kérem értesítse erről a problémáról msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s jelszó visszaállítás" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Használja ezt a linket a jelszó ismételt beállításához: {link}" @@ -483,8 +508,8 @@ msgstr "A kérést nem sikerült teljesíteni!
Biztos, hogy jó emailcímet/ msgid "You will receive a link to reset your password via Email." msgstr "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Felhasználónév" @@ -528,7 +553,7 @@ msgstr "Személyes" msgid "Users" msgstr "Felhasználók" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Alkalmazások" @@ -638,49 +663,47 @@ msgstr "A kiszolgáló megfelelő beállításához kérjük olvassa el a admin account
" msgstr "Rendszergazdai belépés létrehozása" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Haladó" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Adatkönyvtár" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Adatbázis konfigurálása" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "adatbázist fogunk használni" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Az adatbázis neve" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Az adatbázis táblázattér (tablespace)" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "A beállítások befejezése" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Befejezés ..." @@ -696,7 +719,7 @@ msgstr "Az alkalmazás megfelelő működéséhez szükség van JavaScript-re. < msgid "%s is available. Get more information on how to update." msgstr "%s rendelkezésre áll. További információ a frissítéshez." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Kilépés" @@ -722,28 +745,28 @@ msgstr "A szerveroldali hitelesítés sikertelen!" msgid "Please contact your administrator." msgstr "Kérjük, lépjen kapcsolatba a rendszergazdával." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Elfelejtette a jelszavát?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "emlékezzen" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Bejelentkezés" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternatív bejelentkezés" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Szia!

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index cec4785ed7..572340e59a 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-27 01:55-0500\n" -"PO-Revision-Date: 2013-12-26 11:10+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -29,36 +29,48 @@ msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a név msgid "Could not move %s" msgstr "Nem sikerült %s áthelyezése" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "A fájlnév nem lehet semmi." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Az állomány neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!" +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "A kiinduló állomány érvénytelen" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, 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:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Hiba történt az állomány létrehozásakor" @@ -66,236 +78,231 @@ msgstr "Hiba történt az állomány létrehozásakor" msgid "Folder name cannot be empty." msgstr "A mappa neve nem maradhat kitöltetlenül" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "A mappa neve nem tartalmazhatja a \"/\" karaktert. Kérem válasszon másik nevet!" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Hiba történt a mappa létrehozásakor" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Nem található a mappa, ahova feltölteni szeretne." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Hibás mappacím" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "A feltöltés nem sikerült. Nem található a feltöltendő állomány." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Érvénytelen mappa." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Fájlok" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "A(z) {filename} állomány nem tölthető fel, mert ez vagy egy mappa, vagy pedig 0 bájtból áll." -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nincs elég szabad hely" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "A kiszolgálótól nem kapható meg az eredmény." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "Az URL-cím nem maradhat kitöltetlenül" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Az állomány nem hozható létre" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "A mappa nem hozható létre" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "A megadott URL-ről nem sikerül adatokat kapni" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Megosztás" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Az állomány nem nevezhető át" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Hiba a file törlése közben." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappa" msgstr[1] "%n mappa" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n állomány" msgstr[1] "%n állomány" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} és {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n állomány feltöltése" msgstr[1] "%n állomány feltöltése" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' fájlnév érvénytelen." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhatóak a jövőben." -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "A tároló majdnem tele van ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Az állományok titkosításához használt titkos kulcsa érvénytelen. Kérjük frissítse a titkos kulcs jelszót a személyes beállításokban, hogy ismét hozzáférjen a titkosított állományaihoz!" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Az állomány áthelyezése nem sikerült." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Hiba" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Név" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Méret" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Módosítva" @@ -303,12 +310,12 @@ msgstr "Módosítva" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s átnevezése nem sikerült" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Feltöltés" @@ -344,69 +351,69 @@ msgstr "ZIP-fájlok maximális kiindulási mérete" msgid "Save" msgstr "Mentés" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Új" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Új szöveges file" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Szövegfájl" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Új mappa" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Mappa" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Törölt fájlok" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Önnek nincs jogosultsága ahhoz, hogy ide állományokat töltsön föl, vagy itt újakat hozzon létre" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Letöltés" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Törlés" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "A feltöltés túl nagy" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index ee719e9280..99e10dc725 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-27 01:55-0500\n" -"PO-Revision-Date: 2013-12-26 13:50+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -83,18 +83,18 @@ msgid "" "administrator" msgstr "Ismeretlen hiba. Ellenőrizze a rendszer beállításait vagy forduljon a rendszergazdához!" -#: hooks/hooks.php:62 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Hiányzó követelmények." -#: hooks/hooks.php:63 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Kérem gondoskodjon arról, hogy PHP 5.3.3 vagy annál frissebb legyen telepítve, továbbá az OpenSSL a megfelelő PHP-bővítménnyel együtt rendelkezésre álljon és helyesen legyen konfigurálva! A titkosító modul egyelőre kikapcsolásra került." -#: hooks/hooks.php:281 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "A következő felhasználók nem állították be a titkosítást:" @@ -102,9 +102,9 @@ msgstr "A következő felhasználók nem állították be a titkosítást:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Mentés..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 84343fbce5..469445c337 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,40 +18,44 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Érvényes hozzáférés" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "A Dropbox tárolót nem sikerült beállítani" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Megadom a hozzáférést" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "A Google Drive tárolót nem sikerült beállítani" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: lib/config.php:465 +#: lib/config.php:516 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 "Figyelem: a PHP FTP támogatása vagy nincs telepítve, vagy nincs engedélyezve a kiszolgálón. Emiatt nem lehetséges FTP-tárolókat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Felhasználók" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Törlés" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Külső tárolók engedélyezése a felhasználók részére" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Lehetővé teszi, hogy a felhasználók külső tárolási szolgáltatásokat csatoljanak be a saját területükre" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL tanúsítványok" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "SSL tanúsítványok importálása" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index eb24f8de4b..c1be96e8ba 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,6 +18,10 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Ez egy jelszóval védett megosztás" @@ -54,32 +58,16 @@ msgstr "letiltásra került a megosztás" msgid "For more info, please ask the person who sent this link." msgstr "További információért forduljon ahhoz, aki ezt a linket küldte Önnek!" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s megosztotta Önnel ezt a mappát: %s" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s megosztotta Önnel ezt az állományt: %s" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Letöltés" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Feltöltés" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "A feltöltés megszakítása" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Nem áll rendelkezésre előnézet ehhez: " - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Közvetlen link" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 218eeecb95..5756c8efdc 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,44 +18,48 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nem sikerült %s végleges törlése" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Nem sikerült %s visszaállítása" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Hiba" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "visszaállítva" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Itt nincs semmi. Az Ön szemetes mappája üres!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Név" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Visszaállítás" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Törölve" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Törlés" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Törölt fájlok" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 1132f401cb..b7a32ce45b 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -20,38 +20,38 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "A(z) \"%s\" alkalmazást nem lehet telepíteni, mert nem kompatibilis az ownCloud telepített verziójával." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Nincs az alkalmazás név megadva." -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Súgó" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Személyes" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Beállítások" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Felhasználók" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Adminsztráció" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." @@ -64,15 +64,10 @@ msgstr "Ismeretlen file tipús" msgid "Invalid image" msgstr "Hibás kép" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "nem sikerült megnyitni \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." @@ -95,74 +90,78 @@ msgid "" "administrator." msgstr "A file-t kisebb részekben töltsd le vagy beszélj az adminisztrátorral a megoldás érdekében." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Az alkalmazás telepítéséhez nincs forrás megadva" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Az alkalmazás http-n keresztül történő telepítéséhez nincs href hivetkozás megadva" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Az alkalmazás helyi telepítéséhez nincs útvonal (mappa) megadva" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "A(z) %s típusú tömörített állomány nem támogatott" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Nem sikerült megnyitni a tömörített állományt a telepítés során" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Az alkalmazás nem szolgáltatott info.xml file-t" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Az alkalmazást nem lehet telepíteni, mert abban nem engedélyezett programkód szerepel" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Az alalmazás nem telepíthető, mert nem kompatibilis az ownClod ezzel a verziójával." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Az alkalmazást nem lehet telepíteni, mert tartalmazza a \n\ntrue\n\ncímkét, ami a nem szállított alkalmazások esetén nem engedélyezett" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Az alkalmazást nem lehet telepíteni, mert az info.xml/version-ben megadott verzió nem egyezik az alkalmazás-áruházban feltüntetett verzióval." -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Az alkalmazás mappája már létezik" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a jogosultásgokat. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Az alkalmazás nincs engedélyezve" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Azonosítási hiba" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "A token lejárt. Frissítse az oldalt." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fájlok" @@ -202,8 +201,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "A MySQL felhasználói név és/vagy jelszó érvénytelen" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -230,21 +229,21 @@ msgstr "A hibát ez a parancs okozta: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "A '%s'@'localhost' MySQL felhasználó már létezik." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Törölje ezt a felhasználót a MySQL-ből" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "A '%s'@'%%' MySQL felhasználó már létezik" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Törölje ezt a felhasználót a MySQL-ből." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -271,66 +270,72 @@ msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ez a kategória nem található: \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "pár másodperce" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n perccel ezelőtt" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "ma" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "tegnap" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "múlt hónapban" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "tavaly" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "több éve" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 39d04cb9e3..9a58760356 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-15 16:40+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -21,6 +21,48 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Titkosítás" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Nem tölthető le a lista az App Store-ból" @@ -117,62 +159,90 @@ msgstr "A back-end nem támogatja a jelszó módosítást, de felhasználó titk msgid "Unable to change password" msgstr "Nem sikerült megváltoztatni a jelszót" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Felhasználói leírás" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Frissítés erre a verzióra: {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Letiltás" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "engedélyezve" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Kérem várjon..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Hiba az alkalmazás kikapcsolása közben" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Hiba az alalmazás engedélyezése közben" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Frissítés folyamatban..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Hiba történt a programfrissítés közben" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Hiba" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Frissítés" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Frissítve" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Válassz profil képet" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "File-ok kititkosítása folyamatban... Kérlek várj, ez hosszabb ideig is eltarthat ..." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Mentés..." - #: js/users.js:47 msgid "deleted" msgstr "törölve" @@ -185,40 +255,40 @@ msgstr "visszavonás" msgid "Unable to remove user" msgstr "A felhasználót nem sikerült eltávolítáni" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Csoportok" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Csoportadminisztrátor" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Törlés" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "csoport hozzáadása" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "A felhasználó nem hozható létre" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Figyelmeztetés: A felhasználó \"{user}\" kezdő könyvtára már létezett" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -242,18 +312,42 @@ msgstr "Hibák és végzetes hibák" msgid "Fatal issues only" msgstr "Csak a végzetes hibák" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Biztonsági figyelmeztetés" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Jelenlegi elérése a következőnek '%s' jelenleg HTTP-n keresztül történik. Nagyon ajánlott, hogy a kiszolgálot úgy állitsd be, hogy HTTPS-t tudjál használni." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -262,68 +356,68 @@ msgid "" "root." msgstr "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "A beállítással kapcsolatos figyelmeztetés" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "A 'fileinfo' modul hiányzik" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "A PHP verzió túl régi" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "A nyelvi lokalizáció nem működik" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Az internet kapcsolat nem működik" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -332,118 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Ütemezett feladatok" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "A cron.php webcron szolgáltatásként van regisztrálva, hogy 15 percenként egyszer lefuttassa a cron.php-t." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Használjuk a rendszer cron szolgáltatását, hogy 15 percenként egyszer futtassa le a cron.php-t." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Megosztás" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "A megosztás API-jának engedélyezése" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Linkek engedélyezése" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Feltöltést engedélyezése mindenki számára" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Engedélyezni a felhasználóknak, hogy beállíithassák, hogy mások feltölthetnek a nyilvánosan megosztott mappákba." -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "A továbbosztás engedélyezése" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "A felhasználók bárkivel megoszthatják állományaikat" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "E-mail értesítések engedélyezése" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról." -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Kérjük kapcsolodjon a %s rendszerhez HTTPS protokollon keresztül, hogy be vagy ki kapcsoljaa kötelező SSL beállítást." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Több" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Verzió" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "A programot az ownCloud közösség fejleszti. A forráskód az AGPL feltételei mellett használható föl." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Az alkalmazás hozzáadása" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "További alkalmazások" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Válasszon egy alkalmazást" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Lásd apps.owncloud.com, alkalmazások oldal" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-a jogtuladonos " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Felhasználói leírás" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Üzemeltetői leírás" @@ -510,7 +652,7 @@ msgstr "Nézzük meg újra az első bejelentkezéskori segítséget!" msgid "You have used %s of the available %s" msgstr "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Jelszó" @@ -522,151 +664,149 @@ msgstr "A jelszava megváltozott" msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Teljes név" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Az Ön email címe" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilkép" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Új feltöltése" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Új kiválasztása Fileokból" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Kép eltávolítása" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még átszabható" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Az avatarod az eredeti fiókod alapján van beállítva." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Megszakítás" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Válassz profil képet" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Segítsen a fordításban!" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Ezt a címet használd, hogy hozzáférj a fileokhoz WebDAV-on keresztül" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Titkosítás" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak." -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Bejelentkezési jelszó" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Kititkosítja az összes file-t" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Bejelentkezési név" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Létrehozás" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "A jelszóvisszaállítás adminisztrációja" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetre, ha a felhasználók megváltoztatják a jelszavukat" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Alapértelmezett tárhely" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Korlátlan" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Más" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Felhasználónév" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Tárhely" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "a teljes név megváltoztatása" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "új jelszó beállítása" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Alapértelmezett" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 5afefda925..12057ef159 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -88,43 +88,43 @@ msgstr "Sikeres végrehajtás" msgid "Error" msgstr "Hiba" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Konfiguráció OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Konfiguráió hibás" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Konfiguráció nincs befejezve" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Csoportok kiválasztása" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Objektumosztályok kiválasztása" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Attribútumok kiválasztása" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "A kapcsolatellenőrzés eredménye: sikerült" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "A kapcsolatellenőrzés eredménye: nem sikerült" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Tényleg törölni szeretné a kiszolgáló beállításait?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "A törlés megerősítése" @@ -142,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "%s felhasználó van" msgstr[1] "%s felhasználó van" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Érvénytelen gépnév" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "A kívánt funkció nem található" @@ -164,8 +164,8 @@ msgstr "Súgó" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Korlátozzuk %s elérését a következő feltételeknek megfelelő csoportokra:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -200,8 +200,8 @@ msgid "groups found" msgstr "csoport van" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Melyik attribútumot használjuk login névként:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -268,8 +268,8 @@ msgstr "A Haladó fülre kattintva külön DN-gyökér állítható be a felhasz #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Korlátozzuk %s elérését a következő feltételeknek megfelelő felhasználókra:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -411,41 +411,51 @@ msgstr "A csoportok lekérdezett attribútumai" msgid "Group-Member association" msgstr "A csoporttagság attribútuma" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Különleges attribútumok" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kvóta mező" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Alapértelmezett kvóta" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "bájtban" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Email mező" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "A home könyvtár elérési útvonala" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Hagyja üresen, ha a felhasználónevet kívánja használni. Ellenkező esetben adjon meg egy LDAP/AD attribútumot!" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Belső felhasználónév" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Alapértelmezetten a belső felhasználónév az UUID tulajdonságból jön létre. Ez biztosítja a felhasználónév egyediségét és hogy a nem kell konvertálni a karaktereket benne. A belső felhasználónévnél a megkötés az, hogy csak a következő karakterek engdélyezettek benne: [ a-zA-Z0-9_.@- ]. Ezeken a karaktereken kivül minden karakter le lesz cserélve az adott karakter ASCII kódtáblában használható párjára vagy ha ilyen nincs akkor egyszerűen ki lesz hagyva. Ha így mégis ütköznének a nevek akkor hozzá lesz füzve egy folyamatosan növekvő számláló rész. A belső felhasználónevet lehet használni a felhasználó azonosítására a programon belül. Illetve ez lesz az alapáértelmezett neve a felhasználó kezdő könyvtárának az ownCloud-ban. Illetve..............................." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "A belső felhasználónév attribútuma:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Az UUID-felismerés felülbírálása" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Az UUID attribútum alapértelmezetten felismerésre kerül. Az UUID attribútum segítségével az LDAP felhasználók és csoportok egyértelműen azonosíthatók. A belső felhasználónév is azonos lesz az UUID-vel, ha fentebb nincs másként definiálva. Ezt a beállítást felülbírálhatja és bármely attribútummal helyettesítheti. Ekkor azonban gondoskodnia kell arról, hogy a kiválasztott attribútum minden felhasználó és csoport esetén lekérdezhető és egyedi értékkel bír. Ha a mezőt üresen hagyja, akkor az alapértelmezett attribútum lesz érvényes. Egy esetleges módosítás csak az újonnan hozzárendelt (ill. létrehozott) felhasználókra és csoportokra lesz érvényes." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "A felhasználók UUID attribútuma:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "A csoportok UUID attribútuma:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Felhasználó - LDAP felhasználó hozzárendelés" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "A felhasználónevek segítségével történik a (meta)adatok tárolása és hozzárendelése. A felhasználók pontos azonosítása céljából minden LDAP felhasználóhoz egy belső felhasználónevet rendelünk. Ezt a felhasználónevet az LDAP felhasználó UUID attribútumához rendeljük hozzá. Ezen túlmenően a DN is tárolásra kerül a gyorsítótárban, hogy csökkentsük az LDAP lekérdezések számát, de a DN-t nem használjuk azonosításra. Ha a DN megváltozik, akkor a rendszer ezt észleli. A belső felhasználóneveket a rendszer igen sok helyen használja, ezért a hozzárendelések törlése sok érvénytelen adatrekordot eredményez az adatbázisban. A hozzárendelések törlése nem függ a konfigurációtól, minden LDAP konfigurációt érint! Ténylegesen működő szolgáltatás esetén sose törölje a hozzárendeléseket, csak tesztelési vagy kísérleti célú szerveren!" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "A felhasználó - LDAP felhasználó hozzárendelés törlése" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "A csoport - LDAP csoport hozzárendelés törlése" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index f4c4980038..38e96911df 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Կիրակի" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Երկուշաբթի" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Երեքշաբթի" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Չորեքշաբթի" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Հինգշաբթի" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Ուրբաթ" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Շաբաթ" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Հունվար" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Փետրվար" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Մարտ" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Ապրիլ" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Մայիս" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Հունիս" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Հուլիս" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Օգոստոս" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Սեպտեմբեր" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Հոկտեմբեր" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Նոյեմբեր" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 7449a23480..a943621793 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "Պահպանել" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Բեռնել" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Ջնջել" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/hy/files_encryption.po b/l10n/hy/files_encryption.po index ccf3ebcc24..6379ac121a 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 6b9791aa98..10f068d612 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Ջնջել" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 0852fdce9b..3948e67f64 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "Բեռնել" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 499cc4c2ca..f41cdd7798 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Ջնջել" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index a54f97275b..b81e6dd42c 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index d3c43e0c90..ddf4175972 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Ջնջել" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Այլ" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index 74da815526..eeb3690022 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 881393b8fc..f322520cf1 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Dominica" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Lunedi" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Martedi" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Mercuridi" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Jovedi" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Venerdi" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sabbato" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "januario" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februario" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Martio" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Junio" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Julio" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Augusto" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Septembre" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Octobre" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Novembre" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Decembre" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Configurationes" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Contrasigno" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Invia" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "gruppo" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Leva compartir" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "pote modificar" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nomine de usator" @@ -525,7 +550,7 @@ msgstr "Personal" msgid "Users" msgstr "Usatores" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Applicationes" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "Crear un conto de administration" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avantiate" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Clauder le session" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Tu perdeva le contrasigno?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "memora" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Aperir session" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 6c4344ca4b..2417161d13 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Nulle file esseva incargate." -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Files" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Error" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nomine" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Dimension" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificate" @@ -301,12 +308,12 @@ msgstr "Modificate" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Incargar" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "Salveguardar" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nove" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "File de texto" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Dossier" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Discargar" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Deler" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index ad8dfdbd93..ef8a1d96f5 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 9b9f183f6f..2ead0f4a73 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Usatores" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Deler" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 82ad5f791c..e379fe15ec 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Discargar" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Incargar" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index c373b8961e..6333e27184 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Error" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nomine" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Deler" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index f0bcf02cf0..9304e0a841 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Adjuta" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Configurationes" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Usatores" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administration" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "servicios web sub tu controlo" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Files" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 5c48ba4fac..fc437d9f5a 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Error" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Actualisar" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Gruppos" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Deler" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Interlingua" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Registro" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Plus" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Adder tu application" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Selectionar un app" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Contrasigno" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-posta" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "Imagine de profilo" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Linguage" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Crear" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Altere" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nomine de usator" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 617c5c580f..593db01cf1 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "Adjuta" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index b386490605..0bd54f52ac 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" -"PO-Revision-Date: 2014-01-07 07:10+0000\n" -"Last-Translator: arifpedia \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -17,12 +17,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s membagikan »%s« dengan anda" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Tidak dapat mengirim Email ke pengguna berikut: %s" @@ -72,131 +67,135 @@ msgstr "Tidak ada gambar profil sementara yang tersedia, coba lagi" msgid "No crop data provided" msgstr "Tidak ada data krop tersedia" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Minggu" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Senin" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Selasa" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Rabu" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Kamis" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Jumat" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sabtu" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januari" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februari" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Maret" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mei" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Agustus" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Desember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Pengaturan" -#: js/js.js:872 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:873 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: js/js.js:874 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: js/js.js:875 +#: js/js.js:995 msgid "today" msgstr "hari ini" -#: js/js.js:876 +#: js/js.js:996 msgid "yesterday" msgstr "kemarin" -#: js/js.js:877 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: js/js.js:878 +#: js/js.js:998 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:879 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: js/js.js:880 +#: js/js.js:1000 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:881 +#: js/js.js:1001 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:882 +#: js/js.js:1002 msgid "years ago" msgstr "beberapa tahun lalu" @@ -263,6 +262,26 @@ msgstr "({count} terpilih)" msgid "Error loading file exists template" msgstr "Galat memuat templat berkas yang sudah ada" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Dibagikan" @@ -271,12 +290,12 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Galat" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -288,123 +307,123 @@ msgstr "Galat ketika membatalkan pembagian" msgid "Error while changing permissions" msgstr "Galat ketika mengubah izin" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Dibagikan dengan anda dan grup {group} oleh {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Dibagikan dengan anda oleh {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Bagikan dengan pengguna atau grup ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Bagikan tautan" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Lindungi dengan sandi" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Sandi" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Izinkan Unggahan Publik" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Emailkan tautan ini ke orang" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Kirim" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Atur tanggal kedaluwarsa" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Tanggal kedaluwarsa" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Bagian lewat email:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grup" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "notifikasi via email" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "dapat sunting" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "kontrol akses" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "buat" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "perbarui" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "hapus" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "bagikan" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Sandi dilindungi" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Galat ketika mengatur tanggal kedaluwarsa" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email terkirim" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Peringatan" @@ -451,11 +470,17 @@ msgstr "Pembaruan gagal. Silakan laporkan masalah ini ke Apakah anda yakin email/nama pengguna anda benar?" msgid "You will receive a link to reset your password via Email." msgstr "Anda akan menerima tautan penyetelan ulang sandi lewat Email." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nama pengguna" @@ -520,7 +545,7 @@ msgstr "Pribadi" msgid "Users" msgstr "Pengguna" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplikasi" @@ -630,49 +655,47 @@ msgstr "Untuk informasi cara mengkonfigurasi server anda dengan benar, silakan l msgid "Create an admin account" msgstr "Buat sebuah akun admin" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Lanjutan" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Konfigurasikan basis data" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Pengguna basis data" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Sandi basis data" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nama basis data" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tablespace basis data" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Host basis data" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Menyelesaikan ..." @@ -688,7 +711,7 @@ msgstr "Aplikasi ini memerlukan JavaScript yang diaktifkan untuk beroperasi deng msgid "%s is available. Get more information on how to update." msgstr "%s tersedia. Dapatkan informasi lebih lanjut tentang cara memperbarui." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Keluar" @@ -714,28 +737,28 @@ msgstr "Otentikasi dari sisi server gagal!" msgid "Please contact your administrator." msgstr "Silahkan hubungi administrator anda." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Lupa sandi?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "selalu masuk" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Masuk" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Cara Alternatif untuk Masuk" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Hai,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/id/files.po b/l10n/id/files.po index b215125282..b1d426363a 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" -"PO-Revision-Date: 2014-01-07 08:10+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -28,36 +28,48 @@ msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" msgid "Could not move %s" msgstr "Tidak dapat memindahkan %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Nama berkas tidak boleh kosong." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Nama berkas tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Sumber tidak sah" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Galat saat mengunduh %s ke %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Galat saat membuat berkas" @@ -65,233 +77,228 @@ msgstr "Galat saat membuat berkas" msgid "Folder name cannot be empty." msgstr "Nama folder tidak bolh kosong." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Nama folder tidak boleh mengandung \"/\". Silakan pilih nama yang berbeda." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Galat saat membuat folder" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Tidak dapat mengatur folder unggah" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Token tidak sah" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Unggah gagal. Tidak menemukan berkas yang akan diunggah" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Direktori tidak valid." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Berkas" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Tidak dapat mengunggah {filename} karena ini sebuah direktori atau memiliki ukuran 0 byte" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Ruang penyimpanan tidak mencukupi" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Tidak mendapatkan hasil dari server." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL tidak boleh kosong" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Tidak dapat membuat berkas" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Tidak dapat membuat folder" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Bagikan" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Tidak dapat mengubah nama berkas" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "mengganti {new_name} dengan {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "urungkan" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Galat saat menghapus berkas." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n berkas" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} dan {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Mengunggah %n berkas" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' bukan nama berkas yang valid." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Enskripi telah dinonaktifkan tetapi berkas anda tetap dienskripsi. Silakan menuju ke pengaturan pribadi untuk deskrip berkas anda." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Galat saat memindahkan berkas" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Galat" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nama" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Ukuran" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Dimodifikasi" @@ -299,12 +306,12 @@ msgstr "Dimodifikasi" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s tidak dapat diubah nama" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Unggah" @@ -340,69 +347,69 @@ msgstr "Ukuran masukan maksimum untuk berkas ZIP" msgid "Save" msgstr "Simpan" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Baru" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Berkas teks baru" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Berkas teks" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Map baru" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Folder" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Dari tautan" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Berkas yang dihapus" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Anda tidak memiliki akses untuk mengunggah atau membuat berkas disini" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Unduh" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Hapus" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Yang diunggah terlalu besar" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silakan tunggu." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Yang sedang dipindai" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 7bc9584010..4a9069a529 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" -"PO-Revision-Date: 2014-01-07 07:40+0000\n" -"Last-Translator: arifpedia \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -81,18 +81,18 @@ msgid "" "administrator" msgstr "Kesalahan tak dikenal, silakan periksa pengaturan sistem Anda atau hubungi admin." -#: hooks/hooks.php:62 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Persyaratan yang hilang." -#: hooks/hooks.php:63 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:281 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Pengguna berikut belum diatur untuk enkripsi:" @@ -100,9 +100,9 @@ msgstr "Pengguna berikut belum diatur untuk enkripsi:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Inisial enskripsi dijalankan... Ini dapat memakan waktu. Silakan tunggu." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Menyimpan..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 2ec650a917..a74f2ef2c4 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,40 +17,44 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Akses diberikan" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Kesalahan dalam mengonfigurasi penyimpanan Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Berikan hak akses" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Masukkan kunci dan sandi aplikasi Dropbox yang benar." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Kesalahan dalam mengkonfigurasi penyimpanan Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Peringatan: \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: lib/config.php:465 +#: lib/config.php:516 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 "Peringatan: Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Pengguna" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Hapus" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Aktifkan Penyimpanan Eksternal Pengguna" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Izinkan pengguna untuk mengaitkan penyimpanan eksternal mereka" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Sertifikat root SSL" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Impor Sertifikat Root" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index c5659df948..a4cf2d2007 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" -"PO-Revision-Date: 2014-01-07 08:00+0000\n" -"Last-Translator: arifpedia \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,6 +18,10 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Berbagi ini dilindungi sandi" @@ -54,32 +58,16 @@ msgstr "berbagi dinonaktifkan" msgid "For more info, please ask the person who sent this link." msgstr "Untuk info lebih lanjut, silakan tanyakan orang yang mengirim tautan ini." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s membagikan folder %s dengan Anda" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s membagikan berkas %s dengan Anda" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Unduh" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Unggah" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Batal unggah" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Tidak ada pratinjau yang tersedia untuk" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Tautan langsung" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 5f3ad858bd..b29a1cbf4e 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" -"PO-Revision-Date: 2014-01-07 07:10+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,21 +17,25 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Tidak dapat menghapus permanen %s" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Galat" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index c2c84a614c..caf1ed1e10 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-31 01:55-0500\n" -"PO-Revision-Date: 2013-12-31 03:40+0000\n" -"Last-Translator: arifpedia \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,34 +17,34 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Apl \"%s\" tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud." -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "Tidak ada nama apl yang ditentukan" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "Bantuan" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "Pribadi" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "Pengaturan" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" msgstr "Pengguna" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "Admin" @@ -61,15 +61,10 @@ msgstr "Tipe berkas tak dikenal" msgid "Invalid image" msgstr "Gambar tidak sah" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "layanan web dalam kendali anda" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "tidak dapat membuka \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Pengunduhan ZIP dimatikan." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "Silahkan unduh berkas secara terpisah dalam bentuk potongan kecil atau meminta ke administrator anda." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Tidak ada sumber yang ditentukan saat menginstal apl" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Href tidak ditentukan saat menginstal apl dari http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Lokasi tidak ditentukan saat menginstal apl dari berkas lokal" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Arsip dengan tipe %s tidak didukung" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Gagal membuka arsip saat menginstal apl" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Apl tidak menyediakan berkas info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Apl tidak dapat diinstal karena terdapat kode yang tidak diizinkan didalam Apl" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Apl tidak dapat diinstal karena tidak kompatibel dengan versi ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Apl tidak dapat diinstal karena mengandung tag true yang tidak diizinkan untuk apl yang bukan bawaan." -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Apl tidak dapat diinstal karena versi di info.xml/versi tidak sama dengan versi yang dilansir dari toko apl" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Direktori Apl sudah ada" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Aplikasi tidak diaktifkan" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Galat saat otentikasi" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token sudah kedaluwarsa. Silakan muat ulang halaman." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Berkas" @@ -199,8 +198,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Nama pengguna dan/atau sandi MySQL tidak sah" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -227,21 +226,21 @@ msgstr "Perintah yang bermasalah: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Pengguna MySQL '%s'@'localhost' sudah ada." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Hapus pengguna ini dari MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Pengguna MySQL '%s'@'%%' sudah ada." +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Hapus pengguna ini dari MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -268,62 +267,68 @@ msgstr "Atur nama pengguna admin." msgid "Set an admin password." msgstr "Atur sandi admin." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Silakan periksa ulang panduan instalasi." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Tidak menemukan kategori \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "hari ini" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "kemarin" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "bulan kemarin" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "tahun kemarin" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 0b8a55abc7..49e9f50b56 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" -"PO-Revision-Date: 2014-01-07 08:10+0000\n" -"Last-Translator: arifpedia \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,6 +17,48 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Enkripsi" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Tidak dapat memuat daftar dari App Store" @@ -113,62 +155,90 @@ msgstr "Back-end tidak mendukung perubahan password, tetapi kunci enkripsi pengg msgid "Unable to change password" msgstr "Tidak dapat mengubah sandi" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Dokumentasi Pengguna" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Perbarui ke {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Nonaktifkan" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktifkan" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Mohon tunggu...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Galat saat menonaktifkan aplikasi" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Galat saat mengakifkan aplikasi" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Memperbarui...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Gagal ketika memperbarui aplikasi" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Galat" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Perbarui" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Diperbarui" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Pilih foto profil" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Mendeskripsi berkas... Modon tunggu, ini memerlukan beberapa saat." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Menyimpan..." - #: js/users.js:47 msgid "deleted" msgstr "dihapus" @@ -181,40 +251,40 @@ msgstr "urungkan" msgid "Unable to remove user" msgstr "Tidak dapat menghapus pengguna" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grup" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Admin Grup" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Hapus" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "tambah grup" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Gagal membuat pengguna" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Peringatan: Direktori home untuk pengguna \"{user}\" sudah ada" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -238,18 +308,42 @@ msgstr "Galat dan masalah fatal" msgid "Fatal issues only" msgstr "Hanya masalah fatal" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Peringatan Keamanan" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Anda mengakses %s melalui HTTP. Kami sangat menyarankan Anda untuk mengkonfigurasi server dengan menggunakan HTTPS sebagai gantinya." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "Direktori data dan berkas Anda mungkin dapat diakses dari internet. Berkas .htaccess tidak bekerja. Kami sangat menyarankan untuk mengkonfigurasi server web Anda agar direktori data tidak lagi dapat diakses atau Anda dapat memindahkan direktori data di luar dokumen root webserver." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Peringatan Persiapan" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Silakan periksa kembali petunjuk instalasi." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' tidak ada" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Versi PHP telah usang" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Versi PHP telah usang. Kami sangat menyarankan untuk diperbarui ke versi 5.3.8 atau yang lebih baru karena versi lama diketahui rusak. Ada kemungkinan bahwa instalasi ini tidak bekerja dengan benar." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Kode pelokalan tidak berfungsi" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistem lokal tidak dapat diatur untuk satu yang mendukung UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Ini artinya mungkin ada masalah dengan karakter tertentu pada nama berkas." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Kami sangat menyarankan untuk menginstal paket yang dibutuhkan pada sistem agar mendukung salah satu bahasa berikut: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Koneksi internet tidak berfungsi" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Jalankan tugas setiap kali halaman dimuat" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php didaftarkan pada layanan webcron untuk memanggil cron.php setiap 15 menit melalui http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Menggunakan sistem layanan cron untuk memanggil berkas cron.php setiap 15 menit." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Berbagi" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Aktifkan API Pembagian" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Izinkan tautan" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Izinkan unggahan publik" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Izinkan pengguna memungkinkan orang lain untuk mengunggah kedalam folder berbagi publik mereka" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Izinkan pembagian ulang" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Izinkan pemberitahuan email" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Catat" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Lainnya" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versi" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Dikembangkan oleh komunitas ownCloud, kode sumber dilisensikan di bawah AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Tambahkan Aplikasi Anda" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Aplikasi Lainnya" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Pilih Aplikasi" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman aplikasi di apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-dilisensikan oleh " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Dokumentasi Pengguna" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Dokumentasi Administrator" @@ -506,7 +648,7 @@ msgstr "Tampilkan Penuntun Konfigurasi Awal" msgid "You have used %s of the available %s" msgstr "Anda telah menggunakan %s dari total %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Sandi" @@ -518,151 +660,149 @@ msgstr "Sandi Anda telah diubah" msgid "Unable to change your password" msgstr "Gagal mengubah sandi Anda" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Sandi saat ini" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Sandi baru" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Ubah sandi" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Nama Lengkap" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Alamat email Anda" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Masukkan alamat email untuk mengaktifkan pemulihan sandi" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Foto profil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Unggah baru" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Pilih baru dari Berkas" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Hapus gambar" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Bisa png atau jpg. Idealnya berbentuk persegi tetapi jika tidak Anda bisa memotongnya nanti." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Avatar disediakan oleh akun asli Anda." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Batal" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Pilih sebagai gambar profil" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Gunakan alamat ini untuk mengakses Berkas via WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Enkripsi" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Aplikasi enkripsi tidak lagi diaktifkan, silahkan mendekripsi semua file Anda" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Sandi masuk" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Deskripsi semua Berkas" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Nama Masuk" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Buat" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Sandi pemulihan Admin" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Masukkan sandi pemulihan untuk memulihkan berkas pengguna saat penggantian sandi" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Penyimpanan Baku" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Tak terbatas" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Lainnya" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nama pengguna" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Penyimpanan" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "ubah nama lengkap" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "setel sandi baru" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Baku" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index e90f580e2a..74e4dcbde1 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" -"PO-Revision-Date: 2014-01-07 07:10+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -86,43 +86,43 @@ msgstr "Sukses" msgid "Error" msgstr "Galat" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Pilih grup" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Tes koneksi sukses" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Tes koneksi gagal" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Anda ingin menghapus Konfigurasi Server saat ini?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Konfirmasi Penghapusan" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "Bantuan" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "Atribut Pencarian Grup" msgid "Group-Member association" msgstr "asosiasi Anggota-Grup" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atribut Khusus" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Bidang Kuota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Kuota Baku" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "dalam bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Bidang Email" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Aturan Penamaan Folder Home Pengguna" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Biarkan nama pengguna kosong (default). Atau tetapkan atribut LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/id/user_webdavauth.po b/l10n/id/user_webdavauth.po index 1c607bd00f..8663a9a05e 100644 --- a/l10n/id/user_webdavauth.po +++ b/l10n/id/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# arifpedia , 2014 # w41l , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-01-10 15:01+0000\n" +"Last-Translator: arifpedia \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,11 +25,11 @@ msgstr "Otentikasi WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Alamat:" #: templates/settings.php:7 msgid "" "The user credentials will be sent to this address. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "Kredensial pengguna akan dikirim ke alamat ini. Pengaya ini memeriksa respon dan akan menafsirkan kode status HTTP 401 dan 403 sebagai kredensial yang tidak valid, dan semua tanggapan lain akan dianggap sebagai kredensial yang valid." diff --git a/l10n/is/core.po b/l10n/is/core.po index 24e272a5ed..011b4d8737 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,135 +68,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Sunnudagur" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Mánudagur" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Þriðjudagur" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Miðvikudagur" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Fimmtudagur" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Föstudagur" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Laugardagur" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Janúar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Febrúar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mars" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Apríl" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maí" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Júní" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Júlí" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Ágúst" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Október" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Nóvember" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Desember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Stillingar" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sek." -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "í dag" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "í gær" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "síðasta ári" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "einhverjum árum" @@ -269,6 +268,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Deilt" @@ -277,12 +296,12 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Villa" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -294,123 +313,123 @@ msgstr "Villa við að hætta deilingu" msgid "Error while changing permissions" msgstr "Villa við að breyta aðgangsheimildum" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Deilt með þér og hópnum {group} af {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Deilt með þér af {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Verja með lykilorði" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Lykilorð" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Senda vefhlekk í tölvupóstu til notenda" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Senda" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Setja gildistíma" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Gildir til" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Deila með tölvupósti:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "getur breytt" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "mynda" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "uppfæra" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "eyða" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "deila" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Tölvupóstur sendur" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Aðvörun" @@ -457,11 +476,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Uppfærslan heppnaðist. Beini þér til ownCloud nú." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}" @@ -481,8 +506,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Notendanafn" @@ -526,7 +551,7 @@ msgstr "Um mig" msgid "Users" msgstr "Notendur" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Forrit" @@ -636,49 +661,47 @@ msgstr "" msgid "Create an admin account" msgstr "Útbúa vefstjóra aðgang" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Ítarlegt" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Gagnamappa" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Stilla gagnagrunn" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "verður notað" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Gagnagrunns lykilorð" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Virkja uppsetningu" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -694,7 +717,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s er til boða. Fáðu meiri upplýsingar um hvernig þú uppfærir." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Útskrá" @@ -720,27 +743,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Týndir þú lykilorðinu?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "muna eftir mér" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Skrá inn" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/is/files.po b/l10n/is/files.po index ba1a0cc014..9d53e5fa54 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" msgid "Could not move %s" msgstr "Gat ekki fært %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Nafn skráar má ekki vera tómt" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Ógild mappa." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Skrár" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Ekki nægt pláss tiltækt" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Deila" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' er ekki leyfilegt nafn." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Villa" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nafn" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Stærð" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Breytt" @@ -301,12 +308,12 @@ msgstr "Breytt" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Senda inn" @@ -342,69 +349,69 @@ msgstr "Hámarks inntaksstærð fyrir ZIP skrár" msgid "Save" msgstr "Vista" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nýtt" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Texta skrá" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Mappa" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Af tengli" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Eyða" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Innsend skrá er of stór" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index d8f5c06d8c..599989d20e 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Er að vista ..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index aa54645b9c..27db470770 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Aðgengi veitt" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Villa við að setja upp Dropbox gagnasvæði" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Veita aðgengi" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:465 +#: lib/config.php:516 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 "Aðvörun: FTP stuðningur í PHP er ekki virkur. Uppsetning á FTP gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Notendur" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Eyða" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Virkja ytra gagnasvæði notenda" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Leyfa notendum að bæta við sínum eigin ytri gagnasvæðum" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL rótar skilríki" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Flytja inn rótar skilríki" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index cda2b8abd9..7e43bcdc42 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s deildi möppunni %s með þér" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s deildi skránni %s með þér" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Niðurhal" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Senda inn" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Hætta við innsendingu" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Yfirlit ekki í boði fyrir" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 228fce21ec..72fed74a6d 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Villa" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nafn" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Eyða" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 8bda5c5c8c..bbb36d9067 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hjálp" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Um mig" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Stillingar" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Notendur" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Stjórnun" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Slökkt á ZIP niðurhali." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Forrit ekki virkt" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Villa við auðkenningu" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Skrár" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Fann ekki flokkinn \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sek." -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "í dag" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "í gær" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "síðasta mánuði" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "síðasta ári" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 2ea8e49f9e..a1a6e8ab1a 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Dulkóðun" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Ekki tókst að hlaða lista frá forrita síðu" @@ -114,61 +156,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Notenda handbók" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Gera óvirkt" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Virkja" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Andartak...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Uppfæri..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Villa" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Uppfæra" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Uppfært" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Er að vista ..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -182,40 +252,40 @@ msgstr "afturkalla" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Hópar" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Hópstjóri" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Eyða" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__nafn_tungumáls__" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Öryggis aðvörun" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Meira" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Minna" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Þróað af ownCloud samfélaginu, forrita kóðinn er skráðu með AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Bæta við forriti" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Fleiri forrit" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Veldu forrit" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Skoða síðu forrits hjá apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-leyfi skráð af " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Notenda handbók" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Stjórnenda handbók" @@ -507,7 +649,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "Þú hefur notað %s af tiltæku %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Lykilorð" @@ -519,151 +661,149 @@ msgstr "Lykilorði þínu hefur verið breytt" msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þínu" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Netfang" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Dulkóðun" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Búa til" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Sjálfgefin gagnageymsla" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ótakmarkað" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Annað" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Notendanafn" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "gagnapláss" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Sjálfgefið" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 346a6ab1bd..e0cccdc882 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "Villa" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -163,7 +163,7 @@ msgstr "Hjálp" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -199,7 +199,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -267,7 +267,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -410,41 +410,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +470,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +489,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +515,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 4e82d96447..2c0037d4b3 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -5,15 +5,15 @@ # Translators: # nappo , 2013 # idetao , 2013 -# polxmod , 2013 -# Vincenzo Reale , 2013 +# Paolo Velati , 2013 +# Vincenzo Reale , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s ha condiviso «%s» con te" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Impossibile inviare email ai seguenti utenti: %s" @@ -76,135 +71,139 @@ msgstr "Nessuna immagine di profilo provvisoria disponibile, riprova" msgid "No crop data provided" msgstr "Dati di ritaglio non forniti" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Domenica" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Lunedì" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Martedì" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Mercoledì" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Giovedì" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Venerdì" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sabato" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Gennaio" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Febbraio" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Marzo" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Aprile" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maggio" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Giugno" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Luglio" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Agosto" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Settembre" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Ottobre" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Novembre" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Dicembre" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "oggi" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ieri" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "mese scorso" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "mesi fa" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "anno scorso" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "anni fa" @@ -272,6 +271,26 @@ msgstr "({count} selezionati)" msgid "Error loading file exists template" msgstr "Errore durante il caricamento del modello del file esistente" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Condivisi" @@ -280,12 +299,12 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Errore" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -297,123 +316,123 @@ msgstr "Errore durante la rimozione della condivisione" msgid "Error while changing permissions" msgstr "Errore durante la modifica dei permessi" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Condiviso con te e con il gruppo {group} da {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Condiviso con te da {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Condividi con utente o gruppo ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Condividi collegamento" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Password" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Consenti caricamento pubblico" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Invia collegamento via email" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Invia" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Imposta data di scadenza" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Data di scadenza" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Condividi tramite email:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "gruppo" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "notifica tramite email" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "può modificare" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "creare" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "aggiornare" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "elimina" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "condividi" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Messaggio inviato" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Avviso" @@ -460,11 +479,17 @@ msgstr "L'aggiornamento non è riuscito. Segnala il problema alla Sei sicuro che l'indirizzo di posta/nome uten msgid "You will receive a link to reset your password via Email." msgstr "Riceverai un collegamento per ripristinare la tua password via email" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nome utente" @@ -529,7 +554,7 @@ msgstr "Personale" msgid "Users" msgstr "Utenti" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Applicazioni" @@ -639,49 +664,47 @@ msgstr "Per informazioni su come configurare correttamente il tuo server, vedi l msgid "Create an admin account" msgstr "Crea un account amministratore" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avanzat" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Cartella dati" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configura il database" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "sarà utilizzato" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Termina la configurazione" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Completamento..." @@ -697,7 +720,7 @@ msgstr "L'applicazione richiede che JavaScript sia abilitato per un corretto fun msgid "%s is available. Get more information on how to update." msgstr "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Esci" @@ -723,28 +746,28 @@ msgstr "Autenticazione lato server non riuscita!" msgid "Please contact your administrator." msgstr "Contatta il tuo amministratore di sistema." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Hai perso la password?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "ricorda" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Accedi" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Accessi alternativi" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Ciao,

volevo informarti che %s ha condiviso %s con te.
Vedi!

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/it/files.po b/l10n/it/files.po index 888244240e..7b8e53ff8c 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# polxmod , 2013 +# Paolo Velati , 2013 # Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-22 22:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,36 +29,48 @@ msgstr "Impossibile spostare %s - un file con questo nome esiste già" msgid "Could not move %s" msgstr "Impossibile spostare %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Il nome del file non può essere vuoto." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Il nome del file non può contenere il carattere \"/\". Scegli un nome diverso." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diverso." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Non è una sorgente valida" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Al server non è permesso aprire URL, controlla la configurazione del server" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Errore durante lo scaricamento di %s su %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Errore durante la creazione del file" @@ -66,236 +78,231 @@ msgstr "Errore durante la creazione del file" msgid "Folder name cannot be empty." msgstr "Il nome della cartella non può essere vuoto." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Il nome della cartella non può contenere il carattere \"/\". Scegli un nome diverso." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Errore durante la creazione della cartella" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Impossibile impostare una cartella di caricamento." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Token non valido" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato caricato correttamente" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file inviato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Caricamento non riuscito. Impossibile trovare il file caricato." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Cartella non valida." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "File" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Impossibile caricare {filename} poiché è una cartella oppure ha una dimensione di 0 byte." -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Spazio disponibile insufficiente" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Impossibile ottenere il risultato dal server." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Impossibile creare il file" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Impossibile creare la cartella" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Errore durante il recupero dello URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Condividi" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "In corso" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Impossibile rinominare il file" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "annulla" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Errore durante l'eliminazione del file." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" msgstr[1] "Caricamento di %n file in corso" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' non è un nome file valido." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Errore durante lo spostamento del file" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Errore" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nome" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Dimensione" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificato" @@ -303,12 +310,12 @@ msgstr "Modificato" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s non può essere rinominato" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Carica" @@ -344,69 +351,69 @@ msgstr "Dimensione massima per i file ZIP" msgid "Save" msgstr "Salva" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nuovo" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nuovo file di testo" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "File di testo" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nuova cartella" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Cartella" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Da collegamento" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "File eliminati" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Qui non hai i permessi di caricare o creare file" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Scarica" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Elimina" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Caricamento troppo grande" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index c77b29e41a..07e5b9c68a 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -4,15 +4,15 @@ # # Translators: # idetao , 2013 -# polxmod , 2013 +# Paolo Velati , 2013 # Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-03 06:40+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,18 +83,18 @@ msgid "" "administrator" msgstr "Errore sconosciuto, controlla le impostazioni di sistema o contatta il tuo amministratore" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Requisiti mancanti." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "I seguenti utenti non sono configurati per la cifratura:" @@ -102,9 +102,9 @@ msgstr "I seguenti utenti non sono configurati per la cifratura:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Salvataggio in corso..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 4704f0c3cd..dcd10a1b2d 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Accesso consentito" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Errore durante la configurazione dell'archivio Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Concedi l'accesso" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Errore durante la configurazione dell'archivio Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:465 +#: lib/config.php:516 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 "Avviso: il supporto FTP di PHP non è abilitato o non è installato. Impossibile montare condivisioni FTP. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Utenti" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Elimina" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Abilita la memoria esterna dell'utente" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Consenti agli utenti di montare la propria memoria esterna" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Certificati SSL radice" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importa certificato radice" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index bba679726f..9c79d45df8 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# polxmod , 2013 +# Paolo Velati , 2013 # Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,10 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Questa condivione è protetta da password" @@ -55,32 +59,16 @@ msgstr "la condivisione è disabilitata" msgid "For more info, please ask the person who sent this link." msgstr "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s ha condiviso la cartella %s con te" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s ha condiviso il file %s con te" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Scarica" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Carica" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Annulla il caricamento" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Nessuna anteprima disponibile per" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Collegamento diretto" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 05958ee8c9..3506deb338 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Impossibile eliminare %s definitivamente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Impossibile ripristinare %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Errore" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "ripristinati" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Qui non c'è niente. Il tuo cestino è vuoto." -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nome" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Ripristina" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Eliminati" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Elimina" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "File eliminati" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 6fba55653f..6bff2029f7 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -4,15 +4,15 @@ # # Translators: # Francesco Capuano , 2013 -# polxmod , 2013 -# Vincenzo Reale , 2013 +# Paolo Velati , 2013 +# Vincenzo Reale , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,38 +20,38 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "L'applicazione \"%s\" non può essere installata poiché non è compatibile con questa versione di ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Il nome dell'applicazione non è specificato" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Aiuto" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personale" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Impostazioni" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Utenti" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." @@ -64,15 +64,10 @@ msgstr "Tipo di file sconosciuto" msgid "Invalid image" msgstr "Immagine non valida" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "servizi web nelle tue mani" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "impossibile aprire \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." @@ -95,74 +90,78 @@ msgid "" "administrator." msgstr "Scarica i file separatamente in blocchi più piccoli o chiedi al tuo amministratore." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Nessuna fonte specificata durante l'installazione dell'applicazione" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Nessun href specificato durante l'installazione dell'applicazione da http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Nessun percorso specificato durante l'installazione dell'applicazione da file locale" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Gli archivi di tipo %s non sono supportati" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Apertura archivio non riuscita durante l'installazione dell'applicazione" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "L'applicazione non fornisce un file info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "L'applicazione non può essere installata a causa di codice non consentito al suo interno" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "L'applicazione non può essere installata poiché non è compatibile con questa versione di ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "L'applicazione non può essere installata poiché contiene il tag true che non è permesso alle applicazioni non shipped" +msgstr "L'applicazione non può essere installata poiché contiene il tag true che è consentito per le applicazioni native" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "L'applicazione non può essere installata poiché la versione in info.xml/version non è la stessa riportata dall'app store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "La cartella dell'applicazione esiste già" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Impossibile creare la cartella dell'applicazione. Correggi i permessi. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "L'applicazione non è abilitata" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Errore di autenticazione" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token scaduto. Ricarica la pagina." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "File" @@ -202,8 +201,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "È necessario inserire un account esistente o l'amministratore." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Nome utente e/o password di MySQL non validi" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -230,21 +229,21 @@ msgstr "Il comando non consentito era: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "L'utente MySQL '%s'@'localhost' esiste già." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Elimina questo utente da MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "L'utente MySQL '%s'@'%%' esiste già" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Elimina questo utente da MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -271,66 +270,72 @@ msgstr "Imposta un nome utente di amministrazione." msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Impossibile trovare la categoria \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "secondi fa" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "oggi" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ieri" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "mese scorso" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "anno scorso" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index b972a97ad1..e402e09a14 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -5,15 +5,15 @@ # Translators: # Francesco Apruzzese , 2013 # idetao , 2013 -# polxmod , 2013 +# Paolo Velati , 2013 # Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-22 22:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,48 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Cifratura" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Impossibile caricare l'elenco dall'App Store" @@ -117,62 +159,90 @@ msgstr "Il motore non supporta la modifica della password, ma la chiave di cifra msgid "Unable to change password" msgstr "Impossibile cambiare la password" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentazione utente" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Aggiorna a {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Disabilita" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Abilita" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Attendere..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Errore durante la disattivazione" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Errore durante l'attivazione" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Aggiornamento in corso..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Errore durante l'aggiornamento" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Errore" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Aggiorna" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Seleziona un'immagine del profilo" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Salvataggio in corso..." - #: js/users.js:47 msgid "deleted" msgstr "eliminati" @@ -185,40 +255,40 @@ msgstr "annulla" msgid "Unable to remove user" msgstr "Impossibile rimuovere l'utente" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Gruppi" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Gruppi amministrati" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Elimina" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "aggiungi gruppo" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Avviso: la cartella home dell'utente \"{user}\" esiste già" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Italiano" @@ -242,18 +312,42 @@ msgstr "Errori e problemi gravi" msgid "Fatal issues only" msgstr "Solo problemi gravi" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Avviso di sicurezza" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -262,68 +356,68 @@ msgid "" "root." msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Avviso di configurazione" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Modulo 'fileinfo' mancante" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "La tua versione di PHP è obsoleta" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Locale non funzionante" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "La localizzazione di sistema non può essere impostata a una che supporta UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle\nlocalizzazioni seguenti: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Concessione Internet non funzionante" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -332,118 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Consenti caricamenti pubblici" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Consenti agli utenti di abilitare altri al caricamento nelle loro cartelle pubbliche condivise" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere a loro volta elementi condivisi da altri" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Consenti le notifiche tramite posta elettronica" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Protezione" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forza i client a connettersi a %s tramite una connessione cifrata." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Altro" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Meno" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versione" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Sviluppato dalla comunità di ownCloud, il codice sorgente è rilasciato nei termini della licenza AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Aggiungi la tua applicazione" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Altre applicazioni" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Seleziona un'applicazione" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licenziato da " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentazione utente" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentazione amministratore" @@ -510,7 +652,7 @@ msgstr "Mostra nuovamente la procedura di primo avvio" msgid "You have used %s of the available %s" msgstr "Hai utilizzato %s dei %s disponibili" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Password" @@ -522,151 +664,149 @@ msgstr "La tua password è cambiata" msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Posta elettronica" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Immagine del profilo" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Carica nuova" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Seleziona nuova da file" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Rimuovi immagine" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Il tuo avatar è ottenuto dal tuo account originale." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Interrompi" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Scegli come immagine del profilo" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Lingua" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Utilizza questo indirizzo per accedere ai tuoi file con WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Cifratura" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Password di accesso" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Decifra tutti i file" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Nome utente" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Crea" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Password di ripristino amministrativa" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Digita la password di ripristino per recuperare i file degli utenti durante la modifica della password." -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Archiviazione predefinita" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Digita la quota di archiviazione (ad es.: \"512 MB\" or \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Illimitata" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Altro" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nome utente" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Archiviazione" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "modica nome completo" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "imposta una nuova password" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Predefinito" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index dbe65895ef..38ca2f8f25 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# polxmod , 2013 +# Paolo Velati , 2013 # Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,43 +88,43 @@ msgstr "Riuscito" msgid "Error" msgstr "Errore" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Configurazione corretta" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Configurazione non corretta" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Configurazione incompleta" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Seleziona i gruppi" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Seleziona le classi di oggetti" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Seleziona gli attributi" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Prova di connessione riuscita" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Prova di connessione non riuscita" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vuoi davvero eliminare la configurazione attuale del server?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Conferma l'eliminazione" @@ -142,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "%s utente trovato" msgstr[1] "%s utenti trovati" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Host non valido" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Impossibile trovare la funzionalità desiderata" @@ -164,8 +164,8 @@ msgstr "Aiuto" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Limita l'accesso a %s ai gruppi che verificano questi criteri:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -200,8 +200,8 @@ msgid "groups found" msgstr "gruppi trovati" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Quale attributo deve essere usato come nome di accesso:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -268,8 +268,8 @@ msgstr "Puoi specificare una DN base per gli utenti ed i gruppi nella scheda Ava #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Limita l'accesso a %s ai gruppi che verificano questi criteri:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -411,41 +411,51 @@ msgstr "Attributi di ricerca gruppo" msgid "Group-Member association" msgstr "Associazione gruppo-utente " -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Attributi speciali" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Campo Quota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Quota predefinita" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "in byte" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Campo Email" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Regola di assegnazione del nome della cartella utente" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lascia vuoto per il nome utente (predefinito). Altrimenti, specifica un attributo LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Nome utente interno" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "In modo predefinito, il nome utente interno sarà creato dall'attributo UUID. Ciò assicura che il nome utente sia univoco e che non sia necessario convertire i caratteri. Il nome utente interno consente l'uso di determinati caratteri: [ a-zA-Z0-9_.@- ]. Altri caratteri sono sostituiti con il corrispondente ASCII o sono semplicemente omessi. In caso di conflitto, sarà aggiunto/incrementato un numero. Il nome utente interno è utilizzato per identificare un utente internamente. Rappresenta, inoltre, il nome predefinito per la cartella home dell'utente in ownCloud. Costituisce anche una parte di URL remoti, ad esempio per tutti i servizi *DAV. Con questa impostazione, il comportamento predefinito può essere scavalcato. Per ottenere un comportamento simile alle versioni precedenti ownCloud 5, inserisci l'attributo del nome visualizzato dell'utente nel campo seguente. Lascialo vuoto per il comportamento predefinito. Le modifiche avranno effetto solo sui nuovo utenti LDAP associati (aggiunti)." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Attributo nome utente interno:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Ignora rilevamento UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti)." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Attributo UUID per gli utenti:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Attributo UUID per i gruppi:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Associazione Nome utente-Utente LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Cancella associazione Nome utente-Utente LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Cancella associazione Nome gruppo-Gruppo LDAP" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 63923cbb96..a441dba736 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2013 +# Daisuke Deguchi , 2013-2014 # plazmism , 2013 # iLikeIT , 2013 # Koichi MATSUMOTO , 2013 -# tt yn , 2013 +# kuromabo , 2014 +# tt yn , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" -"PO-Revision-Date: 2013-12-24 08:10+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -22,15 +23,10 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%sが あなたと »%s«を共有しました" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "次のユーザにメールを送信できませんでした: %s" +msgstr "次のユーザーにメールを送信できませんでした: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -71,137 +67,141 @@ msgstr "無効な画像" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "一時的なプロファイル用画像が利用できません。もう一度試して下さい" +msgstr "一時的なプロファイル用画像が利用できません。もう一度試してください" #: avatar/controller.php:135 msgid "No crop data provided" msgstr "クロップデータは提供されません" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "日" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "月" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "火" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "水" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "木" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "金" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "土" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "1月" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "2月" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "3月" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "4月" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "5月" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "6月" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "7月" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "8月" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "9月" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "10月" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "11月" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "12月" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "設定" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "今日" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "昨日" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "%n 日前" +msgstr[0] "%n日前" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" -msgstr "一月前" +msgstr "1ヶ月前" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "%n ヶ月前" +msgstr[0] "%nヶ月前" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "数ヶ月前" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" -msgstr "一年前" +msgstr "1年前" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "数年前" @@ -268,6 +268,26 @@ msgstr "({count} 選択)" msgid "Error loading file exists template" msgstr "既存ファイルのテンプレートの読み込みエラー" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "共有中" @@ -276,12 +296,12 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "エラー" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -293,129 +313,129 @@ msgstr "共有解除でエラー発生" msgid "Error while changing permissions" msgstr "権限変更でエラー発生" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "あなたと {owner} のグループ {group} で共有中" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} と共有中" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" -msgstr "ユーザもしくはグループと共有 ..." +msgstr "ユーザーもしくはグループと共有 ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "URLで共有" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "パスワード" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "アップロードを許可" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "メールリンク" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "送信" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "有効期限を設定" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "有効期限" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "メール経由で共有:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "グループ" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "共有解除" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "メールで通知" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "編集を許可" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "アクセス権限" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "作成" -#: js/share.js:416 +#: js/share.js:420 msgid "update" -msgstr "更新" +msgstr "アップデート" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "削除" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "共有" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "メールを送信しました" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "警告" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "オブジェクタイプが指定されていません。" +msgstr "オブジェクトタイプが指定されていません。" #: js/tags.js:13 msgid "Enter new" @@ -450,38 +470,44 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "更新に成功しました。この問題を ownCloud community にレポートしてください。" +msgstr "アップデートに失敗しました。この問題を ownCloud community にレポートしてください。" #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "更新に成功しました。今すぐownCloudにリダイレクトします。" +msgstr "アップデートに成功しました。今すぐownCloudにリダイレクトします。" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s パスワードリセット" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "パスワードをリセットするには次のリンクをクリックして下さい: {link}" +msgstr "パスワードをリセットするには次のリンクをクリックしてください: {link}" #: lostpassword/templates/lostpassword.php:7 msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信出来ない場合は、スパム/迷惑メールフォルダを確認して下さい。
もしそこにもない場合は、管理者に問い合わせてください。" +msgstr "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信できない場合は、スパム/迷惑メールフォルダーを確認してください。
もしそこにもない場合は、管理者に問い合わせてください。" #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "リクエストに失敗しました!
あなたのメール/ユーザ名が正しいことを確認しましたか?" +msgstr "リクエストに失敗しました!
あなたのメール/ユーザー名が正しいことを確認しましたか?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "メールでパスワードをリセットするリンクが届きます。" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "ユーザー名" @@ -491,7 +517,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "ファイルが暗号化されています。復旧キーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?" +msgstr "ファイルが暗号化されています。リカバリキーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" @@ -523,9 +549,9 @@ msgstr "個人" #: strings.php:6 msgid "Users" -msgstr "ユーザ" +msgstr "ユーザー" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "アプリ" @@ -604,13 +630,13 @@ msgstr "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243) #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "%s を安全に利用する為に インストールされているPHPをアップデートしてください。" +msgstr "%s を安全に利用するため、インストールされているPHPをアップデートしてください。" #: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にして下さい。" +msgstr "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にしてください。" #: templates/installation.php:34 msgid "" @@ -635,65 +661,63 @@ msgstr "サーバーを適正に設定する情報は、こちらのadmin account
" msgstr "管理者アカウントを作成してください" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "詳細設定" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" -msgstr "データフォルダ" +msgstr "データフォルダー" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "データベースを設定してください" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "が使用されます" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" -msgstr "データベースのユーザ名" +msgstr "データベースのユーザー名" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "データベースのパスワード" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "データベース名" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "データベースの表領域" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "データベースのホスト名" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "セットアップを完了します" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" -msgstr "終了しています ..." +msgstr "作業を完了しています ..." #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "このアプリケーションは使用する為、JavaScriptが必要です。\nJavaScriptを有効にし、インターフェースを更新してください。 " +msgstr "このアプリケーションを使用するにはJavaScriptが必要です。\nJavaScriptを有効にし、インターフェースを更新してください。 " #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。" +msgstr "%s が利用可能です。アップデート方法について詳細情報を確認してください。" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "ログアウト" @@ -705,46 +729,46 @@ msgstr "自動ログインは拒否されました!" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "最近パスワードを変更していない場合、あなたのアカウントは危険にさらされているかもしれません。" +msgstr "最近パスワードを変更していない場合、あなたのアカウントが危険にさらされている可能性があります!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "アカウント保護の為、パスワードを再度の変更をお願いいたします。" +msgstr "アカウント保護のため、パスワードを再度変更してください。" #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "サーバサイドの認証に失敗しました!" +msgstr "サーバーサイドの認証に失敗しました!" #: templates/login.php:18 msgid "Please contact your administrator." msgstr "管理者に問い合わせてください。" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "パスワードを忘れましたか?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" -msgstr "自動ログインする" +msgstr "パスワードを保存" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "ログイン" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "代替ログイン" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "こんにちは、

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "この ownCloud インスタンスは、現在シングルユーザモードです。" +msgstr "このownCloudインスタンスは、現在シングルユーザーモードです。" #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." @@ -763,12 +787,12 @@ msgstr "しばらくお待ちください。" #: templates/update.admin.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ち下さい。" +msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ちください。" #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "この ownCloud インスタンスは現在更新中であり、しばらく時間がかかります。" +msgstr "この ownCloud インスタンスは現在アップデート中のため、しばらく時間がかかります。" #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index e8b99a951c..eb35390d87 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -7,15 +7,16 @@ # plazmism , 2013 # iLikeIT , 2013 # Koichi MATSUMOTO , 2013 +# kuromabo , 2014 # pabook , 2013 # tt yn , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-04 01:55-0500\n" -"PO-Revision-Date: 2014-01-03 14:10+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -33,283 +34,290 @@ msgstr "%s を移動できませんでした ― この名前のファイルは msgid "Could not move %s" msgstr "%s を移動できませんでした" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "ファイル名を空にすることはできません。" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "ファイル名には \"/\" を含めることはできません。別の名前を選択してください。" - -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format -msgid "" -"The name %s is already used in the folder %s. Please choose a different " -"name." -msgstr "%s はフォルダ %s ないですでに使われています。別の名前を選択してください。" +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:81 -msgid "Not a valid source" -msgstr "有効なソースではありません" - -#: ajax/newfile.php:86 -msgid "" -"Server is not allowed to open URLs, please check the server configuration" -msgstr "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。" - -#: ajax/newfile.php:103 -#, php-format -msgid "Error while downloading %s to %s" -msgstr "%s から %s へのダウンロードエラー" - -#: ajax/newfile.php:140 -msgid "Error when creating the file" -msgstr "ファイルの生成エラー" - -#: ajax/newfolder.php:21 -msgid "Folder name cannot be empty." -msgstr "フォルダ名は空にできません" - -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "フォルダ名には \"/\" を含めることはできません。別の名前を選択してください。" - -#: ajax/newfolder.php:56 -msgid "Error when creating the folder" -msgstr "フォルダの生成エラー" - -#: ajax/upload.php:18 ajax/upload.php:50 -msgid "Unable to set upload directory." -msgstr "アップロードディレクトリを設定出来ません。" - -#: ajax/upload.php:27 -msgid "Invalid Token" -msgstr "無効なトークン" - -#: ajax/upload.php:64 -msgid "No file was uploaded. Unknown error" -msgstr "ファイルは何もアップロードされていません。不明なエラー" - -#: ajax/upload.php:71 -msgid "There is no error, the file uploaded with success" -msgstr "エラーはありません。ファイルのアップロードは成功しました" - -#: ajax/upload.php:72 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" - -#: ajax/upload.php:74 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" - -#: ajax/upload.php:75 -msgid "The uploaded file was only partially uploaded" -msgstr "アップロードファイルは一部分だけアップロードされました" - -#: ajax/upload.php:76 -msgid "No file was uploaded" -msgstr "ファイルはアップロードされませんでした" - -#: ajax/upload.php:77 -msgid "Missing a temporary folder" -msgstr "一時保存フォルダが見つかりません" - -#: ajax/upload.php:78 -msgid "Failed to write to disk" -msgstr "ディスクへの書き込みに失敗しました" - -#: ajax/upload.php:96 -msgid "Not enough storage available" -msgstr "ストレージに十分な空き容量がありません" - -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" - -#: ajax/upload.php:144 -msgid "Upload failed. Could not find uploaded file" -msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" - -#: ajax/upload.php:172 -msgid "Invalid directory." -msgstr "無効なディレクトリです。" - -#: appinfo/app.php:11 -msgid "Files" -msgstr "ファイル" - -#: js/file-upload.js:228 -msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "ディレクトリもしくは0バイトのため {filename} をアップロードできません" - -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "利用可能なスペースが十分にありません" - -#: js/file-upload.js:306 -msgid "Upload cancelled." -msgstr "アップロードはキャンセルされました。" - -#: js/file-upload.js:344 -msgid "Could not get result from server." -msgstr "サーバから結果を取得できませんでした。" - -#: js/file-upload.js:436 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" - -#: js/file-upload.js:523 -msgid "URL cannot be empty" -msgstr "URL は空にできません" - -#: js/file-upload.js:527 js/filelist.js:377 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "ホームフォルダでは、'Shared' はシステムが使用する予約済みのファイル名です" - -#: js/file-upload.js:529 js/filelist.js:379 -msgid "{new_name} already exists" -msgstr "{new_name} はすでに存在しています" - -#: js/file-upload.js:595 -msgid "Could not create file" -msgstr "ファイルを作成できませんでした" - -#: js/file-upload.js:611 -msgid "Could not create folder" -msgstr "フォルダを作成できませんでした" - -#: js/file-upload.js:661 -msgid "Error fetching URL" -msgstr "URL取得エラー" - -#: js/fileactions.js:125 -msgid "Share" -msgstr "共有" - -#: js/fileactions.js:137 -msgid "Delete permanently" -msgstr "完全に削除する" - -#: js/fileactions.js:194 -msgid "Rename" -msgstr "名前の変更" - -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 -msgid "Pending" -msgstr "中断" - -#: js/filelist.js:405 -msgid "Could not rename file" -msgstr "ファイルの名前変更ができませんでした" - -#: js/filelist.js:539 -msgid "replaced {new_name} with {old_name}" -msgstr "{old_name} を {new_name} に置換" - -#: js/filelist.js:539 -msgid "undo" -msgstr "元に戻す" - -#: js/filelist.js:591 -msgid "Error deleting file." -msgstr "ファイルの削除エラー。" - -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 個のフォルダ" - -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n 個のファイル" - -#: js/filelist.js:617 -msgid "{dirs} and {files}" -msgstr "{dirs} と {files}" - -#: js/filelist.js:828 js/filelist.js:866 -msgid "Uploading %n file" -msgid_plural "Uploading %n files" -msgstr[0] "%n 個のファイルをアップロード中" - -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' は無効なファイル名です。" - -#: js/files.js:81 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: js/files.js:93 +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "%s はフォルダー %s ですでに使われています。別の名前を選択してください。" + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "有効なソースではありません" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "%s から %s へのダウンロードエラー" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "ファイルの生成エラー" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "フォルダー名は空にできません" + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "フォルダーの生成エラー" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "アップロードディレクトリを設定できません。" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "無効なトークン" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "ファイルは何もアップロードされていません。不明なエラー" + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "エラーはありません。ファイルのアップロードは成功しました" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "アップロードファイルは一部分だけアップロードされました" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "ファイルはアップロードされませんでした" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "一時保存フォルダーが見つかりません" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "ディスクへの書き込みに失敗しました" + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "ストレージに十分な空き容量がありません" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "無効なディレクトリです。" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "ファイル" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "ディレクトリもしくは0バイトのため {filename} をアップロードできません" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "アップロードはキャンセルされました。" + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "サーバーから結果を取得できませんでした。" + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "URL は空にできません" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "{new_name} はすでに存在します" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "ファイルを作成できませんでした" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "フォルダーを作成できませんでした" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "URL取得エラー" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "共有" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "完全に削除する" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "名前の変更" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "中断" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "ファイルの名前変更ができませんでした" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "{old_name} を {new_name} に置換" + +#: js/filelist.js:591 +msgid "undo" +msgstr "元に戻す" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "ファイルの削除エラー。" + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n 個のフォルダー" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n 個のファイル" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "{dirs} と {files}" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "%n 個のファイルをアップロード中" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "あなたのストレージはほぼ一杯です({usedSpacePercent}%)" +msgstr "ストレージがほぼ一杯です({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "ファイルの移動エラー" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "エラー" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "名前" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "サイズ" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "更新日時" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "無効なフォルダ名。「Shared」の利用は予約されています。" +msgstr "無効なフォルダー名。「Shared」の利用は予約されています。" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%sの名前を変更できませんでした" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "アップロード" @@ -327,7 +335,7 @@ msgstr "最大容量: " #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "複数ファイルおよびフォルダのダウンロードに必要" +msgstr "複数ファイルおよびフォルダーのダウンロードに必要" #: templates/admin.php:17 msgid "Enable ZIP-download" @@ -339,75 +347,75 @@ msgstr "0を指定した場合は無制限" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "ZIPファイルへの最大入力サイズ" +msgstr "ZIPファイルでの最大入力サイズ" #: templates/admin.php:26 msgid "Save" msgstr "保存" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "新規作成" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "新規のテキストファイル作成" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "テキストファイル" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" -msgstr "新しいフォルダ" +msgstr "新しいフォルダー" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" -msgstr "フォルダ" +msgstr "フォルダー" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "リンク" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "ゴミ箱" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "ここにファイルをアップロードもしくは作成する権限がありません" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "ここには何もありません。何かアップロードしてください。" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "ダウンロード" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "削除" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "アップロードには大きすぎます。" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。" +msgstr "アップロードしようとしているファイルは、サーバーで規定された最大サイズを超えています。" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "ファイルをスキャンしています、しばらくお待ちください。" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "スキャン中" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 9089a6f117..8390171171 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -5,14 +5,15 @@ # Translators: # Daisuke Deguchi , 2013 # plazmism , 2013 +# kuromabo , 2014 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 03:50+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -22,12 +23,12 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "リカバリ用のキーは正常に有効化されました" +msgstr "リカバリ用のキーを正常に有効にしました" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "リカバリ用のキーを有効にできませんでした。リカバリ用のキーのパスワードを確認して下さい!" +msgstr "リカバリ用のキーを有効にできませんでした。リカバリ用のキーのパスワードを確認してください!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" @@ -36,7 +37,7 @@ msgstr "リカバリ用のキーを正常に無効化しました" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認して下さい!" +msgstr "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認してください!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -61,7 +62,7 @@ msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "暗号化アプリが初期化されていません。暗号化アプリが接続中に再度有効かされた可能性があります。暗号化アプリを初期化する為に、1回ログアウトしてログインしなおしてください。" +msgstr "セッション中に暗号化アプリを再度有効にされたため、暗号化アプリが初期化されていません。暗号化アプリを初期化するため、ログアウトしてログインしなおしてください。" #: files/error.php:16 #, php-format @@ -83,28 +84,28 @@ msgid "" "administrator" msgstr "不明なエラーです。システム設定を確認するか、管理者に問い合わせてください。" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "必要要件が満たされていません。" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "以下のユーザーは、暗号化設定がされていません:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。今しばらくお待ちください。" +msgstr "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。お待ちください。" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "保存中..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -121,15 +122,15 @@ msgstr "暗号化" #: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "復旧キーを有効化 (万一パスワードを亡くした場合もユーザーのファイルを回復できる):" +msgstr "リカバリキーを有効にする (パスワードを忘れた場合にユーザーのファイルを回復できます):" #: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "復旧キーのパスワード" +msgstr "リカバリキーのパスワード" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "復旧キーのパスワードをもう一度入力" +msgstr "リカバリキーのパスワードをもう一度入力" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" @@ -141,19 +142,19 @@ msgstr "無効" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "復旧キーのパスワードを変更:" +msgstr "リカバリキーのパスワードを変更:" #: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "古い復旧キーのパスワード" +msgstr "古いリカバリキーのパスワード" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "新しい復旧キーのパスワード" +msgstr "新しいリカバリキーのパスワード" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "新しい復旧キーのパスワードをもう一度入力" +msgstr "新しいリカバリキーのパスワードをもう一度入力" #: templates/settings-admin.php:58 msgid "Change Password" @@ -187,7 +188,7 @@ msgstr "秘密鍵のパスワードを更新" #: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "パスワード復旧を有効化:" +msgstr "パスワードリカバリを有効に:" #: templates/settings-personal.php:44 msgid "" @@ -197,8 +198,8 @@ msgstr "このオプションを有効にすると、パスワードを紛失し #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "ファイル復旧設定が更新されました" +msgstr "ファイルリカバリ設定を更新しました" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "ファイル復旧を更新できませんでした" +msgstr "ファイルリカバリを更新できませんでした" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index ffff86e20f..2b960591bc 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# kuromabo , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,45 +18,49 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "アクセスは許可されました" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Dropboxストレージの設定エラー" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "アクセスを許可" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." -msgstr "有効なDropboxアプリのキーとパスワードを入力して下さい。" +msgstr "有効なDropboxアプリのキーとパスワードを入力してください。" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Googleドライブストレージの設定エラー" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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 共有のマウントはできません。システム管理者にインストールをお願いして下さい。" +msgstr "警告: \"smbclient\" がインストールされていません。CIFS/SMB共有のマウントはできません。システム管理者にインストールを依頼してください。" -#: lib/config.php:465 +#: lib/config.php:516 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 "警告: PHPのFTPサポートは無効もしくはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールをお願いして下さい。" +msgstr "警告: PHPのFTPサポートが無効またはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールを依頼してください。" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "警告: PHP の Curl サポートは無効もしくはインストールされていません。ownCloud / WebDAV もしくは GoogleDrive のマウントはできません。システム管理者にインストールをお願いして下さい。" +msgstr "警告: PHPのCurlサポートが無効またはインストールされていません。ownCloud / WebDAVまたはGoogleDriveのマウントはできません。システム管理者にインストールを依頼してください。" #: templates/settings.php:3 msgid "External Storage" @@ -63,7 +68,7 @@ msgstr "外部ストレージ" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "フォルダ名" +msgstr "フォルダー名" #: templates/settings.php:10 msgid "External storage" @@ -91,7 +96,7 @@ msgstr "未設定" #: templates/settings.php:91 msgid "All Users" -msgstr "すべてのユーザ" +msgstr "すべてのユーザー" #: templates/settings.php:92 msgid "Groups" @@ -99,25 +104,25 @@ msgstr "グループ" #: templates/settings.php:100 msgid "Users" -msgstr "ユーザ" +msgstr "ユーザー" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "削除" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" -msgstr "ユーザの外部ストレージを有効にする" +msgstr "ユーザーの外部ストレージを有効にする" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "ユーザに外部ストレージのマウントを許可する" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSLルート証明書" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "ルート証明書をインポート" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 248c946c07..b5384f5528 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -19,6 +19,10 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "この共有はパスワードで保護されています" @@ -55,32 +59,16 @@ msgstr "共有が無効になっています" msgid "For more info, please ask the person who sent this link." msgstr "不明な点は、こちらのリンクの提供者に確認をお願いします。" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s はフォルダー %s をあなたと共有中です" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s はファイル %s をあなたと共有中です" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "ダウンロード" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "アップロード" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "アップロードをキャンセル" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "プレビューはありません" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "リンク" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 634208ae93..d23d52cda8 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -5,14 +5,15 @@ # Translators: # Daisuke Deguchi , 2013 # plazmism , 2013 +# kuromabo , 2014 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -20,44 +21,48 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" -msgstr "%s を完全に削除出来ませんでした" +msgstr "%s を完全に削除できませんでした" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" -msgstr "%s を復元出来ませんでした" +msgstr "%s を復元できませんでした" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "エラー" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "復元済" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "ここには何もありません。ゴミ箱は空です!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "名前" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "復元" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "削除済み" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "削除" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "ゴミ箱" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index addc53d2f7..bdd79bead1 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -6,14 +6,15 @@ # Daisuke Deguchi , 2013 # plazmism , 2013 # Koichi MATSUMOTO , 2013 +# kuromabo , 2014 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-25 01:55-0500\n" -"PO-Revision-Date: 2013-12-24 08:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -21,34 +22,34 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr " \"%s\" アプリは、このバージョンのownCloudと互換性がない為、インストールできません。" +msgstr " \"%s\" アプリは、このバージョンのownCloudと互換性がないためインストールできません。" -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "アプリ名が未指定" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "ヘルプ" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "個人" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "設定" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" -msgstr "ユーザ" +msgstr "ユーザー" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "管理" @@ -65,15 +66,10 @@ msgstr "不明なファイルタイプ" msgid "Invalid image" msgstr "無効な画像" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "管理下のウェブサービス" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "\"%s\" が開けません" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" @@ -96,74 +92,78 @@ msgid "" "administrator." msgstr "少しずつに分けてファイルをダウンロードするか、管理者に問い合わせてください。" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "アプリインストール時のソースが未指定" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "アプリインストール時のhttpの URL が未指定" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "アプリインストール時のローカルファイルのパスが未指定" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "\"%s\"タイプのアーカイブ形式は未サポート" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "アプリをインストール中にアーカイブファイルを開けませんでした。" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "アプリにinfo.xmlファイルが入っていません" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "アプリで許可されないコードが入っているのが原因でアプリがインストールできません" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "アプリは、このバージョンのownCloudと互換性がない為、インストールできません。" +msgstr "アプリは、このバージョンのownCloudと互換性がないためインストールできません。" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストール出来ません。" +msgstr "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストールできません。" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "info.xml/versionのバージョンがアプリストアのバージョンと合っていない為、アプリはインストールされません" +msgstr "info.xml/versionのバージョンがアプリストアのバージョンと合っていないため、アプリはインストールされません" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" -msgstr "アプリディレクトリは既に存在します" +msgstr "アプリディレクトリはすでに存在します" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "アプリフォルダを作成出来ませんでした。%s のパーミッションを修正してください。" +msgstr "アプリフォルダーを作成できませんでした。%s のパーミッションを修正してください。" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "アプリケーションは無効です" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "認証エラー" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "トークンが無効になりました。ページを再読込してください。" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ファイル" @@ -179,7 +179,7 @@ msgstr "画像" #: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "%s のデータベースのユーザ名を入力してください。" +msgstr "%s のデータベースのユーザー名を入力してください。" #: private/setup/abstractdatabase.php:29 #, php-format @@ -203,8 +203,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "既存のアカウントもしくは管理者のどちらかを入力する必要があります。" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQLのユーザ名もしくはパスワードは有効ではありません" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -231,21 +231,21 @@ msgstr "違反コマンド: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQLのユーザ '%s'@'localhost' はすでに存在します。" +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "MySQLからこのユーザを削除" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQLのユーザ '%s'@'%%' はすでに存在します。" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "MySQLからこのユーザを削除する。" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -253,7 +253,7 @@ msgstr "Oracleへの接続が確立できませんでした。" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "Oracleのユーザ名もしくはパスワードは有効ではありません" +msgstr "Oracleのユーザー名もしくはパスワードは有効ではありません" #: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format @@ -262,72 +262,78 @@ msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" #: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQLのユーザ名もしくはパスワードは有効ではありません" +msgstr "PostgreSQLのユーザー名もしくはパスワードは有効ではありません" #: private/setup.php:28 msgid "Set an admin username." -msgstr "管理者のユーザ名を設定。" +msgstr "管理者のユーザー名を設定" #: private/setup.php:31 msgid "Set an admin password." msgstr "管理者のパスワードを設定。" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" +msgstr "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "インストールガイドをよく確認してください。" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "カテゴリ \"%s\" が見つかりませんでした" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "数秒前" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "今日" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" -msgstr "昨日" - -#: private/template/functions.php:136 -msgid "%n day go" -msgid_plural "%n days ago" -msgstr[0] "%n 日前" - -#: private/template/functions.php:138 -msgid "last month" -msgstr "一月前" +msgstr "1日前" #: private/template/functions.php:139 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%n ヶ月前" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "%n日前" #: private/template/functions.php:141 -msgid "last year" -msgstr "一年前" +msgid "last month" +msgstr "1ヶ月前" #: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%nヶ月前" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "1年前" + +#: private/template/functions.php:145 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index a5ec0d605f..4ea86466fc 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -3,17 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2013 +# Daisuke Deguchi , 2013-2014 # plazmism , 2013 # iLikeIT , 2013 +# kuromabo , 2014 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-11 13:31-0500\n" -"PO-Revision-Date: 2013-12-11 02:00+0000\n" -"Last-Translator: iLikeIT \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -21,6 +22,48 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "暗号化" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "アプリストアからリストをロードできません" @@ -32,15 +75,15 @@ msgstr "認証エラー" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "姓名が変更されました" +msgstr "フルネームを変更しました。" #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "姓名を変更できません" +msgstr "フルネームを変更できません" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "グループは既に存在しています" +msgstr "グループはすでに存在します" #: ajax/creategroup.php:19 msgid "Unable to add group" @@ -60,7 +103,7 @@ msgstr "グループを削除できません" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "ユーザを削除できません" +msgstr "ユーザーを削除できません" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -77,16 +120,16 @@ msgstr "管理者は自身を管理者グループから削除できません。 #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "ユーザをグループ %s に追加できません" +msgstr "ユーザーをグループ %s に追加できません" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "ユーザをグループ %s から削除できません" +msgstr "ユーザーをグループ %s から削除できません" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "アプリを更新出来ませんでした。" +msgstr "アプリをアップデートできませんでした。" #: changepassword/controller.php:20 msgid "Wrong password" @@ -94,85 +137,113 @@ msgstr "無効なパスワード" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "ユーザが指定されていません" +msgstr "ユーザーが指定されていません" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "復元用の管理者パスワードを入力してください。そうでない場合は、全ユーザのデータが失われます。" +msgstr "リカバリ用の管理者パスワードを入力してください。そうでない場合は、全ユーザーのデータが失われます。" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "無効な復元用の管理者パスワード。パスワードを確認して再度実行してください。" +msgstr "リカバリ用の管理者パスワードが間違っています。パスワードを確認して再度実行してください。" #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "バックエンドはパスワード変更をサポートしていませんが、ユーザの暗号化キーは正常に更新されました。" +msgstr "バックエンドはパスワード変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" msgstr "パスワードを変更できません" -#: js/apps.js:43 -msgid "Update to {appversion}" -msgstr "{appversion} に更新" +#: js/admin.js:73 +msgid "Sending..." +msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "ユーザードキュメント" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "{appversion} にアップデート" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "無効" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" -msgstr "有効化" +msgstr "有効にする" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "しばらくお待ちください。" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "アプリ無効化中にエラーが発生" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" -msgstr "アプリ有効化中にエラーが発生" +msgstr "アプリを有効にする際にエラーが発生" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "更新中...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "アプリの更新中にエラーが発生" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "エラー" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" -msgstr "更新" +msgstr "アップデート" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" -msgstr "更新済み" +msgstr "アップデート済み" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "プロファイル画像を選択" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。" -#: js/personal.js:287 -msgid "Saving..." -msgstr "保存中..." - #: js/users.js:47 msgid "deleted" msgstr "削除" @@ -183,42 +254,42 @@ msgstr "元に戻す" #: js/users.js:79 msgid "Unable to remove user" -msgstr "ユーザを削除出来ません" +msgstr "ユーザーを削除できません" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "グループ" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "グループ管理者" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "削除" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "グループを追加" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" -msgstr "有効なユーザ名を指定する必要があります" +msgstr "有効なユーザー名を指定する必要があります" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" -msgstr "ユーザ作成エラー" +msgstr "ユーザー作成エラー" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "警告: ユーザ \"{user}\" のホームディレクトリはすでに存在します" +msgstr "警告: ユーザー \"{user}\" のホームディレクトリはすでに存在します" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Japanese (日本語)" @@ -228,32 +299,56 @@ msgstr "すべて (致命的な問題、エラー、警告、情報、デバッ #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "情報と警告、エラー、致命的な問題" +msgstr "情報、警告、エラー、致命的な問題" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "警告とエラー、致命的な問題" +msgstr "警告、エラー、致命的な問題" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "エラーと致命的な問題" +msgstr "エラー、致命的な問題" #: templates/admin.php:12 msgid "Fatal issues only" msgstr "致命的な問題のみ" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "セキュリティ警告" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "HTTP 経由で %s にアクセスしています。HTTPS を使用するようにサーバの設定を行うことを強くおすすめします。" +msgstr "HTTP経由で %s にアクセスしています。HTTPSを使用するようサーバーを設定することを強くおすすめします。" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -262,68 +357,68 @@ msgid "" "root." msgstr "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "セットアップ警告" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" +msgstr "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "installation guidesをもう一度チェックするようにお願いいたします。" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "モジュール 'fileinfo' が見つかりません" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" -msgstr "PHPバーションが古くなっております。" +msgstr "PHPバーションが古くなっています。" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "PHPバーションが古くなっております。このプログラムが不正な行為を発生する可能性はある為、PHPバーション5.3.8以降にアップグレードをください。" +msgstr "PHPバーションが古くなっています。古いバージョンには既知の問題があるため、5.3.8以降のバージョンにアップデートすることを強く推奨します。このインストール状態では正常に動作しない可能性があります。" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "ロケールが動作していません" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "システムロケールを UTF-8 をサポートするロケールに設定できません。" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "これは、ファイル名の特定の文字に問題があることを意味しています。" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "インターネット接続が動作していません" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -332,118 +427,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "HTTPを通して15分間隔で cron.php を実行するように、cron.php は webcron サービスに登録されています。" +msgstr "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されています" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "15分間隔で cron.php ファイルを実行するためにシステムの cron サービスを利用する" +msgstr "システムのcronサービスを利用して15分ごとにcron.phpファイルを実行します。" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "共有" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" -msgstr "リンクによりアイテムを公開することを許可する" +msgstr "ユーザーがリンクによりアイテムを公開することを許可する" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "パブリックなアップロードを許可" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "公開している共有フォルダへのアップロードを共有しているメンバーにも許可" +msgstr "公開している共有フォルダーへのアップロードを共有しているメンバーにも許可" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" -msgstr "ユーザが共有しているアイテムの再共有を許可する" +msgstr "ユーザーが共有しているアイテムの再共有を許可する" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" -msgstr "ユーザが誰とでも共有することを許可する" +msgstr "ユーザーに誰とでも共有することを許可する" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" -msgstr "ユーザにグループ内のユーザとのみ共有を許可する" +msgstr "ユーザーにグループ内のユーザーとのみ共有を許可する" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "メール通知を許可" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" -msgstr "共有ファイルに関するメール通知の送信をユーザに許可する" +msgstr "共有ファイルに関するメール通知の送信をユーザーに許可する" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "クライアントから %sへの接続を常に暗号化する。" +msgstr "クライアントから %sへの接続を常に暗号化します。" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。" +msgstr "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "ログ" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "もっと見る" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "閉じる" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "バージョン" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "アプリを追加" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "さらにアプリを表示" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "アプリを選択してください" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com でアプリケーションのページを見てください" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-ライセンス: " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "ユーザドキュメント" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "管理者ドキュメント" @@ -495,7 +638,7 @@ msgstr "バグトラッカー" #: templates/help.php:17 msgid "Commercial Support" -msgstr "コマーシャルサポート" +msgstr "商用サポート" #: templates/personal.php:8 msgid "Get the apps to sync your files" @@ -510,7 +653,7 @@ msgstr "初回ウィザードを再表示する" msgid "You have used %s of the available %s" msgstr "現在、%s / %s を利用しています" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "パスワード" @@ -522,151 +665,149 @@ msgstr "パスワードを変更しました" msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Current password" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "新しいパスワードを入力" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" -msgstr "姓名" +msgstr "名前" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "メール" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "※パスワード回復を有効にするにはメールアドレスの入力が必要です" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "プロフィール写真" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "新規にアップロード" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "ファイルから新規に選択" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "画像を削除" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png と jpg のいずれか。正方形が理想ですが、切り取って加工することも可能です。" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。" -#: templates/personal.php:101 -msgid "Abort" -msgstr "中止" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "プロファイル画像として選択" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "言語" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "WebDAV 経由でファイルにアクセス するにはこのアドレスを利用してください" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "暗号化" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "ログインパスワード" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "すべてのファイルを複合する" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "ログイン名" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "作成" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" -msgstr "管理者復旧パスワード" +msgstr "管理者リカバリパスワード" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "パスワード変更の間のユーザーのファイルを回復するために、リカバリパスワードを入力してください" +msgstr "パスワード変更時のユーザーのファイルを回復するため、リカバリパスワードを入力してください" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "デフォルトストレージ" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "ストレージの割り当てを入力してください (例: \"512MB\" や \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "無制限" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "その他" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "ユーザー名" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "ストレージ" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" -msgstr "姓名を変更" +msgstr "フルネームを変更" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "新しいパスワードを設定" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "デフォルト" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 1061b8d35c..8ea44da126 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -5,14 +5,15 @@ # Translators: # Daisuke Deguchi , 2013 # plazmism , 2013 +# kuromabo , 2014 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -26,7 +27,7 @@ msgstr "マッピングのクリアに失敗しました。" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "サーバ設定の削除に失敗しました" +msgstr "サーバー設定の削除に失敗しました" #: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" @@ -36,7 +37,7 @@ msgstr "設定は有効であり、接続を確立しました!" msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "設定は有効ですが、接続に失敗しました。サーバ設定と資格情報を確認して下さい。" +msgstr "設定は有効ですが、接続に失敗しました。サーバー設定と資格情報を確認してください。" #: ajax/testConfiguration.php:46 msgid "" @@ -67,7 +68,7 @@ msgstr "削除に失敗しました" #: js/settings.js:83 msgid "Take over settings from recent server configuration?" -msgstr "最近のサーバ設定から設定を引き継ぎますか?" +msgstr "最近のサーバー設定から設定を引き継ぎますか?" #: js/settings.js:84 msgid "Keep settings?" @@ -75,7 +76,7 @@ msgstr "設定を保持しますか?" #: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "サーバ設定を追加できません" +msgstr "サーバー設定を追加できません" #: js/settings.js:127 msgid "mappings cleared" @@ -89,43 +90,43 @@ msgstr "成功" msgid "Error" msgstr "エラー" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "設定OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "設定に誤りがあります" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "設定が不完全です" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "グループを選択" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "オブジェクトクラスを選択" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "属性を選択" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "接続テストに成功しました" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "接続テストに失敗しました" -#: js/settings.js:921 -msgid "Do you really want to delete the current Server Configuration?" -msgstr "現在のサーバ設定を本当に削除してもよろしいですか?" - #: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "現在のサーバー設定を本当に削除してもよろしいですか?" + +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "削除の確認" @@ -139,13 +140,13 @@ msgstr[0] "%s グループが見つかりました" #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "%s ユーザが見つかりました" +msgstr[0] "%s ユーザーが見つかりました" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "無効なホスト" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "望ましい機能は見つかりませんでした" @@ -163,8 +164,8 @@ msgstr "ヘルプ" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "この基準に合致するグループに %s へのアクセスを制限:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -199,12 +200,12 @@ msgid "groups found" msgstr "グループが見つかりました" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "ログイン名として利用する属性:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "LDAP ユーザ名:" +msgstr "LDAP ユーザー名:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" @@ -219,11 +220,11 @@ msgstr "他の属性:" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "ログイン実行時に適用するフィルタを定義します。%%uid にはログイン操作におけるユーザ名が入ります。例: \"uid=%%uid\"" +msgstr "ログイン実行時に適用するフィルタを定義します。%%uid にはログイン操作におけるユーザー名が入ります。例: \"uid=%%uid\"" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "サーバ設定を追加" +msgstr "サーバー設定を追加" #: templates/part.wizard-server.php:30 msgid "Host" @@ -240,7 +241,7 @@ msgstr "ポート" #: templates/part.wizard-server.php:44 msgid "User DN" -msgstr "ユーザDN" +msgstr "ユーザーDN" #: templates/part.wizard-server.php:45 msgid "" @@ -263,22 +264,22 @@ msgstr "1行に1つのベースDN" #: templates/part.wizard-server.php:61 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "拡張タブでユーザとグループのベースDNを指定することができます。" +msgstr "拡張タブでユーザーとグループのベースDNを指定することができます。" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "この基準に合致するユーザに %s へのアクセスを制限:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "フィルタは、どの LDAP ユーザが %s にアクセスするかを指定します。" +msgstr "フィルタは、どのLDAPユーザーが %s にアクセスするかを指定します。" #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "ユーザが見つかりました" +msgstr "ユーザーが見つかりました" #: templates/part.wizardcontrols.php:5 msgid "Back" @@ -321,7 +322,7 @@ msgstr "バックアップ(レプリカ)ホスト" msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバのレプリカである必要があります。" +msgstr "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバーのレプリカである必要があります。" #: templates/settings.php:24 msgid "Backup (Replica) Port" @@ -329,7 +330,7 @@ msgstr "バックアップ(レプリカ)ポート" #: templates/settings.php:25 msgid "Disable Main Server" -msgstr "メインサーバを無効にする" +msgstr "メインサーバーを無効にする" #: templates/settings.php:25 msgid "Only connect to the replica server." @@ -337,7 +338,7 @@ msgstr "レプリカサーバーにのみ接続します。" #: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" -msgstr "大文字/小文字を区別しないLDAPサーバ(Windows)" +msgstr "大文字/小文字を区別しないLDAPサーバー(Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." @@ -348,7 +349,7 @@ msgstr "SSL証明書の確認を無効にする。" msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "推奨されません、テストにおいてのみ使用してください!このオプションでのみ接続が動作する場合は、LDAP サーバのSSL証明書を %s サーバにインポートしてください。" +msgstr "推奨されません、テストにおいてのみ使用してください!このオプションでのみ接続が動作する場合は、LDAP サーバーのSSL証明書を %s サーバーにインポートしてください。" #: templates/settings.php:28 msgid "Cache Time-To-Live" @@ -364,23 +365,23 @@ msgstr "ディレクトリ設定" #: templates/settings.php:32 msgid "User Display Name Field" -msgstr "ユーザ表示名のフィールド" +msgstr "ユーザー表示名のフィールド" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "ユーザの表示名の生成に利用するLDAP属性" +msgstr "ユーザーの表示名の生成に利用するLDAP属性" #: templates/settings.php:33 msgid "Base User Tree" -msgstr "ベースユーザツリー" +msgstr "ベースユーザーツリー" #: templates/settings.php:33 msgid "One User Base DN per line" -msgstr "1行に1つのユーザベースDN" +msgstr "1行に1つのユーザーベースDN" #: templates/settings.php:34 msgid "User Search Attributes" -msgstr "ユーザ検索属性" +msgstr "ユーザー検索属性" #: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" @@ -410,41 +411,51 @@ msgstr "グループ検索属性" msgid "Group-Member association" msgstr "グループとメンバーの関連付け" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "特殊属性" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "クォータフィールド" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "クォータのデフォルト" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "バイト" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "メールフィールド" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" -msgstr "ユーザのホームフォルダ命名規則" +msgstr "ユーザーのホームフォルダー命名規則" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください。" - -#: templates/settings.php:51 -msgid "Internal Username" -msgstr "内部ユーザ名" +msgstr "ユーザー名を空のままにしてください(デフォルト)。もしくは、LDAPもしくはADの属性を指定してください。" #: templates/settings.php:52 +msgid "Internal Username" +msgstr "内部ユーザー名" + +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -458,17 +469,17 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "デフォルトでは、内部ユーザ名はUUID属性から作成されます。これにより、ユーザ名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザ名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザ名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダ名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザ表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザにおいてのみ有効となります。" - -#: templates/settings.php:53 -msgid "Internal Username Attribute:" -msgstr "内部ユーザ名属性:" +msgstr "デフォルトでは、内部ユーザー名はUUID属性から作成されます。これにより、ユーザー名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザー名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザー名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダー名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザー表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザーにおいてのみ有効となります。" #: templates/settings.php:54 +msgid "Internal Username Attribute:" +msgstr "内部ユーザー名属性:" + +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "UUID検出を再定義する" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -477,21 +488,21 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。" - -#: templates/settings.php:56 -msgid "UUID Attribute for Users:" -msgstr "ユーザの UUID 属性:" +msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザーとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザー名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザーとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザーとLDAPグループに対してのみ有効となります。" #: templates/settings.php:57 +msgid "UUID Attribute for Users:" +msgstr "ユーザーの UUID 属性:" + +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "グループの UUID 属性:" -#: templates/settings.php:58 -msgid "Username-LDAP User Mapping" -msgstr "ユーザ名とLDAPユーザのマッピング" - #: templates/settings.php:59 +msgid "Username-LDAP User Mapping" +msgstr "ユーザー名とLDAPユーザのマッピング" + +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -503,12 +514,12 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" +msgstr "ユーザー名は(メタ)データの保存と割り当てに使用されます。ユーザーを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザー名からLDAPユーザーへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" -msgstr "ユーザ名とLDAPユーザのマッピングをクリアする" +msgstr "ユーザー名とLDAPユーザーのマッピングをクリアする" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "グループ名とLDAPグループのマッピングをクリアする" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 624e0a15d5..3461604503 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "კვირა" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "ორშაბათი" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "სამშაბათი" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "ოთხშაბათი" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "ხუთშაბათი" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "პარასკევი" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "შაბათი" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "იანვარი" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "თებერვალი" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "მარტი" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "აპრილი" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "მაისი" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "ივნისი" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "ივლისი" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "აგვისტო" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "სექტემბერი" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "ოქტომბერი" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "ნოემბერი" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "დეკემბერი" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "დღეს" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "წლის წინ" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "გაზიარებული" @@ -271,12 +290,12 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "შეცდომა" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -288,123 +307,123 @@ msgstr "შეცდომა გაზიარების გაუქმე msgid "Error while changing permissions" msgstr "შეცდომა დაშვების ცვლილების დროს" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "გაზიარდა თქვენთვის და ჯგუფისთვის {group}, {owner}–ის მიერ" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "გაზიარდა თქვენთვის {owner}–ის მიერ" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "პაროლით დაცვა" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "პაროლი" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "გაგზავნა" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "მიუთითე ვადის გასვლის დრო" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "ვადის გასვლის დრო" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "გააზიარე მეილზე" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "ჯგუფი" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "შექმნა" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "განახლება" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "წაშლა" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "გაზიარება" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "იმეილი გაიგზავნა" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "გაფრთხილება" @@ -451,11 +470,17 @@ msgstr "განახლება ვერ განხორციელდ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "გამოიყენე შემდეგი ლინკი პაროლის შესაცვლელად: {link}" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "მომხმარებლის სახელი" @@ -520,7 +545,7 @@ msgstr "პირადი" msgid "Users" msgstr "მომხმარებელი" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "აპლიკაციები" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "შექმენი ადმინ ექაუნტი" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "დამატებითი ფუნქციები" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "მონაცემთა საქაღალდე" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "მონაცემთა ბაზის კონფიგურირება" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "გამოყენებული იქნება" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "მონაცემთა ბაზის მომხმარებელი" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "მონაცემთა ბაზის პაროლი" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "მონაცემთა ბაზის სახელი" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "მონაცემთა ბაზის ჰოსტი" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "გამოსვლა" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "დაგავიწყდათ პაროლი?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "დამახსოვრება" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "შესვლა" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "ალტერნატიული Login–ი" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 519f12885e..7844b3b1a4 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "%s –ის გადატანა ვერ მოხერხდა msgid "Could not move %s" msgstr "%s –ის გადატანა ვერ მოხერხდა" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "ფაილები" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "საკმარისი ადგილი არ არის" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "გაზიარება" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' არის დაუშვებელი ფაილის სახელი." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "შეცდომა" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "სახელი" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "ზომა" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "შეცვლილია" @@ -298,12 +305,12 @@ msgstr "შეცვლილია" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "ატვირთვა" @@ -339,69 +346,69 @@ msgstr "ZIP ფაილების მაქსიმუმ დასაშვ msgid "Save" msgstr "შენახვა" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "ახალი" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "ტექსტური ფაილი" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "ახალი ფოლდერი" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "საქაღალდე" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "მისამართიდან" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "წაშლილი ფაილები" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "აქ არაფერი არ არის. ატვირთე რამე!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "წაშლა" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "მიმდინარე სკანირება" diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index bdd6332a2a..caedd121e7 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "შენახვა..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 655c7a0042..f4c239e65c 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "დაშვება მინიჭებულია" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "შეცდომა Dropbox საცავის კონფიგურირების დროს" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "დაშვების მინიჭება" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "გთხოვთ მიუთითოთ Dropbox აპლიკაციის გასაღები და კოდი." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "შეცდომა Google Drive საცავის კონფიგურირების დროს" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:516 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 მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "მომხმარებელი" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "წაშლა" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "მომხმარებლის ექსტერნალ საცავის აქტივირება" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "მიეცით მომხმარებლებს თავისი ექსტერნალ საცავის მონტირების უფლება" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL root სერთიფიკატები" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Root სერთიფიკატის იმპორტირება" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index f27a19411d..c0a645dcd2 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s–მა გაგიზიარათ ფოლდერი %s" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s–მა გაგიზიარათ ფაილი %s" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "ჩამოტვირთვა" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "ატვირთვა" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "ატვირთვის გაუქმება" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "წინასწარი დათვალიერება შეუძლებელია" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 590410f057..e64971a397 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "%s–ის აღდგენა ვერ მოხერხდა" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "შეცდომა" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "სახელი" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "აღდგენა" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "წაშლილი" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "წაშლა" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "წაშლილი ფაილები" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 26ee4dc2e8..775fa57d28 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "დახმარება" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "პირადი" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "პარამეტრები" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "მომხმარებელი" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "ადმინისტრატორი" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "web services under your control" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download–ი გათიშულია" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "აპლიკაცია არ არის აქტიური" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ფაილები" @@ -199,8 +198,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -227,21 +226,21 @@ msgstr "Offending ბრძანება იყო: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -268,62 +267,68 @@ msgstr "დააყენეთ ადმინისტრატორის msgid "Set an admin password." msgstr "დააყენეთ ადმინისტრატორის პაროლი." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "წამის წინ" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "დღეს" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "გუშინ" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "გასულ თვეში" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "ბოლო წელს" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 6cdd5a52ef..5be4c4f5d4 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.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-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "ენკრიპცია" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "აპლიკაციების სია ვერ ჩამოიტვირთა App Store" @@ -114,61 +156,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "მომხმარებლის დოკუმენტაცია" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "განაახლე {appversion}–მდე" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "გამორთვა" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "ჩართვა" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "დაიცადეთ...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "მიმდინარეობს განახლება...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "შეცდომა აპლიკაციის განახლების დროს" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "შეცდომა" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "განახლება" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "განახლებულია" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "შენახვა..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -182,40 +252,40 @@ msgstr "დაბრუნება" msgid "Unable to remove user" msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "ჯგუფები" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "ჯგუფის ადმინისტრატორი" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "წაშლა" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "ჯგუფის დამატება" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "შეცდომა მომხმარებლის შექმნისას" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "უნდა მიუთითოთ არსებული პაროლი" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "უსაფრთხოების გაფრთხილება" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "გაფრთხილება დაყენებისას" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "მოდული 'fileinfo' არ არსებობს" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "ლოკალიზაცია არ მუშაობს" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "ინტერნეტ კავშირი არ მუშაობს" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron–ი" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "გაზიარება" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Share API–ის ჩართვა" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "ლინკების დაშვება" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "გადაზიარების დაშვება" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "წარმოებულია ownCloud community–ის მიერ. source code ვრცელდება AGPL ლიცენზიის ფარგლებში." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "დაამატე შენი აპლიკაცია" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "უფრო მეტი აპლიკაციები" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "აირჩიეთ აპლიკაცია" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-ლიცენსირებულია " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "მომხმარებლის დოკუმენტაცია" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "ადმინისტრატორის დოკუმენტაცია" @@ -507,7 +649,7 @@ msgstr "მაჩვენე თავიდან გაშვებული msgid "You have used %s of the available %s" msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "პაროლი" @@ -519,151 +661,149 @@ msgstr "თქვენი პაროლი შეიცვალა" msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "ენა" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "ენკრიპცია" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "მომხმარებლის სახელი" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "შექმნა" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "საწყისი საცავი" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "ულიმიტო" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "სხვა" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "მომხმარებლის სახელი" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "საცავი" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "დააყენეთ ახალი პაროლი" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "საწყისი პარამეტრები" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index e4540bd24e..1c95edd9e8 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "დასრულდა" msgid "Error" msgstr "შეცდომა" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "ჯგუფების არჩევა" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "კავშირის ტესტირება მოხერხდა" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "კავშირის ტესტირება ვერ მოხერხდა" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "წაშლის დადასტურება" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "დახმარება" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "თქვენ შეგიძლიათ მიუთითოთ ს #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "ჯგუფური ძებნის ატრიბუტი" msgid "Group-Member association" msgstr "ჯგუფის წევრობის ასოციაცია" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "სპეციალური ატრიბუტები" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "ქვოტას ველი" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "საწყისი ქვოტა" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "ბაიტებში" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "იმეილის ველი" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/km/core.po b/l10n/km/core.po index bb74bdede4..194ac60a54 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# សុវិចិត្រ Sovichet ទេព Tep , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +18,7 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -58,11 +54,11 @@ msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "មិន​ស្គាល់​ប្រភេទ​ឯកសារ" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "រូបភាព​មិន​ត្រឹម​ត្រូវ" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -72,137 +68,141 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 -msgid "Sunday" -msgstr "" - -#: js/config.php:33 -msgid "Monday" -msgstr "" - -#: js/config.php:34 -msgid "Tuesday" -msgstr "" - -#: js/config.php:35 -msgid "Wednesday" -msgstr "" - #: js/config.php:36 -msgid "Thursday" -msgstr "" +msgid "Sunday" +msgstr "ថ្ងៃអាទិត្យ" #: js/config.php:37 -msgid "Friday" -msgstr "" +msgid "Monday" +msgstr "ថ្ងៃចន្ទ" #: js/config.php:38 +msgid "Tuesday" +msgstr "ថ្ងៃអង្គារ" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "ថ្ងៃពុធ" + +#: js/config.php:40 +msgid "Thursday" +msgstr "ថ្ងៃព្រហស្បតិ៍" + +#: js/config.php:41 +msgid "Friday" +msgstr "ថ្ងៃសុក្រ" + +#: js/config.php:42 msgid "Saturday" -msgstr "" - -#: js/config.php:43 -msgid "January" -msgstr "" - -#: js/config.php:44 -msgid "February" -msgstr "" - -#: js/config.php:45 -msgid "March" -msgstr "" - -#: js/config.php:46 -msgid "April" -msgstr "" +msgstr "ថ្ងៃសៅរ៍" #: js/config.php:47 -msgid "May" -msgstr "" +msgid "January" +msgstr "ខែមករា" #: js/config.php:48 -msgid "June" -msgstr "" +msgid "February" +msgstr "ខែកុម្ភៈ" #: js/config.php:49 -msgid "July" -msgstr "" +msgid "March" +msgstr "ខែមីនា" #: js/config.php:50 -msgid "August" -msgstr "" +msgid "April" +msgstr "ខែមេសា" #: js/config.php:51 -msgid "September" -msgstr "" +msgid "May" +msgstr "ខែឧសភា" #: js/config.php:52 -msgid "October" -msgstr "" +msgid "June" +msgstr "ខែមិថុនា" #: js/config.php:53 -msgid "November" -msgstr "" +msgid "July" +msgstr "ខែកក្កដា" #: js/config.php:54 +msgid "August" +msgstr "ខែសីហា" + +#: js/config.php:55 +msgid "September" +msgstr "ខែកញ្ញា" + +#: js/config.php:56 +msgid "October" +msgstr "ខែតុលា" + +#: js/config.php:57 +msgid "November" +msgstr "ខែវិច្ឆិកា" + +#: js/config.php:58 msgid "December" -msgstr "" +msgstr "ខែធ្នូ" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" +msgstr "ការកំណត់" + +#: js/js.js:496 +msgid "Saving..." msgstr "" -#: js/js.js:858 +#: js/js.js:992 msgid "seconds ago" -msgstr "" +msgstr "វិនាទី​មុន" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n នាទី​មុន" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n ម៉ោង​មុន" -#: js/js.js:861 +#: js/js.js:995 msgid "today" -msgstr "" +msgstr "ថ្ងៃនេះ" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" -msgstr "" +msgstr "ម្សិលមិញ" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n ថ្ងៃ​មុន" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" -msgstr "" +msgstr "ខែមុន" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n ខែ​មុន" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" -msgstr "" +msgstr "ខែ​មុន" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" -msgstr "" +msgstr "ឆ្នាំ​មុន" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" -msgstr "" +msgstr "ឆ្នាំ​មុន" #: js/oc-dialogs.js:123 msgid "Choose" -msgstr "" +msgstr "ជ្រើស" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" @@ -210,15 +210,15 @@ msgstr "" #: js/oc-dialogs.js:172 msgid "Yes" -msgstr "" +msgstr "ព្រម" #: js/oc-dialogs.js:182 msgid "No" -msgstr "" +msgstr "ទេ" #: js/oc-dialogs.js:199 msgid "Ok" -msgstr "" +msgstr "ព្រម" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" @@ -245,7 +245,7 @@ msgstr "" #: js/oc-dialogs.js:376 msgid "Cancel" -msgstr "" +msgstr "លើកលែង" #: js/oc-dialogs.js:386 msgid "Continue" @@ -263,154 +263,174 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "បាន​ចែក​រំលែក" #: js/share.js:109 msgid "Share" -msgstr "" +msgstr "ចែក​រំលែក" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" -msgstr "" +msgstr "កំហុស" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" -msgstr "" +msgstr "កំហុស​ពេល​ចែក​រំលែក" #: js/share.js:171 msgid "Error while unsharing" -msgstr "" +msgstr "កំពុង​ពេល​លែង​ចែក​រំលែក" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "មាន​កំហុស​នៅ​ពេល​ប្ដូរ​សិទ្ធិ" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "បាន​ចែក​រំលែក​ជាមួយ​អ្នក និង​ក្រុម {group} ដោយ {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" -msgstr "" +msgstr "បាន​ចែក​រំលែក​ជាមួយ​អ្នក​ដោយ {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" -msgstr "" +msgstr "ការ​ពារ​ដោយ​ពាក្យ​សម្ងាត់" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" -msgstr "" +msgstr "ពាក្យសម្ងាត់" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" -msgstr "" - -#: js/share.js:239 -msgid "Set expiration date" -msgstr "" +msgstr "ផ្ញើ" #: js/share.js:240 +msgid "Set expiration date" +msgstr "កំណត់​ពេល​ផុត​កំណត់" + +#: js/share.js:241 msgid "Expiration date" -msgstr "" +msgstr "ពេល​ផុត​កំណត់" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" -msgstr "" +msgstr "ចែក​រំលែក​តាម​អ៊ីមែល៖" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" -msgstr "" +msgstr "រក​មិន​ឃើញ​មនុស្ស​ណា​ម្នាក់" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" -msgstr "" +msgstr "ក្រុម" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" -msgstr "" +msgstr "មិន​អនុញ្ញាត​ឲ្យ​មាន​ការ​ចែក​រំលែក​ឡើង​វិញ" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "បាន​ចែក​រំលែក​ក្នុង {item} ជាមួយ {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" -msgstr "" +msgstr "លែង​ចែក​រំលែក" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" -msgstr "" +msgstr "អាច​កែប្រែ" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" -msgstr "" +msgstr "សិទ្ធិ​បញ្ជា" -#: js/share.js:413 +#: js/share.js:417 msgid "create" -msgstr "" +msgstr "បង្កើត" -#: js/share.js:416 +#: js/share.js:420 msgid "update" -msgstr "" +msgstr "ធ្វើ​បច្ចុប្បន្នភាព" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" -msgstr "" +msgstr "លុប" -#: js/share.js:422 +#: js/share.js:426 msgid "share" -msgstr "" +msgstr "ចែក​រំលែក" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" -msgstr "" +msgstr "បាន​ការ​ពារ​ដោយ​ពាក្យ​សម្ងាត់" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." -msgstr "" +msgstr "កំពុង​ផ្ញើ ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" -msgstr "" +msgstr "បាន​ផ្ញើ​អ៊ីមែល" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" -msgstr "" +msgstr "បម្រាម" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "មិន​បាន​កំណត់​ប្រភេទ​វត្ថុ។" #: js/tags.js:13 msgid "Enter new" @@ -422,7 +442,7 @@ msgstr "លុប" #: js/tags.js:31 msgid "Add" -msgstr "" +msgstr "បញ្ចូល" #: js/tags.js:39 msgid "Edit tags" @@ -451,11 +471,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -475,10 +501,10 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" -msgstr "" +msgstr "ឈ្មោះ​អ្នកប្រើ" #: lostpassword/templates/lostpassword.php:25 msgid "" @@ -498,39 +524,39 @@ msgstr "" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "ពាក្យ​សម្ងាត់​របស់​អ្នក​ត្រូវ​បាន​កំណត់​ឡើង​វិញ" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "ទៅ​ទំព័រ​ចូល" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "ពាក្យ​សម្ងាត់​ថ្មី" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "កំណត់​ពាក្យ​សម្ងាត់​ម្ដង​ទៀត" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "ផ្ទាល់​ខ្លួន" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "អ្នកប្រើ" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" -msgstr "" +msgstr "កម្មវិធី" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "អ្នក​គ្រប់​គ្រង" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "ជំនួយ" #: tags/controller.php:22 msgid "Error loading tags" @@ -562,11 +588,11 @@ msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "បាន​ហាមឃាត់​ការ​ចូល" #: templates/404.php:15 msgid "Cloud not found" -msgstr "" +msgstr "រក​មិន​ឃើញ Cloud" #: templates/altmail.php:2 #, php-format @@ -590,7 +616,7 @@ msgstr "" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "បម្រាម​សុវត្ថិភាព" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -630,49 +656,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +712,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -714,27 +738,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/km/files.po b/l10n/km/files.po index d5b5468f56..5685bbe81b 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" -msgstr "" +msgstr "ឯកសារ" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" -msgstr "" +msgstr "ចែក​រំលែក" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 -msgid "undo" -msgstr "" - #: js/filelist.js:591 +msgid "undo" +msgstr "មិន​ធ្វើ​វិញ" + +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" -msgstr "" +msgstr "កំហុស" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" -msgstr "" +msgstr "ឈ្មោះ" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -298,14 +305,14 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" -msgstr "" +msgstr "ផ្ទុក​ឡើង" #: templates/admin.php:5 msgid "File handling" @@ -337,71 +344,71 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "រក្សាទុក" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" -msgstr "" +msgstr "ថត​ថ្មី" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" -msgstr "" +msgstr "ថត" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" -msgstr "" +msgstr "ទាញយក" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "លុប" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/km/files_encryption.po b/l10n/km/files_encryption.po index 17b2fcd5cb..15f1b5bf05 100644 --- a/l10n/km/files_encryption.po +++ b/l10n/km/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/km/files_external.po b/l10n/km/files_external.po index 38f8a6f5ba..343c6971f6 100644 --- a/l10n/km/files_external.po +++ b/l10n/km/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -63,7 +67,7 @@ msgstr "" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "ឈ្មោះ​ថត" #: templates/settings.php:10 msgid "External storage" @@ -95,29 +99,29 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "" +msgstr "ក្រុ" #: templates/settings.php:100 msgid "Users" -msgstr "" +msgstr "អ្នកប្រើ" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "លុប" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/km/files_sharing.po b/l10n/km/files_sharing.po index e603aaaa64..2d10a695b1 100644 --- a/l10n/km/files_sharing.po +++ b/l10n/km/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pongsametrey SOK , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +18,10 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -27,7 +32,7 @@ msgstr "" #: templates/authenticate.php:10 msgid "Password" -msgstr "" +msgstr "ពាក្យសម្ងាត់" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." @@ -55,30 +60,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/km/files_trashbin.po b/l10n/km/files_trashbin.po index dbe47b2f7b..724b7c893a 100644 --- a/l10n/km/files_trashbin.po +++ b/l10n/km/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 -msgid "Error" +#: js/filelist.js:23 +msgid "Deleted files" msgstr "" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +msgid "Error" +msgstr "កំហុស" + +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" -msgstr "" +msgstr "ឈ្មោះ" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" -msgstr "" +msgstr "ស្ដារ​មក​វិញ" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "លុប" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/km/files_versions.po b/l10n/km/files_versions.po index f9b37bb0cc..16c05aa131 100644 --- a/l10n/km/files_versions.po +++ b/l10n/km/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# សុវិចិត្រ Sovichet ទេព Tep , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:47-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-02-26 12:50+0000\n" +"Last-Translator: សុវិចិត្រ Sovichet ទេព Tep \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +21,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "មិន​អាច​ត្រឡប់៖ %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" -msgstr "" +msgstr "កំណែ" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "មិន​អាច​ត្រឡប់ {file} ទៅ​កំណែ​សម្រួល {timestamp} បាន​ទេ។" -#: js/versions.js:79 +#: js/versions.js:87 msgid "More versions..." -msgstr "" +msgstr "កំណែ​ច្រើន​ទៀត..." -#: js/versions.js:116 +#: js/versions.js:125 msgid "No other versions available" -msgstr "" +msgstr "មិន​មាន​កំណែ​ផ្សេង​ទៀត​ទេ" -#: js/versions.js:145 +#: js/versions.js:155 msgid "Restore" -msgstr "" +msgstr "ស្ដារ​មក​វិញ" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 87bcd1528a..a9404549af 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# សុវិចិត្រ Sovichet ទេព Tep , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,74 +18,69 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "មិន​អាច​ដំឡើង​កម្មវិធី \"%s\" បាន ព្រោះ​តែ​វា​មិន​ត្រូវ​គ្នា​នឹង​កំណែ ownCloud នេះ​ទេ។" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" -msgstr "" +msgstr "មិន​បាន​បញ្ជាក់​ឈ្មោះ​កម្មវិធី" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" -msgstr "" +msgstr "ជំនួយ" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" -msgstr "" +msgstr "ផ្ទាល់​ខ្លួន" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" -msgstr "" +msgstr "ការកំណត់" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" -msgstr "" +msgstr "អ្នកប្រើ" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" -msgstr "" +msgstr "អ្នក​គ្រប់​គ្រង" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "មិន​ស្គាល់​ប្រភេទ​ឯកសារ" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "រូបភាព​មិន​ត្រឹម​ត្រូវ" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" -msgstr "" - -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" +msgstr "សេវាកម្ម​វេប​ក្រោម​ការ​ការ​បញ្ជា​របស់​អ្នក" #: private/files.php:231 msgid "ZIP download is turned off." -msgstr "" +msgstr "បាន​បិទ​ការ​ទាញ​យក ZIP ។" #: private/files.php:232 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "ត្រូវ​ការ​ទាញ​យក​ឯកសារ​ម្ដង​មួយៗ។" #: private/files.php:233 private/files.php:261 msgid "Back to Files" -msgstr "" +msgstr "ត្រឡប់​ទៅ​ឯកសារ" #: private/files.php:258 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "ឯកសារ​ដែល​បាន​ជ្រើស មាន​ទំហំ​ធំ​ពេក​ក្នុង​ការ​បង្កើត​ជា zip ។" #: private/files.php:259 msgid "" @@ -92,100 +88,104 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" -msgstr "" +msgstr "មាន​ទីតាំង​ផ្ទុក​កម្មវិធី​រួច​ហើយ" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "មិន​អាច​បង្កើត​ថត​កម្មវិធី។ សូម​កែ​សម្រួល​សិទ្ធិ។ %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" -msgstr "" +msgstr "មិន​បាន​បើក​កម្មវិធី" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" +msgstr "កំហុស​ការ​ផ្ទៀង​ផ្ទាត់​ភាព​ត្រឹម​ត្រូវ" + +#: private/json.php:52 +msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:51 -msgid "Token expired. Please reload page." +#: private/json.php:75 +msgid "Unknown user" msgstr "" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" -msgstr "" +msgstr "ឯកសារ" #: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" -msgstr "" +msgstr "អត្ថបទ" #: private/search/provider/file.php:30 msgid "Images" -msgstr "" +msgstr "រូបភាព" #: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s វាយ​បញ្ចូល​ឈ្មោះ​អ្នក​ប្រើ​មូលដ្ឋាន​ទិន្នន័យ។" #: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s វាយ​បញ្ចូល​ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ។" #: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s អ្នក​អាច​មិន​ប្រើ​សញ្ញា​ចុច​នៅ​ក្នុង​ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ" #: private/setup/mssql.php:20 #, php-format @@ -199,7 +199,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -212,7 +212,7 @@ msgstr "" #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "កំហុស DB៖ \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 #: private/setup/oci.php:122 private/setup/oci.php:145 @@ -227,25 +227,25 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "មិន​អាច​បង្កើត​ការ​តភ្ជាប់ Oracle" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" @@ -258,72 +258,78 @@ msgstr "" #: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "ឈ្មោះ​អ្នក​ប្រើ និង/ឬ ពាក្យ​សម្ងាត់ PostgreSQL គឺ​មិន​ត្រូវ​ទេ" #: private/setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "កំណត់​ឈ្មោះ​អ្នក​គ្រប់គ្រង។" #: private/setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "កំណត់​ពាក្យ​សម្ងាត់​អ្នក​គ្រប់គ្រង។" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" -msgstr "" - -#: private/template/functions.php:130 -msgid "seconds ago" -msgstr "" - -#: private/template/functions.php:131 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "" - -#: private/template/functions.php:132 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "" +msgstr "រក​មិន​ឃើញ​ចំណាត់​ក្រុម \"%s\"" #: private/template/functions.php:133 -msgid "today" -msgstr "" +msgid "seconds ago" +msgstr "វិនាទី​មុន" #: private/template/functions.php:134 -msgid "yesterday" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n នាទី​មុន" + +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n ម៉ោង​មុន" #: private/template/functions.php:136 -msgid "%n day go" -msgid_plural "%n days ago" -msgstr[0] "" +msgid "today" +msgstr "ថ្ងៃនេះ" -#: private/template/functions.php:138 -msgid "last month" -msgstr "" +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "ម្សិលមិញ" #: private/template/functions.php:139 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "%n ថ្ងៃ​មុន" #: private/template/functions.php:141 -msgid "last year" -msgstr "" +msgid "last month" +msgstr "ខែមុន" #: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%n ខែ​មុន" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "ឆ្នាំ​មុន" + +#: private/template/functions.php:145 msgid "years ago" -msgstr "" +msgstr "ឆ្នាំ​មុន" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 1da76a89a6..36caab8bb9 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pongsametrey SOK , 2014 +# សុវិចិត្រ Sovichet ទេព Tep , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,14 +19,56 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "មិនអាចផ្ទុកបញ្ជីកម្មវិធីពី App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:55 msgid "Authentication error" -msgstr "" +msgstr "កំហុស​ការ​ផ្ទៀង​ផ្ទាត់​ភាព​ត្រឹម​ត្រូវ" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." @@ -36,53 +80,53 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "មាន​ក្រុម​នេះ​រួច​ហើយ" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "មិន​អាច​បន្ថែម​ក្រុម" #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "" +msgstr "បាន​រក្សា​ទុក​អ៊ីមែល" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "" +msgstr "អ៊ីមែល​មិន​ត្រឹម​ត្រូវ" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "មិន​អាច​លុប​ក្រុម​បាន" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "" +msgstr "មិន​អាច​លុប​អ្នក​ប្រើ​បាន" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "" +msgstr "បាន​ប្ដូរ​ភាសា" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" -msgstr "" +msgstr "សំណើ​មិន​ត្រឹម​ត្រូវ" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "អ្នក​គ្រប់​គ្រង​មិន​អាច​លុប​ខ្លួន​ឯង​ចេញ​ពី​ក្រុម​អ្នក​គ្រប់​គ្រង​ឡើយ" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "មិន​អាច​បន្ថែម​អ្នក​ប្រើ​ទៅ​ក្រុម %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "មិន​អាច​ដក​អ្នក​ប្រើ​ចេញ​ពី​ក្រុម​ %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "មិន​អាច​ធ្វើ​បច្ចុប្បន្នភាព​កម្មវិធី។" #: changepassword/controller.php:20 msgid "Wrong password" @@ -113,110 +157,138 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "ឯកសារ​សម្រាប់​អ្នក​ប្រើប្រាស់" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" -msgstr "" +msgstr "ធ្វើ​បច្ចុប្បន្នភាព​ទៅ {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" -msgstr "" +msgstr "បិទ" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" -msgstr "" +msgstr "បើក" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." -msgstr "" +msgstr "សូម​រង់​ចាំ...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." -msgstr "" +msgstr "កំពុង​ធ្វើ​បច្ចុប្បន្នភាព...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" -msgstr "" +msgstr "មាន​កំហុស​ពេល​ធ្វើ​បច្ចុប្បន្នភាព​កម្មវិធី" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" -msgstr "" +msgstr "កំហុស" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" -msgstr "" +msgstr "ធ្វើ​បច្ចុប្បន្នភាព" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" -msgstr "" +msgstr "បាន​ធ្វើ​បច្ចុប្បន្នភាព" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "បាន​លុប" #: js/users.js:47 msgid "undo" -msgstr "" +msgstr "មិន​ធ្វើ​វិញ" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "មិន​អាច​ដក​អ្នក​ប្រើ​ចេញ" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" -msgstr "" +msgstr "ក្រុ" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" -msgstr "" +msgstr "ក្រុម​អ្នក​គ្រប់គ្រង" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "លុប" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" -msgstr "" +msgstr "បន្ថែម​ក្រុម" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" -msgstr "" +msgstr "ត្រូវ​ផ្ដល់​ឈ្មោះ​អ្នក​ប្រើ​ឲ្យ​បាន​ត្រឹម​ត្រូវ" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" -msgstr "" +msgstr "មាន​កំហុស​ក្នុង​ការ​បង្កើត​អ្នក​ប្រើ" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" -msgstr "" +msgstr "ត្រូវ​ផ្ដល់​ពាក្យ​សម្ងាត់​ឲ្យ​បាន​ត្រឹម​ត្រូវ" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" -msgstr "" +msgstr "__language_name__" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" @@ -238,18 +310,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "បម្រាម​សុវត្ថិភាព" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +354,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" -msgstr "" +msgstr "បម្រាម​ការ​ដំឡើង" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "ខ្វះ​ម៉ូឌុល 'fileinfo'" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "ខ្វះ​ម៉ូឌុល 'fileinfo' ។ យើង​សូម​ណែនាំ​ឲ្យ​បើក​ម៉ូឌុល​នេះ ដើម្បី​ទទួល​បាន​លទ្ធផល​ល្អ​នៃ​ការ​សម្គាល់​ប្រភេទ mime ។" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" -msgstr "" +msgstr "Locale មិន​ដំណើរការ" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" -msgstr "" +msgstr "ការ​តភ្ជាប់​អ៊ីនធឺណិត​មិន​មាន​ដំណើរ​ការ" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" -msgstr "" +msgstr "ការ​ចែក​រំលែក" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" -msgstr "" +msgstr "បើក API ចែក​រំលែក" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "អនុញ្ញាត​ឲ្យ​កម្មវិធី​ប្រើ API ចែក​រំលែក" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" -msgstr "" +msgstr "អនុញ្ញាត​តំណ" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ចែក​រំលែក​របស់​ទៅ​សាធារណៈ​ជាមួយ​តំណ" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" -msgstr "" +msgstr "អនុញ្ញាត​ការ​ចែក​រំលែក​ម្ដង​ទៀត" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" -msgstr "" +msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ចែក​រំលែក​ជាមួយ​នរណា​ម្នាក់" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" -msgstr "" +msgstr "សុវត្ថិភាព" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" -msgstr "" +msgstr "បង្ខំ HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" -msgstr "" +msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" -msgstr "" +msgstr "កម្រិត Log" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" -msgstr "" +msgstr "ច្រើន​ទៀត" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" -msgstr "" +msgstr "តិច" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" -msgstr "" +msgstr "កំណែ" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" -msgstr "" +msgstr "បន្ថែម​កម្មវិធី​របស់​អ្នក" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" -msgstr "" +msgstr "កម្មវិធី​ច្រើន​ទៀត" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" +msgstr "ជ្រើស​កម្មវិធី​មួយ" + +#: templates/apps.php:42 +msgid "Documentation:" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "ឯកសារ​សម្រាប់​​អ្នក​​គ្រប់​គ្រង​ប្រព័ន្ធ" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "ឯកសារ Online" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "វេទិកាពិភាក្សា" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Bugtracker" #: templates/help.php:17 msgid "Commercial Support" @@ -506,9 +650,9 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" -msgstr "" +msgstr "ពាក្យសម្ងាត់" #: templates/personal.php:40 msgid "Your password was changed" @@ -518,151 +662,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" -msgstr "" - -#: templates/personal.php:44 -msgid "New password" -msgstr "" +msgstr "ពាក្យសម្ងាត់​បច្ចុប្បន្ន" #: templates/personal.php:46 -msgid "Change password" -msgstr "" +msgid "New password" +msgstr "ពាក្យ​សម្ងាត់​ថ្មី" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:50 +msgid "Change password" +msgstr "ប្តូរ​ពាក្យសម្ងាត់" + +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" -msgstr "" +msgstr "អ៊ីមែល" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" -msgstr "" - -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "" +msgstr "អ៊ីម៉ែល​របស់​អ្នក" #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" -msgstr "" +msgstr "ភាសា" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" -msgstr "" +msgstr "ជួយ​បក​ប្រែ" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" -msgstr "" +msgstr "ផ្សេងៗ" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" -msgstr "" +msgstr "ឈ្មោះ​អ្នកប្រើ" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index 8c1ac7598b..9a3c86b8c5 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# សុវិចិត្រ Sovichet ទេព Tep , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,19 +24,19 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "លុប​ការ​កំណត់​រចនា​សម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ មិន​បាន​សម្រេច" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -60,7 +61,7 @@ msgstr "" #: js/settings.js:67 msgid "Deletion failed" -msgstr "" +msgstr "លុប​មិន​បាន​សម្រេច" #: js/settings.js:83 msgid "Take over settings from recent server configuration?" @@ -68,11 +69,11 @@ msgstr "" #: js/settings.js:84 msgid "Keep settings?" -msgstr "" +msgstr "រក្សា​ទុក​ការ​កំណត់?" #: js/settings.js:99 msgid "Cannot add server configuration" -msgstr "" +msgstr "មិន​អាច​បន្ថែម​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ" #: js/settings.js:127 msgid "mappings cleared" @@ -84,47 +85,47 @@ msgstr "" #: js/settings.js:133 msgid "Error" -msgstr "" +msgstr "កំហុស" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" -msgstr "" +msgstr "សាក​ល្បង​ការ​ត​ភ្ជាប់ បាន​ជោគជ័យ" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" -msgstr "" +msgstr "សាកល្បង​ការ​តភ្ជាប់ មិន​បាន​សម្រេច" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "តើ​អ្នក​ពិត​ជា​ចង់​លុប​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ​បច្ចុប្បន្ន​មែន​ទេ?" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" -msgstr "" +msgstr "បញ្ជាក់​ការ​លុប" #: lib/wizard.php:79 lib/wizard.php:93 #, php-format @@ -138,17 +139,17 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" #: templates/part.settingcontrols.php:2 msgid "Save" -msgstr "" +msgstr "រក្សាទុក" #: templates/part.settingcontrols.php:4 msgid "Test Configuration" @@ -156,11 +157,11 @@ msgstr "" #: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 msgid "Help" -msgstr "" +msgstr "ជំនួយ" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +197,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -220,11 +221,11 @@ msgstr "" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" -msgstr "" +msgstr "បន្ថែម​ការ​កំណត់​រចនាសម្ព័ន្ធ​ម៉ាស៊ីន​បម្រើ" #: templates/part.wizard-server.php:30 msgid "Host" -msgstr "" +msgstr "ម៉ាស៊ីន​ផ្ទុក" #: templates/part.wizard-server.php:31 msgid "" @@ -248,7 +249,7 @@ msgstr "" #: templates/part.wizard-server.php:52 msgid "Password" -msgstr "" +msgstr "ពាក្យសម្ងាត់" #: templates/part.wizard-server.php:53 msgid "For anonymous access, leave DN and Password empty." @@ -264,7 +265,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +408,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +468,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +487,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +513,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/km/user_webdavauth.po b/l10n/km/user_webdavauth.po index 1b1ffbc431..a6a80670bf 100644 --- a/l10n/km/user_webdavauth.po +++ b/l10n/km/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# សុវិចិត្រ Sovichet ទេព Tep , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-13 21:47-0400\n" -"PO-Revision-Date: 2013-09-12 11:11+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-02-26 11:50+0000\n" +"Last-Translator: សុវិចិត្រ Sovichet ទេព Tep \n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "ការ​ផ្ទៀង​ផ្ទាត់​ភាព​ត្រឹម​ត្រូវ WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "អាសយដ្ឋាន៖" #: templates/settings.php:7 msgid "" "The user credentials will be sent to this address. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "អត្តសញ្ញាណ​អ្នក​ប្រើ​នឹង​ត្រូវ​ផ្ញើ​ទៅ​អាសយដ្ឋាន​នេះ។ កម្មវិធី​បន្ថែម​នេះ​ពិនិត្យ​ចម្លើយ​តប ហើយ​នឹង​បក​ស្រាយ​កូដ​ស្ថានភាព HTTP ដូច​ជា 401 និង 403 ថា​ជា​អត្តសញ្ញាណ​មិន​ត្រឹម​ត្រូវ ហើយ​និង​ចម្លើយ​តប​ផ្សេងៗ​ថា​ត្រឹម​ត្រូវ។" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 135a0829e5..815d82a300 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -271,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -288,123 +307,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -451,11 +470,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -520,7 +545,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 31a4b49208..b5edb6c6c4 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -298,12 +305,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -339,69 +346,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index bf8a4cc0e4..583e9d5bd4 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po index 61e30ed382..4a33e25339 100644 --- a/l10n/kn/files_external.po +++ b/l10n/kn/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index 56abd76eca..ab5742aad4 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 15941b3799..5e3bacaffe 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 93d65f06c4..01945d87b2 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index a61d69bc14..5bd4b70e0f 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po index dc913170ac..43493a88ca 100644 --- a/l10n/kn/user_ldap.po +++ b/l10n/kn/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 212e85bb4a..58dd9531e4 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" -"PO-Revision-Date: 2013-12-28 13:54+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,12 +23,7 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s 님이 %s을(를) 공유하였습니다" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "%s 님에게 메일을 보낼 수 없습니다." @@ -78,131 +73,135 @@ msgstr "사용 가능한 프로필 사진이 없습니다. 다시 시도하십 msgid "No crop data provided" msgstr "선택된 데이터가 없습니다." -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "일요일" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "월요일" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "화요일" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "수요일" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "목요일" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "금요일" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "토요일" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "1월" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "2월" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "3월" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "4월" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "5월" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "6월" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "7월" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "8월" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "9월" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "10월" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "11월" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "12월" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "설정" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "초 전" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "오늘" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "어제" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "지난 달" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "개월 전" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "작년" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "년 전" @@ -269,6 +268,26 @@ msgstr "({count}개 선택됨)" msgid "Error loading file exists template" msgstr "파일 존재함 템플릿을 불러오는 중 오류 발생" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "공유됨" @@ -277,12 +296,12 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "오류" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -294,123 +313,123 @@ msgstr "공유 해제하는 중 오류 발생" msgid "Error while changing permissions" msgstr "권한 변경하는 중 오류 발생" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} 님이 공유 중" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "사용자 및 그룹과 공유..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "링크 공유" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "암호 보호" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "암호" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "공개 업로드 허용" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "이메일 주소" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "전송" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "만료 날짜 설정" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "만료 날짜" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "이메일로 공유:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "그룹" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "이메일로 알림" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "편집 가능" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "접근 제어" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "생성" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "업데이트" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "삭제" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "공유" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "이메일 발송됨" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "경고" @@ -457,11 +476,17 @@ msgstr "업데이트가 실패하였습니다. 이 문제를 이메일 주소와 사용자 이름을 msgid "You will receive a link to reset your password via Email." msgstr "이메일로 암호 재설정 링크를 보냈습니다." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "사용자 이름" @@ -526,7 +551,7 @@ msgstr "개인" msgid "Users" msgstr "사용자" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "앱" @@ -636,49 +661,47 @@ msgstr "올바른 서버 설정을 위한 정보는 admin account
" msgstr "관리자 계정 만들기" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "고급" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "데이터 폴더" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "데이터베이스 설정" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "사용될 예정" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "설치 완료" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "완료 중 ..." @@ -694,7 +717,7 @@ msgstr "이 애플리케이션을 올바르게 사용하려면 자바스크립 msgid "%s is available. Get more information on how to update." msgstr "%s을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 자세한 정보를 얻으십시오." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "로그아웃" @@ -720,28 +743,28 @@ msgstr "서버 인증 실패!" msgid "Please contact your administrator." msgstr "관리자에게 문의하십시오." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "암호를 잊으셨습니까?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "기억하기" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "로그인" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "대체 로그인" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "안녕하세요,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 7ae321b6ab..82d00ec195 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/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-29 01:55-0500\n" -"PO-Revision-Date: 2013-12-28 22:06+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,36 +33,48 @@ msgstr "항목 %s을(를) 이동시킬 수 없음 - 같은 이름의 파일이 msgid "Could not move %s" msgstr "항목 %s을(를) 이동시킬 수 없음" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "파일 이름이 비어 있을 수 없습니다." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "파일 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "이름 %s이(가) 폴더 %s에서 이미 사용 중입니다. 다른 이름을 사용하십시오." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "올바르지 않은 원본" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "서버에서 URL을 열 수 없습니다. 서버 설정을 확인하십시오" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "%s을(를) %s(으)로 다운로드하는 중 오류 발생" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "파일 생성 중 오류 발생" @@ -70,233 +82,228 @@ msgstr "파일 생성 중 오류 발생" msgid "Folder name cannot be empty." msgstr "폴더 이름이 비어있을 수 없습니다." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "폴더 이름에는 \"/\"가 들어갈 수 없습니다. 다른 이름을 사용하십시오." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "폴더 생성 중 오류 발생" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "업로드 디렉터리를 설정할 수 없습니다." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "잘못된 토큰" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "파일" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "{filename}을(를) 업로드할 수 없습니다. 폴더이거나 0 바이트 파일입니다." -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "여유 공간이 부족합니다" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "서버에서 결과를 가져올 수 없습니다." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL이 비어있을 수 없음" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "'공유됨'은 홈 폴더의 예약된 파일 이름임" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "파일을 만들 수 없음" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "폴더를 만들 수 없음" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "URL을 가져올 수 없음" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "공유" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "영구히 삭제" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "이름을 변경할 수 없음" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "실행 취소" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "파일 삭제 오류." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "폴더 %n개" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "파일 %n개" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} 그리고 {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "파일 %n개 업로드 중" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' 는 올바르지 않은 파일 이름입니다." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 동기화할 수 없습니다!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화되어 있습니다. 개인 설정에서 파일을 복호화하십시오." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "다운로드 준비 중입니다. 파일 크기가 크면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "파일 이동 오류" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "오류" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "이름" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "크기" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "수정됨" @@ -304,12 +311,12 @@ msgstr "수정됨" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s의 이름을 변경할 수 없습니다" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "업로드" @@ -345,69 +352,69 @@ msgstr "ZIP 파일 최대 크기" msgid "Save" msgstr "저장" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "새로 만들기" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "새 텍스트 파일" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "텍스트 파일" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "새 폴더" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "폴더" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "링크에서" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "삭제된 파일" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "여기에 파일을 업로드하거나 만들 권한이 없습니다" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "내용이 없습니다. 업로드할 수 있습니다!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "다운로드" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "삭제" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "업로드한 파일이 너무 큼" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "파일을 검색하고 있습니다. 기다려 주십시오." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "현재 검색" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 87e1438ba0..45a5e1ad77 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" -"PO-Revision-Date: 2013-12-28 13:54+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,18 +84,18 @@ msgid "" "administrator" msgstr "알 수 없는 오류. 시스템 설정을 확인하거나 관리자에게 문의하십시오." -#: hooks/hooks.php:62 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "요구 사항이 부족합니다." -#: hooks/hooks.php:63 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "PHP 5.3.3 이상 설치 여부, PHP의 OpenSSL 확장 기능 활성화 및 설정 여부를 확인하십시오. 암호화 앱이 비활성화 되었습니다." -#: hooks/hooks.php:281 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "다음 사용자는 암호화를 사용할 수 없습니다:" @@ -103,9 +103,9 @@ msgstr "다음 사용자는 암호화를 사용할 수 없습니다:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "저장 중..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 34002f8c63..af6f96583d 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "접근 허가됨" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Dropbox 저장소 설정 오류" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "접근 권한 부여" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Google 드라이브 저장소 설정 오류" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:516 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 "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "사용자" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "삭제" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "사용자 외부 저장소 사용" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "사용자별 외부 저장소 마운트 허용" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL 루트 인증서" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "루트 인증서 가져오기" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 7d21cd8d9d..1c42799dbb 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-22 14:24+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,10 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "이 공유는 암호로 보호되어 있습니다" @@ -56,32 +60,16 @@ msgstr "공유가 비활성화됨" msgid "For more info, please ask the person who sent this link." msgstr "자세한 정보는 링크를 보낸 사람에게 문의하십시오." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s 님이 파일 %s을(를) 공유하였습니다" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "다운로드" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "업로드" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "업로드 취소" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "다음 항목을 미리 볼 수 없음:" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "직접 링크" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 3b26bd329b..308c6d1b18 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" -"PO-Revision-Date: 2013-12-28 13:54+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,21 +20,25 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s을(를_ 영구적으로 삭제할 수 없습니다" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "%s을(를) 복원할 수 없습니다" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "오류" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "복원됨" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index b1fbf71876..1dfff9257f 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-22 14:20+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,38 +22,38 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "현재 ownCloud 버전과 호환되지 않기 때문에 \"%s\" 앱을 설치할 수 없습니다." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "앱 이름이 지정되지 않았습니다." -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "도움말" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "개인" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "설정" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "사용자" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "관리자" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" 업그레이드에 실패했습니다." @@ -66,15 +66,10 @@ msgstr "알 수 없는 파일 형식" msgid "Invalid image" msgstr "잘못된 그림" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "\"%s\"을(를) 열 수 없습니다." - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화 되었습니다." @@ -97,74 +92,78 @@ msgid "" "administrator." msgstr "작은 조각들 안에 들어있는 파일들을 받고자 하신다면, 나누어서 받으시거나 혹은 시스템 관리자에게 정중하게 물어보십시오" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "앱을 설치할 때 소스가 지정되지 않았습니다." -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "http에서 앱을 설치할 때 href가 지정되지 않았습니다." -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "로컬 파일에서 앱을 설치할 때 경로가 지정되지 않았습니다." -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "%s 타입 아카이브는 지원되지 않습니다." -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "앱을 설치할 때 아카이브를 열지 못했습니다." -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "앱에서 info.xml 파일이 제공되지 않았습니다." -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "앱에 허용되지 않는 코드가 있어서 앱을 설치할 수 없습니다." -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "현재 ownCloud 버전과 호환되지 않기 때문에 앱을 설치할 수 없습니다." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "출시되지 않은 앱에 허용되지 않는 true 태그를 포함하고 있기 때문에 앱을 설치할 수 없습니다." -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "info.xml/version에 포함된 버전과 앱 스토어에 보고된 버전이 같지 않아서 앱을 설치할 수 없습니다." -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "앱 디렉터리가 이미 존재합니다." -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "앱 폴더를 만들 수 없습니다. 권한을 수정하십시오. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "앱이 활성화되지 않았습니다" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "인증 오류" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "토큰이 만료되었습니다. 페이지를 새로 고치십시오." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "파일" @@ -204,8 +203,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "기존 계정이나 administrator(관리자)를 입력해야 합니다." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL 사용자 이름이나 암호가 잘못되었습니다." +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -232,21 +231,21 @@ msgstr "잘못된 명령: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "이 사용자를 MySQL에서 삭제하십시오" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다." +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "이 사용자를 MySQL에서 삭제하십시오." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -273,62 +272,68 @@ msgstr "관리자의 사용자 이름을 설정합니다." msgid "Set an admin password." msgstr "관리자의 암호를 설정합니다." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "설치 가이드를 다시 한 번 확인하십시오." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "분류 \"%s\"을(를) 찾을 수 없습니다." -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "초 전" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "오늘" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "어제" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "지난 달" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "작년" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index cb273b0aac..7fce99b617 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-30 01:55-0500\n" -"PO-Revision-Date: 2013-12-29 14:50+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,48 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "암호화" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "앱 스토어에서 목록을 가져올 수 없습니다" @@ -117,62 +159,90 @@ msgstr "백엔드에서 암호 변경을 지원하지 않지만, 사용자의 msgid "Unable to change password" msgstr "암호를 변경할 수 없음" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "사용자 문서" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "버전 {appversion}(으)로 업데이트" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "사용 안함" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "사용함" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "기다려 주십시오...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "앱을 비활성화하는 중 오류 발생" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "앱을 활성화하는 중 오류 발생" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "업데이트 중...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "앱을 업데이트하는 중 오류 발생" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "오류" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "업데이트" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "업데이트됨" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "프로필 사진 선택" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "파일 복호화 중... 시간이 걸릴 수도 있으니 기다려 주십시오." -#: js/personal.js:287 -msgid "Saving..." -msgstr "저장 중..." - #: js/users.js:47 msgid "deleted" msgstr "삭제됨" @@ -185,40 +255,40 @@ msgstr "실행 취소" msgid "Unable to remove user" msgstr "사용자를 삭제할 수 없음" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "그룹" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "그룹 관리자" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "삭제" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "그룹 추가" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "올바른 사용자 이름을 입력해야 함" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "사용자 생성 오류" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "경고: 사용자 \"{user}\"의 홈 디렉터리가 이미 존재합니다" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "한국어" @@ -242,18 +312,42 @@ msgstr "오류, 치명적 문제" msgid "Fatal issues only" msgstr "치명적 문제만" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "보안 경고" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "%s에 HTTP로 접근하고 있습니다. 서버에서 HTTPS를 사용하도록 설정하는 것을 추천합니다." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -262,68 +356,68 @@ msgid "" "root." msgstr "데이터 디렉터리와 파일을 인터넷에서 접근할 수도 있습니다. .htaccess 파일이 작동하지 않습니다. 웹 서버 설정을 변경하여 데이터 디렉터리에 접근할 수 없도록 하거나, 웹 서버 문서 경로 외부로 데이터 디렉터리를 옮기십시오." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "설정 경고" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "설치 가이드를 다시 한 번 확인하십시오." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "모듈 'fileinfo'가 없음" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "PHP 버전이 오래됨" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "PHP 버전이 오래되었습니다. 오래된 버전은 작동하지 않을 수도 있기 때문에 PHP 5.3.8 이상을 사용하는 것을 추천합니다." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "로캘이 작동하지 않음" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "UTF-8을 지원하는 시스템 로캘을 사용할 수 없습니다." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "파일 이름의 일부 문자에 문제가 생길 수도 있습니다." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "다음 로캘을 지원하도록 시스템 설정을 변경하는 것을 추천합니다: %s" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "인터넷에 연결할 수 없음" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -332,118 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 제 3자 앱 설치 등 일부 기능을 사용할 수 없습니다. 외부에서 파일에 접근하거나 알림 이메일을 보내지 못할 수도 있습니다. 모든 기능을 사용하려면 인터넷에 연결하는 것을 추천합니다." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "크론" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "개별 페이지를 불러올 때마다 실행" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일에 접근합니다." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "공유" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "공유 API 사용하기" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "앱에서 공유 API를 사용할 수 있도록 허용" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "링크 허용" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "공개 업로드 허용" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "다른 사용자들이 공개된 공유 폴더에 파일 업로드 허용" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "재공유 허용" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "누구나와 공유할 수 있도록 허용" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "메일 알림 허용" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "사용자에게 공유 파일에 대한 메일 알림을 허용합니다" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "보안" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "로그" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "더 중요함" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "버전" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "내 앱 추가" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "더 많은 앱" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "앱 선택" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com에 있는 앱 페이지를 참고하십시오" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-라이선스됨: " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "사용자 문서" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "관리자 문서" @@ -510,7 +652,7 @@ msgstr "첫 실행 마법사 다시 보이기" msgid "You have used %s of the available %s" msgstr "현재 공간 중 %s/%s을(를) 사용 중입니다" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "암호" @@ -522,151 +664,149 @@ msgstr "암호가 변경되었습니다" msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "새 암호" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "전체 이름" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "이메일" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "프로필 사진" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "새로 업로드" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "파일에서 선택" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "그림 삭제" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "png나 jpg를 사용하십시오. 정사각형 형태가 가장 좋지만 잘라낼 수 있습니다." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "원본 계정의 아바타를 사용합니다." -#: templates/personal.php:101 -msgid "Abort" -msgstr "중지" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "프로필 이미지로 사용" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "언어" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "WebDAV로 파일에 접근하려면 이 주소를 사용하십시오" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "암호화" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다." -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "로그인 암호" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "모든 파일 복호화" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "로그인 이름" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "만들기" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "관리자 복구 암호" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 암호를 입력하십시오" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "기본 저장소" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "무제한" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "기타" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "사용자 이름" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "저장소" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "전체 이름 변경" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "새 암호 설정" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "기본값" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 9fd54b6889..d15f208ee1 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-29 01:55-0500\n" -"PO-Revision-Date: 2013-12-28 13:55+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,43 +89,43 @@ msgstr "성공" msgid "Error" msgstr "오류" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "설정 올바름" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "설정 올바르지 않음" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "설정 불완전함" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "그룹 선택" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "객체 클래스 선택" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "속성 선택" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "연결 시험 성공" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "연결 시험 실패" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "현재 서버 설정을 지우시겠습니까?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "삭제 확인" @@ -141,11 +141,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "사용자 %s명 찾음" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "잘못된 호스트" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "필요한 기능을 찾을 수 없음" @@ -163,8 +163,8 @@ msgstr "도움말" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "다음 조건을 만족하는 그룹만 %s 접근 허용:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -199,8 +199,8 @@ msgid "groups found" msgstr "그룹 찾음" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "로그인 이름으로 사용할 속성:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -267,8 +267,8 @@ msgstr "고급 탭에서 사용자 및 그룹에 대한 기본 DN을 지정할 #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "다음 조건을 만족하는 사용자만 %s 접근 허용:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -410,41 +410,51 @@ msgstr "그룹 검색 속성" msgid "Group-Member association" msgstr "그룹-회원 연결" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "특수 속성" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "할당량 필드" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "기본 할당량" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "바이트 단위" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "이메일 필드" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "사용자 홈 폴더 이름 규칙" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "사용자 이름을 사용하려면 비워 두십시오(기본값). 기타 경우 LDAP/AD 속성을 지정하십시오." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "내부 사용자 이름" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +470,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "기본적으로 내부 사용자 이름은 UUID 속성에서 생성됩니다. 사용자 이름이 중복되지 않고 문자열을 변환할 필요가 없도록 합니다. 내부 사용자 이름에는 다음과 같은 문자열만 사용할 수 있습니다: [a-zA-Z0-9_.@-] 다른 문자열은 ASCII에 해당하는 문자열로 변경되거나 없는 글자로 취급됩니다. 충돌하는 경우 숫자가 붙거나 증가합니다. 내부 사용자 이름은 내부적으로 사용자를 식별하는 데 사용되며, 사용자 홈 폴더의 기본 이름입니다. 또한 *DAV와 같은 외부 URL의 일부로 사용됩니다. 이 설정을 사용하면 기본 설정을 재정의할 수 있습니다. ownCloud 5 이전의 행동을 사용하려면 아래 필드에 사용자의 표시 이름 속성을 입력하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자에게만 적용됩니다." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "내부 사용자 이름 속성:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "UUID 확인 재정의" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +489,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "기본적으로 UUID 속성은 자동적으로 감지됩니다. UUID 속성은 LDAP 사용자와 그룹을 정확히 식별하는 데 사용됩니다. 지정하지 않은 경우 내부 사용자 이름은 UUID를 기반으로 생성됩니다. 이 설정을 다시 정의하고 임의의 속성을 지정할 수 있습니다. 사용자와 그룹 모두에게 속성을 적용할 수 있고 중복된 값이 없는지 확인하십시오. 비워 두면 기본 설정을 사용합니다. 새로 추가되거나 매핑된 LDAP 사용자와 그룹에만 적용됩니다." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "사용자 UUID 속성:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "그룹 UUID 속성:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "사용자 이름-LDAP 사용자 매핑" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +515,10 @@ msgid "" "experimental stage." msgstr "사용자 이름은 (메타) 데이터를 저장하고 할당하는 데 사용됩니다. 사용자를 정확하게 식별하기 위하여 각각 LDAP 사용자는 내부 사용자 이름을 갖습니다. 이는 사용자 이름과 LDAP 사용자 간의 매핑이 필요합니다. 생성된 사용자 이름은 LDAP 사용자의 UUID로 매핑됩니다. 추가적으로 LDAP 통신을 줄이기 위해서 DN이 캐시에 저장되지만 식별에 사용되지는 않습니다. DN이 변경되면 변경 사항이 기록됩니다. 내부 사용자 이름은 계속 사용됩니다. 매핑을 비우면 흔적이 남아 있게 됩니다. 매핑을 비우는 작업은 모든 LDAP 설정에 영향을 줍니다! 테스트 및 실험 단계에만 사용하고, 사용 중인 서버에서는 시도하지 마십시오." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "사용자 이름-LDAP 사용자 매핑 비우기" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "그룹 이름-LDAP 그룹 매핑 비우기" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index e1f373f400..4666e64a14 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -214,11 +213,11 @@ msgstr "" #: js/oc-dialogs.js:172 msgid "Yes" -msgstr "" +msgstr "بەڵێ" #: js/oc-dialogs.js:182 msgid "No" -msgstr "" +msgstr "نەخێر" #: js/oc-dialogs.js:199 msgid "Ok" @@ -250,7 +249,7 @@ msgstr "" #: js/oc-dialogs.js:376 msgid "Cancel" -msgstr "" +msgstr "لابردن" #: js/oc-dialogs.js:386 msgid "Continue" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "هاوبەشی کردن" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "هه‌ڵه" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "وشەی تێپەربو" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "ئاگاداری" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "ناوی به‌کارهێنه‌ر" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "به‌كارهێنه‌ر" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "به‌رنامه‌كان" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "هه‌ڵبژاردنی پیشكه‌وتوو" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "زانیاری فۆڵده‌ر" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "به‌كارهێنه‌ری داتابه‌یس" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "وشه‌ی نهێنی داتا به‌یس" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "ناوی داتابه‌یس" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "هۆستی داتابه‌یس" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "چوونەدەرەوە" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index d373fd5e63..3a8e0eb38f 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" -msgstr "" +msgstr "په‌ڕگەکان" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "هاوبەشی کردن" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "هه‌ڵه" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "ناو" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "بارکردن" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "پاشکه‌وتکردن" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "بوخچه" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "داگرتن" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index bf253a766a..71292777a0 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "پاشکه‌وتده‌کات..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 39319cbb04..763ce3e955 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "به‌كارهێنه‌ر" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index f77cf5baba..72907a19e7 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" - -#: templates/public.php:21 -#, php-format -msgid "%s shared the file %s with you" -msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" - -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "داگرتن" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "بارکردن" - -#: templates/public.php:59 -msgid "Cancel upload" +msgid "shared by %s" msgstr "" -#: templates/public.php:92 -msgid "No preview available for" -msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 85e8f58d37..3033241801 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "هه‌ڵه" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "ناو" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 9c805fbc4c..898c855015 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "یارمەتی" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "ده‌ستكاری" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "به‌كارهێنه‌ر" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,77 +87,81 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" -msgstr "" +msgstr "په‌ڕگەکان" #: private/search/provider/file.php:27 private/search/provider/file.php:34 msgid "Text" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index cc492115e2..f32dcff26c 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "نهێنیکردن" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "چالاککردن" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "هه‌ڵه" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "نوێکردنه‌وه" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "پاشکه‌وتده‌کات..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "وشەی تێپەربو" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "نهێنیکردن" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "ناوی به‌کارهێنه‌ر" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 1158ecfddd..1305adc5d8 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "سه‌رکه‌وتن" msgid "Error" msgstr "هه‌ڵه" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "یارمەتی" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index b4188cede1..41d1edbd9e 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-28 01:55-0500\n" -"PO-Revision-Date: 2013-12-27 13:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "Den/D' %s huet »%s« mat dir gedeelt" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -74,135 +69,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Sonndeg" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Méindeg" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Dënschdeg" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Mëttwoch" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Donneschdeg" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Freideg" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Samschdeg" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mäerz" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Abrëll" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mee" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Dezember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Astellungen" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n Minutt hir" msgstr[1] "%n Minutten hir" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "haut" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "gëschter" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "leschte Mount" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "Méint hir" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "Joren hir" @@ -270,6 +269,26 @@ msgstr "({count} ausgewielt)" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Gedeelt" @@ -278,12 +297,12 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Feeler" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -295,123 +314,123 @@ msgstr "Feeler beim Annuléiere vum Deelen" msgid "Error while changing permissions" msgstr "Feeler beim Ännere vun de Rechter" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Gedeelt mat dir an der Grupp {group} vum {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Gedeelt mat dir vum {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Link deelen" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Passwuertgeschützt" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Passwuert" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Ëffentlechen Upload erlaaben" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Link enger Persoun mailen" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Schécken" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Verfallsdatum setzen" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Verfallsdatum" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Via E-Mail deelen:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "Grupp" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "via e-mail Bescheed ginn" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "kann änneren" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "erstellen" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "aktualiséieren" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "läschen" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "deelen" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email geschéckt" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Warnung" @@ -458,11 +477,17 @@ msgstr "Den Update war net erfollegräich. Mell dëse Problem w.e.gl derHues du séchergestallt dass deng Email respektiv msgid "You will receive a link to reset your password via Email." msgstr "Du kriss e Link fir däi Passwuert zréckzesetze via Email geschéckt." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Benotzernumm" @@ -527,7 +552,7 @@ msgstr "Perséinlech" msgid "Users" msgstr "Benotzer" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Applikatiounen" @@ -637,49 +662,47 @@ msgstr "" msgid "Create an admin account" msgstr "En Admin-Account uleeën" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avancéiert" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Daten-Dossier" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "D'Datebank konfiguréieren" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "wärt benotzt ginn" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Datebank-Benotzer" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Datebank-Passwuert" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tabelle-Plaz vun der Datebank" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Datebank-Server" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Installatioun ofschléissen" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Schléissen of ..." @@ -695,7 +718,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s ass verfügbar. Kréi méi Informatiounen doriwwer wéi d'Aktualiséierung ofleeft." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Ofmellen" @@ -721,27 +744,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Passwuert vergiess?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "verhalen" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Umellen" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternativ Umeldungen" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 0b0406f933..40414cb093 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Et ass kee Fichier ropgeluede ginn" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Dateien" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Deelen" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Ëm-benennen" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Fehler" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Numm" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Gréisst" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Geännert" @@ -301,12 +308,12 @@ msgstr "Geännert" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Eroplueden" @@ -342,69 +349,69 @@ msgstr "Maximal Gréisst fir ZIP Fichieren" msgid "Save" msgstr "Späicheren" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nei" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Text Fichier" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Dossier" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Download" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Läschen" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload ze grouss" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 62f7497545..e812e1d71d 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Speicheren..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index dfe41bc2b9..da271f5570 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Benotzer" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Läschen" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index b31690b8d6..bda126eb82 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -54,32 +58,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s huet den Dossier %s mad der gedeelt" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s deelt den Fichier %s mad dir" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Download" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Eroplueden" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Upload ofbriechen" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Keeng Preview do fir" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index dfbe45800e..647f1b6f63 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Fehler" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Numm" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Läschen" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 022fc34107..e293a8e23b 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hëllef" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Perséinlech" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Astellungen" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Benotzer" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -62,15 +62,10 @@ msgstr "Onbekannten Fichier Typ" msgid "Invalid image" msgstr "Ongülteg d'Bild" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dateien" @@ -200,7 +199,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -228,20 +227,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -269,66 +268,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "Sekonnen hir" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n Minutten hir" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "haut" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "gëschter" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "Läschte Mount" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "Läscht Joer" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "Joren hier" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index e6c9568f23..74160e0730 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.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-28 01:55-0500\n" -"PO-Revision-Date: 2013-12-27 13:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Konnt Lescht net vum App Store lueden" @@ -114,61 +156,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Ofschalten" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aschalten" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Fehler" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Update" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Speicheren..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -182,40 +252,40 @@ msgstr "réckgängeg man" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Gruppen" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Gruppen Admin" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Läschen" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Sécherheets Warnung" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Méi" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Manner" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Setz deng App bei" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Wiel eng Applikatioun aus" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -507,7 +649,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passwuert" @@ -519,151 +661,149 @@ msgstr "" msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Erstellen" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Aner" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Benotzernumm" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 3f2a7d8244..fe03047f21 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-28 01:55-0500\n" -"PO-Revision-Date: 2013-12-27 13:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Fehler" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "Hëllef" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index f01c67df45..e7f3a9346d 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -4,7 +4,7 @@ # # Translators: # Dr. ROX , 2013 -# Liudas Ališauskas , 2013 +# Liudas Ališauskas , 2013-2014 # mambuta , 2013 # Roman Deniobe , 2013 # fizikiukas , 2013 @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,12 +22,7 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s pasidalino »%s« su tavimi" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nepavyko nusiųsti el. pašto šiems naudotojams: %s " @@ -77,139 +72,143 @@ msgstr "Nėra laikino profilio paveikslėlio, bandykite dar kartą" msgid "No crop data provided" msgstr "Nenurodyti apkirpimo duomenys" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Sekmadienis" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Pirmadienis" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Antradienis" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Trečiadienis" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Penktadienis" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Šeštadienis" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Sausis" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Vasaris" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Kovas" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Balandis" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Gegužė" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Birželis" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Liepa" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Rugpjūtis" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Rugsėjis" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Spalis" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Lapkritis" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Gruodis" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " prieš %n minutę" msgstr[1] " prieš %n minučių" msgstr[2] " prieš %n minučių" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "prieš %n valandą" msgstr[1] "prieš %n valandų" msgstr[2] "prieš %n valandų" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "šiandien" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "vakar" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "prieš %n dieną" msgstr[1] "prieš %n dienas" msgstr[2] "prieš %n dienų" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "prieš %n mėnesį" msgstr[1] "prieš %n mėnesius" msgstr[2] "prieš %n mėnesių" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "praeitais metais" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "prieš metus" @@ -278,6 +277,26 @@ msgstr "({count} pažymėtų)" msgid "Error loading file exists template" msgstr "Klaida įkeliant esančių failų ruošinį" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Dalinamasi" @@ -286,12 +305,12 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Klaida" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -303,123 +322,123 @@ msgstr "Klaida, kai atšaukiamas dalijimasis" msgid "Error while changing permissions" msgstr "Klaida, keičiant privilegijas" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Pasidalino su Jumis ir {group} grupe {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Pasidalino su Jumis {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Dalintis su vartotoju arba grupe..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Dalintis nuoroda" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Slaptažodis" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Leisti viešą įkėlimą" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Nusiųsti nuorodą paštu" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Siųsti" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Nustatykite galiojimo laiką" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Galiojimo laikas" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Dalintis per el. paštą:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupė" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "pranešti el. paštu" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "sukurti" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "atnaujinti" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "ištrinti" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "dalintis" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Laiškas išsiųstas" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Įspėjimas" @@ -453,7 +472,7 @@ msgstr "Trynimui nepasirinkta jokia žymė." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Prašome perkrauti puslapį." #: js/update.js:17 msgid "" @@ -466,11 +485,17 @@ msgstr "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the Ar tikrai jūsų el paštas/vartotojo vardas buvo teisingi?" msgid "You will receive a link to reset your password via Email." msgstr "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Prisijungimo vardas" @@ -509,7 +534,7 @@ msgstr "Taip, aš tikrai noriu atnaujinti slaptažodį" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Atstatyti" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -535,7 +560,7 @@ msgstr "Asmeniniai" msgid "Users" msgstr "Vartotojai" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Programos" @@ -569,11 +594,11 @@ msgstr "Klaida šalinant žymę" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Klaida įtraukiant į mėgstamus." #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Klaida pašalinant iš mėgstamų." #: templates/403.php:12 msgid "Access forbidden" @@ -596,7 +621,7 @@ msgstr "Labas,\n\nInformuojame, kad %s pasidalino su Jumis %s.\nPažiūrėti tai #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Bendrinimo laikas baigsis %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" @@ -645,49 +670,47 @@ msgstr "Kad gauti informaciją apie tai kaip tinkamai sukonfigūruoti savo serve msgid "Create an admin account" msgstr "Sukurti administratoriaus paskyrą" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Išplėstiniai" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Baigti diegimą" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Baigiama ..." @@ -696,14 +719,14 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Šiai programai reikia įjungti JavaScript, kad ji veiktų tvarkingai. Prašome įjungti JavaScript ir perkrauti šią sąsają." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Atsijungti" @@ -729,36 +752,36 @@ msgstr "Autentikacija serveryje nepavyko!" msgid "Please contact your administrator." msgstr "Kreipkitės į savo sistemos administratorių." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Pamiršote slaptažodį?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "prisiminti" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Prisijungti" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternatyvūs prisijungimai" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Labas,

tik informuojame, kad %s pasidalino su Jumis »%s«.
Peržiūrėk!

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Ši ownCloud sistema yra vieno naudotojo veiksenoje." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Tai reiškia, kad tik administratorius gali naudotis sistema." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 5c4b37ac04..579ae511ba 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -4,15 +4,15 @@ # # Translators: # Dr. ROX , 2013 -# Liudas Ališauskas , 2013 +# Liudas Ališauskas , 2013-2014 # fizikiukas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,36 +30,48 @@ msgstr "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja" msgid "Could not move %s" msgstr "Nepavyko perkelti %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Failo pavadinimas negali būti tuščias." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Failo pavadinime negali būti simbolio \"/\". Prašome pasirinkti kitokį pavadinimą." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Pavadinimas %s jau naudojamas aplanke %s. Prašome pasirinkti kitokį pavadinimą." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Netinkamas šaltinis" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Serveriui neleidžiama atverti URL, prašome patikrinti serverio konfigūraciją" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Klaida siunčiant %s į %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Klaida kuriant failą" @@ -67,252 +79,247 @@ msgstr "Klaida kuriant failą" msgid "Folder name cannot be empty." msgstr "Aplanko pavadinimas negali būti tuščias." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Aplanko pavadinime negali būti simbolio \"/\". Prašome pasirinkti kitokį pavadinimą." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Klaida kuriant aplanką" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Nepavyksta nustatyti įkėlimų katalogo." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Netinkamas ženklas" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Įkeliamas failas yra didesnis nei leidžia upload_max_filesize php.ini faile:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE nustatymą, kuris naudojamas HTML formoje." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Neteisingas aplankas" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Failai" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nepavyksta įkelti {filename}, nes tai katalogas arba yra 0 baitų dydžio" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nepakanka vietos" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Nepavyko gauti rezultato iš serverio." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL negali būti tuščias." -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" +msgstr "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Neįmanoma sukurti failo" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Neįmanoma sukurti aplanko" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" -msgstr "" +msgstr "Klauda gaunant URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Dalintis" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Neįmanoma pervadinti failo" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Klaida trinant failą." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n aplankas" msgstr[1] "%n aplankai" msgstr[2] "%n aplankų" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n failas" msgstr[1] "%n failai" msgstr[2] "%n failų" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} ir {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Įkeliamas %n failas" msgstr[1] "Įkeliami %n failai" msgstr[2] "Įkeliama %n failų" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' yra neleidžiamas failo pavadinime." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Jūsų visa vieta serveryje užimta" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Klaida perkeliant failą" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Klaida" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Dydis" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Pakeista" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s negali būti pervadintas" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Įkelti" @@ -348,69 +355,69 @@ msgstr "Maksimalus ZIP archyvo failo dydis" msgid "Save" msgstr "Išsaugoti" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Naujas" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" -msgstr "" +msgstr "Naujas tekstinis failas" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Teksto failas" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Naujas aplankas" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Katalogas" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Iš nuorodos" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ištrinti failai" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Jūs neturite leidimo čia įkelti arba kurti failus" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Ištrinti" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index 27ef1ae134..9dfe56a42a 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -4,15 +4,15 @@ # # Translators: # Dr. ROX , 2013 -# Liudas Ališauskas , 2013 +# Liudas Ališauskas , 2013-2014 # fizikiukas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -69,7 +69,7 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Jūsų privatus raktas yra netinkamas! Panašu, kad Jūsų slaptažodis buvo pakeistas už %s (pvz. Jūsų organizacijos kataloge). Galite atnaujinti savo privataus rakto slaptažodį savo asmeniniuose nustatymuose, kad atkurti prieigą prie savo šifruotų failų." #: files/error.php:19 msgid "" @@ -83,28 +83,28 @@ msgid "" "administrator" msgstr "Neatpažinta klaida, patikrinkite sistemos nustatymus arba kreipkitės į savo sistemos aministratorių" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Trūkstami laukai." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Prašome įsitikinti, kad PHP 5.3.3 ar naujesnė yra įdiegta ir kad OpenSSL kartu su PHP plėtiniu yra šjungti ir teisingai sukonfigūruoti. Kol kas šifravimo programa bus išjungta." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Sekantys naudotojai nenustatyti šifravimui:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Pradėtas pirminis šifravimas... Tai gali užtrukti. Prašome palaukti." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Saugoma..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 1bd0e58511..79161e530c 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Min2liz \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Priėjimas suteiktas" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Klaida nustatinėjant Dropbox talpyklą" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Suteikti priėjimą" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Klaida nustatinėjant Google Drive talpyklą" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"" -#: lib/config.php:465 +#: lib/config.php:516 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 "Įspėjimas: FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. " -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Vartotojai" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Ištrinti" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Įjungti vartotojų išorines saugyklas" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Leisti vartotojams pridėti savo išorines saugyklas" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL sertifikatas" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Įkelti pagrindinį sertifikatą" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index c3e0330b89..583749e52a 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Dr. ROX \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,10 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Turinys apsaugotas slaptažodžiu" @@ -56,32 +60,16 @@ msgstr "dalinimasis yra išjungtas" msgid "For more info, please ask the person who sent this link." msgstr "Dėl tikslesnės informacijos susisiekite su asmeniu atsiuntusiu nuorodą." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s pasidalino su jumis %s aplanku" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s pasidalino su jumis %s failu" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Atsisiųsti" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Įkelti" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Atšaukti siuntimą" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Peržiūra nėra galima" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Tiesioginė nuoroda" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index f971c03d48..1c481ececb 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,44 +19,48 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nepavyko negrįžtamai ištrinti %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Nepavyko atkurti %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Klaida" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "atstatyta" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nieko nėra. Jūsų šiukšliadėžė tuščia!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Pavadinimas" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Atstatyti" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Ištrinti" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Ištrinti" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Ištrinti failai" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 6126902344..42a8b2b27f 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,38 +21,38 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Programa „%s“ negali būti įdiegta, nes yra nesuderinama su šia ownCloud versija." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Nenurodytas programos pavadinimas" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Pagalba" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Asmeniniai" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Nustatymai" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Vartotojai" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administravimas" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Nepavyko pakelti „%s“ versijos." @@ -65,15 +65,10 @@ msgstr "Nežinomas failo tipas" msgid "Invalid image" msgstr "Netinkamas paveikslėlis" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "nepavyksta atverti „%s“" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." @@ -96,74 +91,78 @@ msgid "" "administrator." msgstr "Prašome atsisiųsti failus mažesnėmis dalimis atskirai, arba mandagiai prašykite savo administratoriaus." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Nenurodytas šaltinis diegiant programą" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Nenurodytas href diegiant programą iš http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Nenurodytas kelias diegiant programą iš vietinio failo" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "%s tipo archyvai nepalaikomi" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Nepavyko atverti archyvo diegiant programą" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Programa nepateikia info.xml failo" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Programa negali būti įdiegta, nes turi neleistiną kodą" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Programa negali būti įdiegta, nes yra nesuderinama su šia ownCloud versija" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Programa negali būti įdiegta, nes turi true žymę, kuri yra neleistina ne kartu platinamoms programoms" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Programa negali būti įdiegta, nes versija pateikta info.xml/version nesutampa su versija deklaruota programų saugykloje" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Programos aplankas jau egzistuoja" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nepavyksta sukurti aplanko. Prašome pataisyti leidimus. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Programa neįjungta" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Autentikacijos klaida" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Sesija baigėsi. Prašome perkrauti puslapį." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Failai" @@ -203,8 +202,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Turite prisijungti su egzistuojančia paskyra arba su administratoriumi." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Neteisingas MySQL naudotojo vardas ir/arba slaptažodis" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -231,21 +230,21 @@ msgstr "Vykdyta komanda buvo: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL naudotojas '%s'@'localhost' jau egzistuoja." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Pašalinti šį naudotoją iš MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL naudotojas '%s'@'%%' jau egzistuoja" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Pašalinti šį naudotoją iš MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -272,70 +271,76 @@ msgstr "Nustatyti administratoriaus naudotojo vardą." msgid "Set an admin password." msgstr "Nustatyti administratoriaus slaptažodį." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsų serveris nėra tvarkingai nustatytas leisti failų sinchronizaciją, nes WebDAV sąsaja panašu, kad yra sugadinta." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nepavyko rasti kategorijos „%s“" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "prieš sekundę" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "prieš %n min." msgstr[1] "Prieš % minutes" msgstr[2] "Prieš %n minučių" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Prieš %n valandą" msgstr[1] "Prieš %n valandas" msgstr[2] "Prieš %n valandų" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "šiandien" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "vakar" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Prieš %n dieną" msgstr[1] "Prieš %n dienas" msgstr[2] "Prieš %n dienų" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "praeitą mėnesį" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Prieš %n mėnesį" msgstr[1] "Prieš %n mėnesius" msgstr[2] "Prieš %n mėnesių" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "praeitais metais" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 42738b2868..0aa04e3602 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -5,16 +5,16 @@ # Translators: # Dr. ROX , 2013 # fizikiukas , 2013 -# Liudas Ališauskas , 2013 +# Liudas Ališauskas , 2013-2014 # Liudas , 2013 # fizikiukas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +22,48 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Šifravimas" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Neįmanoma įkelti sąrašo iš Programų Katalogo" @@ -118,62 +160,90 @@ msgstr "Sistema nepalaiko slaptažodžio keitimo, bet naudotojo šifravimo rakta msgid "Unable to change password" msgstr "Nepavyksta pakeisti slaptažodžio" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Naudotojo dokumentacija" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Atnaujinti iki {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Išjungti" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Įjungti" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Prašome palaukti..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Klaida išjungiant programą" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Klaida įjungiant programą" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Atnaujinama..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Įvyko klaida atnaujinant programą" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Klaida" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Atnaujinti" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Atnaujinta" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Pažymėkite profilio paveikslėlį" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Iššifruojami failai... Prašome palaukti, tai gali užtrukti." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Saugoma..." - #: js/users.js:47 msgid "deleted" msgstr "ištrinta" @@ -186,40 +256,40 @@ msgstr "anuliuoti" msgid "Unable to remove user" msgstr "Nepavyko ištrinti vartotojo" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupės" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupės administratorius" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Ištrinti" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "pridėti grupę" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Vartotojo vardas turi būti tinkamas" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Klaida kuriant vartotoją" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Slaptažodis turi būti tinkamas" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Įspėjimas: Vartotojo \"{user}\" namų aplankas jau egzistuoja" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Kalba" @@ -241,20 +311,44 @@ msgstr "" #: templates/admin.php:12 msgid "Fatal issues only" +msgstr "Tik kritinės problemos" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Saugumo pranešimas" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -263,68 +357,68 @@ msgid "" "root." msgstr "Jūsų duomenų katalogas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess neveikia. Mes labai rekomenduojame sukonfigūruoti serverį taip, kad katalogas nebūtų daugiau pasiekiamas, arba iškelkite duomenis kitur iš webserverio šakninio aplanko." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Nustatyti perspėjimą" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsų serveris nėra tvarkingai nustatytas leisti failų sinchronizaciją, nes WebDAV sąsaja panašu, kad yra sugadinta." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Trūksta 'fileinfo' modulio" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Lokalė neveikia" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Nėra interneto ryšio" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -333,118 +427,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šis serveris neturi veikiančio ryšio. Tai reiškia, kas kai kurios funkcijos kaip išorinės saugyklos prijungimas, perspėjimai apie atnaujinimus ar trečių šalių programų įdiegimas neveikia. Failų pasiekimas iš kitur ir pranešimų siuntimas el. paštu gali taip pat neveikti. Rekomenduojame įjungti interneto ryšį šiame serveryje, jei norite naudoti visas funkcijas." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kas 15 minučių per http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kas 15 minučių." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Dalijimasis" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Įjungti Share API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Leidžia programoms naudoti Share API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Lesti nuorodas" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Leisti naudotojams viešai dalintis elementais su nuorodomis" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Leisti viešus įkėlimus" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Leisti naudotojams įgalinti kitus įkelti į savo viešai dalinamus aplankus" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Leisti dalintis" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Leisti naudotojams toliau dalintis elementais pasidalintais su jais" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Leisti naudotojams dalintis su bet kuo" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Leisti naudotojams dalintis tik su naudotojais savo grupėje" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Leisti el. pašto perspėjimą" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Reikalauti HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Verčia klientus jungtis prie %s per šifruotą ryšį." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Prašome prisijungti prie savo %s per HTTPS, kad įjungti ar išjungti SSL reikalavimą." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Daugiau" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versija" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Sukurta ownCloud bendruomenės, pirminis kodas platinamas pagal AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Pridėti programėlę" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Daugiau aplikacijų" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Pasirinkite programą" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Žiūrėti programos puslapį svetainėje apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "- autorius" -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Naudotojo dokumentacija" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Administratoriaus dokumentacija" @@ -511,7 +653,7 @@ msgstr "Rodyti pirmo karto vedlį dar kartą" msgid "You have used %s of the available %s" msgstr "Jūs naudojate %s iš galimų %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Slaptažodis" @@ -523,151 +665,149 @@ msgstr "Jūsų slaptažodis buvo pakeistas" msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "Pilnas vardas" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "El. Paštas" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilio paveikslėlis" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Įkelti naują" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Pasirinkti naują iš failų" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Pašalinti paveikslėlį" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Arba png arba jpg. Geriausia kvadratinį, bet galėsite jį apkarpyti." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "Atšaukti" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Pasirinkite profilio paveiksliuką" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Kalba" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Naudokite šį adresą, kad pasiektumėte savo failus per WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Šifravimas" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Prisijungimo slaptažodis" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Iššifruoti visus failus" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Vartotojo vardas" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Sukurti" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Administracinis atkūrimo slaptažodis" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Įveskite atkūrimo slaptažodį, kad atkurti naudotojo failus keičiant slaptažodį" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Numatytas saugojimas" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Neribota" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Kita" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Prisijungimo vardas" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Saugojimas" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "keisti pilną vardą" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "nustatyti naują slaptažodį" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Numatytasis" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 742bca400a..071ff06797 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,43 +88,43 @@ msgstr "Sėkmingai" msgid "Error" msgstr "Klaida" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Pasirinkti grupes" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Ryšio patikrinimas pavyko" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Ryšio patikrinimas nepavyko" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ar tikrai norite ištrinti dabartinę serverio konfigūraciją?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Patvirtinkite trynimą" @@ -144,11 +144,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -166,7 +166,7 @@ msgstr "Pagalba" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -202,7 +202,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -270,7 +270,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -413,41 +413,51 @@ msgstr "Grupės paieškos atributai" msgid "Group-Member association" msgstr "Grupės-Nario sąsaja" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Specialūs atributai" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kvotos laukas" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Numatyta kvota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "baitais" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "El. pašto laukas" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Naudotojo namų aplanko pavadinimo taisyklė" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Vidinis naudotojo vardas" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -463,15 +473,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Vidinis naudotojo vardo atributas:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Perrašyti UUID aptikimą" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -482,19 +492,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Naudotojo vardo - LDAP naudotojo sąsaja" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -508,10 +518,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Išvalyti naudotojo vardo - LDAP naudotojo sąsają" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 5e89b7c6e5..7b99fdf73c 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s kopīgots »%s« ar jums" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,139 +68,143 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Svētdiena" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Pirmdiena" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Otrdiena" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Trešdiena" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Ceturtdiena" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Piektdiena" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sestdiena" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Janvāris" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februāris" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Marts" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Aprīlis" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maijs" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Jūnijs" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Jūlijs" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Augusts" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Septembris" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktobris" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Novembris" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Decembris" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Tagad, %n minūtes" msgstr[1] "Pirms %n minūtes" msgstr[2] "Pirms %n minūtēm" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Šodien, %n stundas" msgstr[1] "Pirms %n stundas" msgstr[2] "Pirms %n stundām" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "šodien" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "vakar" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Šodien, %n dienas" msgstr[1] "Pirms %n dienas" msgstr[2] "Pirms %n dienām" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Šomēnes, %n mēneši" msgstr[1] "Pirms %n mēneša" msgstr[2] "Pirms %n mēnešiem" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "gadus atpakaļ" @@ -274,6 +273,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Kopīgs" @@ -282,12 +301,12 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Kļūda" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -299,123 +318,123 @@ msgstr "Kļūda, beidzot dalīties" msgid "Error while changing permissions" msgstr "Kļūda, mainot atļaujas" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} dalījās ar jums un grupu {group}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} dalījās ar jums" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Aizsargāt ar paroli" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Parole" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Ļaut publisko augšupielādi." -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Sūtīt saiti personai pa e-pastu" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Sūtīt" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Iestaties termiņa datumu" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Termiņa datums" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Dalīties, izmantojot e-pastu:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupa" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "izveidot" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "atjaunināt" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "dzēst" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "dalīties" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Vēstule nosūtīta" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Brīdinājums" @@ -462,11 +481,17 @@ msgstr "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s paroles maiņa" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Izmantojiet šo saiti, lai mainītu paroli: {link}" @@ -486,8 +511,8 @@ msgstr "Pieprasījums neizdevās!
Vai Jūs pārliecinājāties ka epasts/liet msgid "You will receive a link to reset your password via Email." msgstr "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Lietotājvārds" @@ -531,7 +556,7 @@ msgstr "Personīgi" msgid "Users" msgstr "Lietotāji" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Lietotnes" @@ -641,49 +666,47 @@ msgstr "Vairāk informācijai kā konfigurēt serveri, lūdzu skatiet admin account
" msgstr "Izveidot administratora kontu" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Paplašināti" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Konfigurēt datubāzi" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Pabeigt iestatīšanu" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -699,7 +722,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s ir pieejams. Uzziniet vairāk kā atjaunināt." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Izrakstīties" @@ -725,27 +748,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Aizmirsāt paroli?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "atcerēties" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Ierakstīties" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternatīvās pieteikšanās" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 65bec5be94..3cee7c3521 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,36 +28,48 @@ msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu" msgid "Could not move %s" msgstr "Nevarēja pārvietot %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Datnes nosaukums nevar būt tukšs." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -65,239 +77,234 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Nevar uzstādīt augšupielādes mapi." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Nepareiza pilnvara" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, datne augšupielādēta veiksmīga" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Augšupielādētā datne ir tikai daļēji augšupielādēta" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Nederīga direktorija." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Datnes" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nepietiek brīvas vietas" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Dalīties" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "aizvietoja {new_name} ar {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "atsaukt" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" msgstr[1] "%n fails" msgstr[2] "%n faili" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n" msgstr[1] "Augšupielāde %n failu" msgstr[2] "Augšupielāde %n failus" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' ir nederīgs datnes nosaukums." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhronizēt!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Kļūda" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nosaukums" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Izmērs" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Mainīts" @@ -305,12 +312,12 @@ msgstr "Mainīts" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s nevar tikt pārsaukts" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Augšupielādēt" @@ -346,69 +353,69 @@ msgstr "Maksimālais ievades izmērs ZIP datnēm" msgid "Save" msgstr "Saglabāt" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Jauna" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Teksta datne" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Jauna mape" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Mape" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "No saites" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Dzēstās datnes" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Lejupielādēt" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Dzēst" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Datne ir par lielu, lai to augšupielādētu" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index cdb1639c56..bff5224e34 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Saglabā..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index f3f1ea0a20..893a11ac47 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: stendec \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Piešķirta pieeja" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Kļūda, konfigurējot Dropbox krātuvi" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Piešķirt pieeju" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Kļūda, konfigurējot Google Drive krātuvi" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:465 +#: lib/config.php:516 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 "Brīdinājums: uz PHP nav aktivēts vai instalēts FTP atbalsts. Nevar montēt FTP koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Lietotāji" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Dzēst" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Aktivēt lietotāja ārējo krātuvi" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Ļaut lietotājiem montēt pašiem savu ārējo krātuvi" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL saknes sertifikāti" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importēt saknes sertifikātus" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 0c023d14cb..ee0b3ec518 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s ar jums dalījās ar mapi %s" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s ar jums dalījās ar datni %s" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Lejupielādēt" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Augšupielādēt" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Atcelt augšupielādi" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Nav pieejams priekšskatījums priekš" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 7d9d3b0117..6a88319cda 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nevarēja pilnībā izdzēst %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Nevarēja atjaunot %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Kļūda" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "atjaunots" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Šeit nekā nav. Jūsu miskaste ir tukša!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nosaukums" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Atjaunot" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Dzēsts" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Dzēst" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Dzēstās datnes" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 7a1a5ed242..2bf684c874 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Palīdzība" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personīgi" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Iestatījumi" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Lietotāji" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administratori" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" @@ -62,15 +62,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "Nevar atvērt \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Lietotne nav aktivēta" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Autentifikācijas kļūda" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Datnes" @@ -200,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Jums jāievada vai nu esošs vai administratora konts." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Nav derīga MySQL parole un/vai lietotājvārds" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +227,21 @@ msgstr "Vainīgā komanda bija “%s”" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL lietotājs %s'@'localhost' jau eksistē." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Izmest šo lietotāju no MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL lietotājs '%s'@'%%' jau eksistē" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Izmest šo lietotāju no MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,70 +268,76 @@ msgstr "Iestatiet administratora lietotājvārdu." msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nevarēja atrast kategoriju “%s”" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n minūtēm" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n stundām" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "šodien" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "vakar" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n dienām" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "pagājušajā mēnesī" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n mēnešiem" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "gājušajā gadā" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 009d1d8e25..4cf8292148 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.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-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Šifrēšana" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Nevar lejupielādēt sarakstu no lietotņu veikala" @@ -114,62 +156,90 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Lietotāja dokumentācija" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Atjaunināt uz {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Deaktivēt" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktivēt" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Lūdzu, uzgaidiet...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Atjaunina...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Kļūda, atjauninot lietotni" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Kļūda" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Atjaunināt" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Atšifrēju failus... Uzgaidiet tas var ilgt kādu laiku." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Saglabā..." - #: js/users.js:47 msgid "deleted" msgstr "izdzests" @@ -182,40 +252,40 @@ msgstr "atsaukt" msgid "Unable to remove user" msgstr "Nevar izņemt lietotāju" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupas" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupas administrators" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Dzēst" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "pievienot grupu" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Kļūda, veidojot lietotāju" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__valodas_nosaukums__" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Brīdinājums par drošību" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "Jūsu datu direktorija un faili visticamāk ir pieejami no interneta. .htaccess fails nedarbojas. Ir rekomendēts konfigurēt serveri tā lai jūsu datu direktorija nav lasāma vai pārvietot to ārpus tīmekļa servera dokumentu mapes." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Iestatīšanas brīdinājums" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Lūdzu kārtīgi izlasiet uzstādīšanas norādījumus." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Trūkst modulis “fileinfo”" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Lokāle nestrādā" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Interneta savienojums nedarbojas" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šim serverim nav savienojums ar internetu. Tas nozīmē ka nebūs tādas iespējas kā ārējo datu nesēju montēšana, paziņojumi par atjauninājumiem vai citu izstrādātāju programmu uzstādīšana. Attālināta failu piekļuve vai paziņojumu epastu sūtīšana iespējams arī nedarbosies. Ir rekomendēts iespējot interneta savienojumu lai gūtu iespēju izmantotu visus risinājumus." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Dalīšanās" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Aktivēt koplietošanas API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Ļauj lietotnēm izmantot koplietošanas API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Atļaut saites" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Atļaut publisko augšupielādi" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Ļaut lietotājiem iespējot atļaut citiem augšupielādēt failus viņu publiskajās mapēs" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Atļaut atkārtotu koplietošanu" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Ļaut lietotājiem dalīties ar visiem" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Ļaut lietotājiem dalīties ar lietotājiem to grupās" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Drošība" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Uzspiest klientiem pieslēgties pie %s caur šifrētu savienojumu." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Lūdzu slēdzieties pie %s caur HTTPS lai iespējotu vai atspējotu SSL izpildīšanu" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Vairāk" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versija" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "IzstrādājusiownCloud kopiena,pirmkodukurš ir licencēts zem AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Pievieno savu lietotni" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Vairāk lietotņu" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Izvēlies lietotni" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Apskati lietotņu lapu — apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licencēts no " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Lietotāja dokumentācija" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Administratora dokumentācija" @@ -507,7 +649,7 @@ msgstr "Vēlreiz rādīt pirmās palaišanas vedni" msgid "You have used %s of the available %s" msgstr "Jūs lietojat %s no pieejamajiem %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Parole" @@ -519,151 +661,149 @@ msgstr "Jūru parole tika nomainīta" msgid "Unable to change your password" msgstr "Nevar nomainīt jūsu paroli" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Jūsu e-pasta adrese" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Valoda" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Šifrēšana" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Pieslēgšanās parole" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Atšifrēt visus failus" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Ierakstīšanās vārds" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Izveidot" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Administratora atgūšanas parole" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Ievadiet atgūšanas paroli, lai varētu atgūt lietotāja failus paroles maiņas laikā." -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Noklusējuma krātuve" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Neierobežota" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Cits" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Lietotājvārds" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Krātuve" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "iestatīt jaunu paroli" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Noklusējuma" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index be178e2356..b6766b5fcd 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Kļūda" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Izvēlieties grupas" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Savienojuma tests ir veiksmīgs" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Savienojuma tests cieta neveiksmi" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vai tiešām vēlaties dzēst pašreizējo servera konfigurāciju?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Apstiprināt dzēšanu" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -164,7 +164,7 @@ msgstr "Palīdzība" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -200,7 +200,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -268,7 +268,7 @@ msgstr "Lietotājiem un grupām bāzes DN var norādīt cilnē “Paplašināti #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -411,41 +411,51 @@ msgstr "Grupu meklēšanas atribūts" msgid "Group-Member association" msgstr "Grupu piederības asociācija" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Īpašie atribūti" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kvotu lauks" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Kvotas noklusējums" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "baitos" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-pasta lauks" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Lietotāja mājas mapes nosaukšanas kārtula" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Atstāt tukšu lietotāja vārdam (noklusējuma). Citādi, norādi LDAP/AD atribūtu." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 25feb2f8a9..6bcd3de07a 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,135 +68,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Недела" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Понеделник" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Среда" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Четврток" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Петок" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Сабота" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Јануари" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Февруари" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Март" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Април" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Мај" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Јуни" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Јули" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Август" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Септември" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Октомври" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Ноември" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Декември" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Подесувања" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "денеска" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "вчера" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "минатиот месец" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "пред месеци" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "минатата година" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "пред години" @@ -269,6 +268,26 @@ msgstr "({count} одбраните)" msgid "Error loading file exists template" msgstr "Грешка при вчитување на датотеката, шаблонот постои " +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Споделен" @@ -277,12 +296,12 @@ msgstr "Споделен" msgid "Share" msgstr "Сподели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -294,123 +313,123 @@ msgstr "Грешка при прекин на споделување" msgid "Error while changing permissions" msgstr "Грешка при промена на привилегии" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Споделено со Вас и групата {group} од {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Споделено со Вас од {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Сподели ја врската" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Заштити со лозинка" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Лозинка" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Дозволи јавен аплоуд" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Прати врска по е-пошта на личност" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Прати" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Постави рок на траење" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Рок на траење" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Сподели по е-пошта:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "група" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "извести преку електронска пошта" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "може да се измени" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "креирај" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "ажурирај" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "избриши" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "сподели" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Е-порака пратена" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Предупредување" @@ -457,11 +476,17 @@ msgstr "Надградбата беше неуспешна. Ве молиме п msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Надградбата беше успешна. Веднаш ве префрлам на вашиот ownCloud." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s ресетирање на лозинката" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Користете ја следната врска да ја ресетирате Вашата лозинка: {link}" @@ -481,8 +506,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Корисничко име" @@ -526,7 +551,7 @@ msgstr "Лично" msgid "Users" msgstr "Корисници" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Аппликации" @@ -636,49 +661,47 @@ msgstr "" msgid "Create an admin account" msgstr "Направете администраторска сметка" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Напредно" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Фолдер со податоци" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Конфигурирај ја базата" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "ќе биде користено" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Корисник на база" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Табела во базата на податоци" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Сервер со база" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Заврши го подесувањето" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Завршувам ..." @@ -694,7 +717,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Одјава" @@ -720,27 +743,27 @@ msgstr "Автентификацијата на серверската стра msgid "Please contact your administrator." msgstr "Ве молиме контактирајте го вашиот администратор." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Ја заборавивте лозинката?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "запамти" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Најава" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Алтернативни најавувања" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 07ce185268..b42cab10e6 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,36 +28,48 @@ msgstr "Не можам да го преместам %s - Датотека со msgid "Could not move %s" msgstr "Не можам да ги префрлам %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Името на датотеката не може да биде празно." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Не е валиден извор" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Грешка додека преземам %s to %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Грешка при креирање на датотека" @@ -65,236 +77,231 @@ msgstr "Грешка при креирање на датотека" msgid "Folder name cannot be empty." msgstr "Името на папката не може да биде празно." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Името на папката не смее да содржи \"/\". Одберете друго име." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Грешка при креирање на папка" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Не може да се постави папката за префрлање на податоци." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Грешен токен" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Големината на датотеката ја надминува MAX_FILE_SIZE директивата која беше специфицирана во HTML формата" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Нема доволно слободен сториџ" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Погрешна папка." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Датотеки" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Немате доволно дисков простор" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Не можам да добијам резултат од серверот." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL-то не може да биде празно" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Не множам да креирам датотека" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Не можам да креирам папка" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Сподели" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Трајно избришани" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Чека" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Не можам да ја преименувам датотеката" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "врати" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' е грешно име за датотека." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Вашиот сториџ е полн, датотеките веќе не можат да се освежуваат или синхронизираат!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Вашиот сториџ е скоро полн ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Вашето преземање се подготвува. Ова може да потрае до колку датотеките се големи." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Грешка при префрлање на датотека" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Грешка" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Име" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Големина" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Променето" @@ -302,12 +309,12 @@ msgstr "Променето" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s не може да биде преименуван" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Подигни" @@ -343,69 +350,69 @@ msgstr "Максимална големина за внес на ZIP датот msgid "Save" msgstr "Сними" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Ново" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Текстуална датотека" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Папка" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Од врска" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Избришани датотеки" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Тука нема ништо. Снимете нешто!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Преземи" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Избриши" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Фајлот кој се вчитува е преголем" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Се скенираат датотеки, ве молам почекајте." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Моментално скенирам" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index d168c2f594..30acd200ab 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,18 +81,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Барања кои недостасуваат." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -100,9 +100,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Снимам..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 988ed38ebe..42a953da79 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Пристапот е дозволен" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Грешка при конфигурација на Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Дозволи пристап" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Ве молам доставите валиден Dropbox клуч и тајна лозинка." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Грешка при конфигурација на Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:516 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:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Корисници" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Избриши" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Овозможи надворешни за корисници" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Дозволи им на корисниците да монтираат свои надворешни дискови" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL root сертификати" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Увези" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index a6836f8836..9cb813f037 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s ја сподели папката %s со Вас" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s ја сподели датотеката %s со Вас" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Преземи" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Подигни" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Откажи прикачување" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Нема достапно преглед за" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 61301f454c..bc9fe3576f 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: miroj \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Не можеше трајно да се избрише %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Не можеше да се поврати %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Грешка" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "повратени" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Тука нема ништо. Вашата корпа за отпадоци е празна!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Име" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Поврати" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Избришан" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Избриши" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Избришани датотеки" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 45cc5c02cb..fca0fe3c0d 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Помош" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Лично" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Подесувања" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Корисници" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Админ" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "Непознат тип на датотека" msgid "Invalid image" msgstr "Невалидна фотографија" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Апликацијата не е овозможена" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Грешка во автентикација" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Жетонот е истечен. Ве молам превчитајте ја страницата." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Датотеки" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не можам да најдам категорија „%s“" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "пред секунди" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "денеска" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "минатиот месец" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "минатата година" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index e703aa4872..bf05699159 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.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-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Енкрипција" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Неможам да вчитам листа од App Store" @@ -114,61 +156,89 @@ msgstr "" msgid "Unable to change password" msgstr "Вашата лозинка неможе да се смени" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Корисничка документација" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Надгради на {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Оневозможи" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Овозможи" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Ве молам почекајте ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Грешка при исклучувањето на апликацијата" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Грешка при вклучувањето на апликацијата" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Надградувам ..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Грешка додека ја надградувам апликацијата" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Грешка" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Ажурирај" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Надграден" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Одбери фотографија за профилот" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Снимам..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -182,40 +252,40 @@ msgstr "врати" msgid "Unable to remove user" msgstr "Не можам да го одстранам корисникот" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Групи" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Избриши" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "додади група" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Мора да се обезбеди валидно корисничко име " -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Грешка при креирање на корисникот" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Мора да се обезбеди валидна лозинка" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Безбедносно предупредување" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Предупредување при подесување" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Локалето не функционира" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Споделување" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Овозможи го API-то за споделување" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Дозволете апликациите да го користат API-то за споделување" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Дозволи врски" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Дозволи јавен аплоуд" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Овозможи повторно споделување" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Овозможи корисниците да споделуваат со секого" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Овозможи корисниците да споделуваат со корисници од своите групи" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Овозможи известување по електронска пошта" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Записник" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Повеќе" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Помалку" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Верзија" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Развој од ownCloud заедницата, изворниот код е лиценциран соAGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Додадете ја Вашата апликација" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Повеќе аппликации" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Избери аппликација" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Види ја страницата со апликации на apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-лиценцирано од " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Корисничка документација" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Администраторска документација" @@ -507,7 +649,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "Имате искористено %s од достапните %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Лозинка" @@ -519,151 +661,149 @@ msgstr "Вашата лозинка беше променета." msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Фотографија за профил" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Префрли нова" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Одбери нова од датотеките" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Отстрани ја фотографијата" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Мора де биде png или jpg. Идеално квадрат, но ќе бидете во можност да ја исечете." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "Прекини" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Одбери фотографија за профилот" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Јазик" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Енкрипција" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Лозинка за најавување" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Дешифрирај ги сите датотеки" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Име за најава" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Создај" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Предефинирано складиште " -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Неограничено" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Останато" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Корисничко име" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Складиште" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "постави нова лозинка" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Предефиниран" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index f7687a00d8..cf26b3b08d 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Тестот за поврзување е успешен" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Тестот за поврзување не е успешен" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Потврдете го бришењето" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -163,7 +163,7 @@ msgstr "Помош" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -199,7 +199,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -267,7 +267,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -410,41 +410,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,15 +470,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -479,19 +489,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -505,10 +515,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ml/core.po b/l10n/ml/core.po new file mode 100644 index 0000000000..be4344073e --- /dev/null +++ b/l10n/ml/core.po @@ -0,0 +1,798 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:112 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:458 +msgid "Settings" +msgstr "" + +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 +msgid "seconds ago" +msgstr "" + +#: js/js.js:993 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:994 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:995 +msgid "today" +msgstr "" + +#: js/js.js:996 +msgid "yesterday" +msgstr "" + +#: js/js.js:997 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:998 +msgid "last month" +msgstr "" + +#: js/js.js:999 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1000 +msgid "months ago" +msgstr "" + +#: js/js.js:1001 +msgid "last year" +msgstr "" + +#: js/js.js:1002 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:755 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:363 +msgid "group" +msgstr "" + +#: js/share.js:335 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:379 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:401 +msgid "Unshare" +msgstr "" + +#: js/share.js:409 +msgid "notify by email" +msgstr "" + +#: js/share.js:412 +msgid "can edit" +msgstr "" + +#: js/share.js:414 +msgid "access control" +msgstr "" + +#: js/share.js:417 +msgid "create" +msgstr "" + +#: js/share.js:420 +msgid "update" +msgstr "" + +#: js/share.js:423 +msgid "delete" +msgstr "" + +#: js/share.js:426 +msgid "share" +msgstr "" + +#: js/share.js:698 +msgid "Password protected" +msgstr "" + +#: js/share.js:711 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:723 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:742 +msgid "Sending ..." +msgstr "" + +#: js/share.js:753 +msgid "Email sent" +msgstr "" + +#: js/share.js:777 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/ml/files.po b/l10n/ml/files.po new file mode 100644 index 0000000000..7a752c7674 --- /dev/null +++ b/l10n/ml/files.po @@ -0,0 +1,420 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:57 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:591 +msgid "undo" +msgstr "" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:379 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error moving file" +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error" +msgstr "" + +#: js/files.js:672 templates/index.php:68 +msgid "Name" +msgstr "" + +#: js/files.js:673 templates/index.php:80 +msgid "Size" +msgstr "" + +#: js/files.js:674 templates/index.php:82 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:111 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:23 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:6 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "New text file" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:13 +msgid "New folder" +msgstr "" + +#: templates/index.php:14 +msgid "Folder" +msgstr "" + +#: templates/index.php:17 +msgid "From link" +msgstr "" + +#: templates/index.php:41 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:52 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:57 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:74 +msgid "Download" +msgstr "" + +#: templates/index.php:85 templates/index.php:86 +msgid "Delete" +msgstr "" + +#: templates/index.php:98 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:100 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:105 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:108 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ml/files_encryption.po b/l10n/ml/files_encryption.po new file mode 100644 index 0000000000..798e7fb2e3 --- /dev/null +++ b/l10n/ml/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ml/files_external.po b/l10n/ml/files_external.po new file mode 100644 index 0000000000..e134fd3224 --- /dev/null +++ b/l10n/ml/files_external.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:516 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:519 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:155 templates/settings.php:156 +msgid "Delete" +msgstr "" + +#: templates/settings.php:127 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:147 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:165 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ml/files_sharing.po b/l10n/ml/files_sharing.po new file mode 100644 index 0000000000..1c510a7f4d --- /dev/null +++ b/l10n/ml/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/ml/files_trashbin.po b/l10n/ml/files_trashbin.po new file mode 100644 index 0000000000..789bc95d80 --- /dev/null +++ b/l10n/ml/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:852 lib/trashbin.php:854 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ml/files_versions.po b/l10n/ml/files_versions.po new file mode 100644 index 0000000000..02bd134839 --- /dev/null +++ b/l10n/ml/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-01-31 07:18+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:87 +msgid "More versions..." +msgstr "" + +#: js/versions.js:125 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:155 +msgid "Restore" +msgstr "" diff --git a/l10n/ml/lib.po b/l10n/ml/lib.po new file mode 100644 index 0000000000..47b765276d --- /dev/null +++ b/l10n/ml/lib.po @@ -0,0 +1,338 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:63 private/json.php:88 +msgid "Authentication error" +msgstr "" + +#: private/json.php:52 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:198 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:199 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:133 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:134 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "today" +msgstr "" + +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last month" +msgstr "" + +#: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "" + +#: private/template/functions.php:145 +msgid "years ago" +msgstr "" diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po new file mode 100644 index 0000000000..b77c5e0fa3 --- /dev/null +++ b/l10n/ml/settings.po @@ -0,0 +1,808 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:54 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:244 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:49 personal.php:50 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:60 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:71 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:74 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:75 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:86 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:89 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:100 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:103 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:114 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:119 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:123 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:127 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:139 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:142 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:156 +msgid "Cron" +msgstr "" + +#: templates/admin.php:163 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:171 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:179 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:184 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:190 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:191 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:198 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:199 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:207 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:208 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:216 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:217 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:224 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:234 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:242 +msgid "Security" +msgstr "" + +#: templates/admin.php:255 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:257 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:263 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 +msgid "Log" +msgstr "" + +#: templates/admin.php:358 +msgid "Log level" +msgstr "" + +#: templates/admin.php:390 +msgid "More" +msgstr "" + +#: templates/admin.php:391 +msgid "Less" +msgstr "" + +#: templates/admin.php:397 templates/personal.php:181 +msgid "Version" +msgstr "" + +#: templates/admin.php:401 templates/personal.php:184 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:37 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:43 +msgid "Current password" +msgstr "" + +#: templates/personal.php:46 +msgid "New password" +msgstr "" + +#: templates/personal.php:50 +msgid "Change password" +msgstr "" + +#: templates/personal.php:64 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:81 +msgid "Email" +msgstr "" + +#: templates/personal.php:83 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:101 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:112 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:120 templates/personal.php:121 +msgid "Language" +msgstr "" + +#: templates/personal.php:140 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:147 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:149 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:161 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:167 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:172 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/ml/user_ldap.po b/l10n/ml/user_ldap.po new file mode 100644 index 0000000000..bb825706df --- /dev/null +++ b/l10n/ml/user_ldap.po @@ -0,0 +1,523 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:963 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:44 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:45 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:46 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:46 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:52 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:53 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:54 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:55 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:56 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:59 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/ml/user_webdavauth.po b/l10n/ml/user_webdavauth.po new file mode 100644 index 0000000000..964b853618 --- /dev/null +++ b/l10n/ml/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-01-31 07:18+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 8c7b03b498..dd910ad6e7 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 03a9d3ef97..48b9d85a03 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ml_IN/files_encryption.po b/l10n/ml_IN/files_encryption.po index 18aa121c05..7d4bee7e4e 100644 --- a/l10n/ml_IN/files_encryption.po +++ b/l10n/ml_IN/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/ml_IN/files_external.po b/l10n/ml_IN/files_external.po index 1b638a2af4..289d650413 100644 --- a/l10n/ml_IN/files_external.po +++ b/l10n/ml_IN/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ml_IN/files_sharing.po b/l10n/ml_IN/files_sharing.po index e7d468e857..80de277fc2 100644 --- a/l10n/ml_IN/files_sharing.po +++ b/l10n/ml_IN/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ml_IN/files_trashbin.po b/l10n/ml_IN/files_trashbin.po index f75561f852..87bb8f5963 100644 --- a/l10n/ml_IN/files_trashbin.po +++ b/l10n/ml_IN/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index a510bace28..21021fc720 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 1858d2db23..15dbdebd2a 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ml_IN/user_ldap.po b/l10n/ml_IN/user_ldap.po index 7710c7ff54..7d109240d0 100644 --- a/l10n/ml_IN/user_ldap.po +++ b/l10n/ml_IN/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/mn/core.po b/l10n/mn/core.po new file mode 100644 index 0000000000..3f5f28b461 --- /dev/null +++ b/l10n/mn/core.po @@ -0,0 +1,798 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:112 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:458 +msgid "Settings" +msgstr "" + +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 +msgid "seconds ago" +msgstr "" + +#: js/js.js:993 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:994 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:995 +msgid "today" +msgstr "" + +#: js/js.js:996 +msgid "yesterday" +msgstr "" + +#: js/js.js:997 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:998 +msgid "last month" +msgstr "" + +#: js/js.js:999 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1000 +msgid "months ago" +msgstr "" + +#: js/js.js:1001 +msgid "last year" +msgstr "" + +#: js/js.js:1002 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:755 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:363 +msgid "group" +msgstr "" + +#: js/share.js:335 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:379 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:401 +msgid "Unshare" +msgstr "" + +#: js/share.js:409 +msgid "notify by email" +msgstr "" + +#: js/share.js:412 +msgid "can edit" +msgstr "" + +#: js/share.js:414 +msgid "access control" +msgstr "" + +#: js/share.js:417 +msgid "create" +msgstr "" + +#: js/share.js:420 +msgid "update" +msgstr "" + +#: js/share.js:423 +msgid "delete" +msgstr "" + +#: js/share.js:426 +msgid "share" +msgstr "" + +#: js/share.js:698 +msgid "Password protected" +msgstr "" + +#: js/share.js:711 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:723 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:742 +msgid "Sending ..." +msgstr "" + +#: js/share.js:753 +msgid "Email sent" +msgstr "" + +#: js/share.js:777 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/mn/files.po b/l10n/mn/files.po new file mode 100644 index 0000000000..fb8cf2278a --- /dev/null +++ b/l10n/mn/files.po @@ -0,0 +1,420 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:57 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:591 +msgid "undo" +msgstr "" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:379 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error moving file" +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error" +msgstr "" + +#: js/files.js:672 templates/index.php:68 +msgid "Name" +msgstr "" + +#: js/files.js:673 templates/index.php:80 +msgid "Size" +msgstr "" + +#: js/files.js:674 templates/index.php:82 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:111 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:23 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:6 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "New text file" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:13 +msgid "New folder" +msgstr "" + +#: templates/index.php:14 +msgid "Folder" +msgstr "" + +#: templates/index.php:17 +msgid "From link" +msgstr "" + +#: templates/index.php:41 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:52 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:57 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:74 +msgid "Download" +msgstr "" + +#: templates/index.php:85 templates/index.php:86 +msgid "Delete" +msgstr "" + +#: templates/index.php:98 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:100 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:105 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:108 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/mn/files_encryption.po b/l10n/mn/files_encryption.po new file mode 100644 index 0000000000..d9b203ee57 --- /dev/null +++ b/l10n/mn/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/mn/files_external.po b/l10n/mn/files_external.po new file mode 100644 index 0000000000..8c157a63e2 --- /dev/null +++ b/l10n/mn/files_external.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:516 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:519 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:155 templates/settings.php:156 +msgid "Delete" +msgstr "" + +#: templates/settings.php:127 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:147 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:165 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/mn/files_sharing.po b/l10n/mn/files_sharing.po new file mode 100644 index 0000000000..d7cf1613bb --- /dev/null +++ b/l10n/mn/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/mn/files_trashbin.po b/l10n/mn/files_trashbin.po new file mode 100644 index 0000000000..999826e02f --- /dev/null +++ b/l10n/mn/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:852 lib/trashbin.php:854 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/mn/files_versions.po b/l10n/mn/files_versions.po new file mode 100644 index 0000000000..2f99aee005 --- /dev/null +++ b/l10n/mn/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-02-04 07:14+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:87 +msgid "More versions..." +msgstr "" + +#: js/versions.js:125 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:155 +msgid "Restore" +msgstr "" diff --git a/l10n/mn/lib.po b/l10n/mn/lib.po new file mode 100644 index 0000000000..46cbf163ac --- /dev/null +++ b/l10n/mn/lib.po @@ -0,0 +1,338 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:63 private/json.php:88 +msgid "Authentication error" +msgstr "" + +#: private/json.php:52 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:198 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:199 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:133 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:134 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "today" +msgstr "" + +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last month" +msgstr "" + +#: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "" + +#: private/template/functions.php:145 +msgid "years ago" +msgstr "" diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po new file mode 100644 index 0000000000..e0a7822bad --- /dev/null +++ b/l10n/mn/settings.po @@ -0,0 +1,808 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:54 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:244 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:49 personal.php:50 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:60 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:71 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:74 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:75 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:86 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:89 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:100 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:103 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:114 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:119 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:123 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:127 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:139 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:142 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:156 +msgid "Cron" +msgstr "" + +#: templates/admin.php:163 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:171 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:179 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:184 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:190 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:191 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:198 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:199 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:207 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:208 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:216 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:217 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:224 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:234 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:242 +msgid "Security" +msgstr "" + +#: templates/admin.php:255 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:257 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:263 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 +msgid "Log" +msgstr "" + +#: templates/admin.php:358 +msgid "Log level" +msgstr "" + +#: templates/admin.php:390 +msgid "More" +msgstr "" + +#: templates/admin.php:391 +msgid "Less" +msgstr "" + +#: templates/admin.php:397 templates/personal.php:181 +msgid "Version" +msgstr "" + +#: templates/admin.php:401 templates/personal.php:184 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:37 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:43 +msgid "Current password" +msgstr "" + +#: templates/personal.php:46 +msgid "New password" +msgstr "" + +#: templates/personal.php:50 +msgid "Change password" +msgstr "" + +#: templates/personal.php:64 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:81 +msgid "Email" +msgstr "" + +#: templates/personal.php:83 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:101 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:112 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:120 templates/personal.php:121 +msgid "Language" +msgstr "" + +#: templates/personal.php:140 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:147 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:149 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:161 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:167 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:172 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/mn/user_ldap.po b/l10n/mn/user_ldap.po new file mode 100644 index 0000000000..b5d1295fd9 --- /dev/null +++ b/l10n/mn/user_ldap.po @@ -0,0 +1,523 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:963 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:44 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:45 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:46 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:46 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:52 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:53 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:54 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:55 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:56 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:59 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/mn/user_webdavauth.po b/l10n/mn/user_webdavauth.po new file mode 100644 index 0000000000..8b429ff599 --- /dev/null +++ b/l10n/mn/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-02-04 07:14+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 4835578aba..ea27ada20c 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Ahad" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Isnin" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Selasa" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Rabu" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Khamis" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Jumaat" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sabtu" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januari" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februari" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mac" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mei" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Jun" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Julai" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Ogos" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Disember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Tetapan" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -271,12 +290,12 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Ralat" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -288,123 +307,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Kata laluan" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Amaran" @@ -451,11 +470,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nama pengguna" @@ -520,7 +545,7 @@ msgstr "Peribadi" msgid "Users" msgstr "Pengguna" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplikasi" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "buat akaun admin" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Maju" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Setup selesai" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Log keluar" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Hilang kata laluan?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "ingat" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Log masuk" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 8186def0ca..35c736aaa1 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Fail yang dimuatnaik tidak lengkap" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Tiada fail dimuatnaik" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Direktori sementara hilang" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Fail-fail" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Kongsi" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Namakan" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Ralat" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nama" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Saiz" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Dimodifikasi" @@ -298,12 +305,12 @@ msgstr "Dimodifikasi" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Muat naik" @@ -339,69 +346,69 @@ msgstr "Saiz maksimum input untuk fail ZIP" msgid "Save" msgstr "Simpan" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Baru" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Fail teks" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Folder" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Muat turun" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Padam" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Muatnaik terlalu besar" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 6ca187b4eb..9c79c66dd3 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Simpan..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index d6f983e74f..87cb8d0504 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Pengguna" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Padam" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 6bf0ef7417..b0a17e9ba3 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Muat turun" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Muat naik" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Batal muat naik" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 3435deb106..23861a6158 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Puretech \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Tidak dapat menghapuskan %s secara kekal" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Ralat" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "dipulihkan" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Tiada apa disini. Tong sampah anda kosong!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nama" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Pulihkan" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Dihapuskan" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Padam" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Fail Dihapus" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 73ab323519..3987ff503e 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Bantuan" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Peribadi" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Tetapan" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Pengguna" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Ralat pengesahan" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fail-fail" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index cf43b411e4..a9ef4f625e 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Nyahaktif" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktif" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Ralat" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Kemaskini" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Simpan..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Kumpulan" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Padam" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "_nama_bahasa_" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Amaran keselamatan" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Tambah apps anda" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Pilih aplikasi" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Lihat halaman applikasi di apps.owncloud.com" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Kata laluan" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Gambar profil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Buat" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Lain" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nama pengguna" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 567a9d10bb..703f27af48 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Ralat" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "Bantuan" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 2b5a7020a4..2fb0032078 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "ဇန်နဝါရီ" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "ဖေဖော်ဝါရီ" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "မတ်" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "ဧပြီ" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "မေ" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "ဇွန်" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "ဇူလိုင်" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "ဩဂုတ်" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "စက်တင်ဘာ" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "အောက်တိုဘာ" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "နိုဝင်ဘာ" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "ယနေ့" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "နှစ် အရင်က" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -271,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -288,123 +307,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "စကားဝှက်" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -451,11 +470,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "အီးမေးလ်မှတစ်ဆင့် သင်၏စကားဝှက်ကို ပြန်ဖော်ရန်အတွက် Link တစ်ခုလက်ခံရရှိပါလိမ့်မယ်။" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "သုံးစွဲသူအမည်" @@ -520,7 +545,7 @@ msgstr "" msgid "Users" msgstr "သုံးစွဲသူ" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "အက်ဒမင်အကောင့်တစ်ခုဖန်တီးမည်" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "အဆင့်မြင့်" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "အချက်အလက်ဖိုလ်ဒါလ်" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Database သုံးစွဲသူ" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Database စကားဝှက်" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Database အမည်" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "သင်၏စကားဝှက်ပျောက်သွားပြီလား။" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "မှတ်မိစေသည်" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "ဝင်ရောက်ရန်" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 09849cace9..33dff51d05 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "ဖိုင်များ" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -298,12 +305,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -339,69 +346,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 5a9f5aa5ca..ee2aba0405 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 12ae346136..0d76912418 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "သုံးစွဲသူ" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index c4e553f89a..42a6c8a77b 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "ဒေါင်းလုတ်" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index dee62ffcf4..db27619e26 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 4f07303819..93cefaec22 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "အကူအညီ" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "သုံးစွဲသူ" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "အက်ဒမင်" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "ခွင့်ပြုချက်မအောင်မြင်" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ဖိုင်များ" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "ယနေ့" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "မနေ့က" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "မနှစ်က" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 7425d66c35..d0b6363967 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "လုံခြုံရေးသတိပေးချက်" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "စကားဝှက်" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "စကားဝှက်အသစ်" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "သုံးစွဲသူအမည်" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index b544104a5a..f168578c57 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "အကူအညီ" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 0260c4f4c8..8d99d6e6a8 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -4,14 +4,15 @@ # # Translators: # onionhead , 2013 +# vidaren , 2014 # Stein-Aksel Basma , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 07:10+0000\n" -"Last-Translator: onionhead \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,44 +20,39 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s delte »%s« med deg" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Klarte ikke å sende mail til følgende brukere: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Slo på vedlikeholdsmodus" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Slo av vedlikeholdsmodus" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Oppdaterte databasen" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Oppdaterer fil-cache. Dette kan ta veldig lang tid..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Oppdaterte fil-cache" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% ferdig ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Bilde eller fil ikke angitt" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -68,141 +64,145 @@ msgstr "Ugyldig bilde" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Foreløpig profilbilde ikke tilgjengelig. Prøv igjen" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Ingen beskjæringsinformasjon angitt" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Søndag" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Mandag" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Tirsdag" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Fredag" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Lørdag" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mars" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Desember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt siden" msgstr[1] "%n minutter siden" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "i dag" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "i går" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "forrige måned" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "måneder siden" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" -msgstr "forrige år" +msgstr "i fjor" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "år siden" @@ -212,7 +212,7 @@ msgstr "Velg" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Feil ved lasting av filvelger-mal: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -228,27 +228,27 @@ msgstr "Ok" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Feil ved lasting av meldingsmal: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} filkonflikt" +msgstr[1] "{count} filkonflikter" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "En filkonflikt" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Hvilke filer vil du beholde?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Hvis du velger begge versjonene vil den kopierte filen få et nummer lagt til i navnet." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -260,14 +260,34 @@ msgstr "Fortsett" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(alle valgt)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} valgt)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" +msgstr "Feil ved lasting av \"filen eksisterer\"-mal" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" msgstr "" #: js/share.js:51 js/share.js:66 js/share.js:106 @@ -278,150 +298,150 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Feil under deling" #: js/share.js:171 msgid "Error while unsharing" -msgstr "" +msgstr "Feil ved oppheving av deling" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Feil ved endring av tillatelser" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Delt med deg og gruppen {group} av {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Delt med deg av {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" -msgstr "" +msgstr "Del med bruker eller gruppe …" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "Del lenke" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Passordbeskyttet" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Passord" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" -msgstr "" - -#: js/share.js:233 -msgid "Email link to person" -msgstr "" +msgstr "Tillat Offentlig Opplasting" #: js/share.js:234 +msgid "Email link to person" +msgstr "Email lenke til person" + +#: js/share.js:235 msgid "Send" msgstr "Send" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Del på epost" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "gruppe" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" -msgstr "" +msgstr "Videredeling er ikke tillatt" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Delt i {item} med {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" -msgstr "" +msgstr "Varsle på email" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "kan endre" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "opprett" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "oppdater" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "slett" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "del" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Feil ved nullstilling av utløpsdato" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Advarsel" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "Objekttypen er ikke spesifisert." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Oppgi ny" #: js/tags.js:27 msgid "Delete" @@ -433,34 +453,40 @@ msgstr "Legg til" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Rediger merkelapper" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Feil ved lasting av dialogmal: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Ingen merkelapper valgt for sletting." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Vennligst last siden på nytt." #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Oppdateringen mislyktes. Vennligst rapporter dette problemet til ownCloud-fellesskapet." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Oppdateringen var vellykket. Du omdirigeres nå til ownCloud." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" +msgstr "%s nullstilling av passord" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." msgstr "" #: lostpassword/templates/email.php:2 @@ -472,18 +498,18 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Lenken for nullstilling av passordet ditt er sendt til din email.
Hvis du ikke mottar den innen rimelig tid, sjekk spam- og søppelmappene i epost-programmet.
Hvis den ikke er der, kontakt din lokale administrator ." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Anmodning feilet!
Forsikret du deg om at din email/brukernavn var korrekt?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." msgstr "Du burde motta detaljer om å tilbakestille passordet ditt via epost." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Brukernavn" @@ -493,15 +519,15 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Filene dine er kryptert. Hvis du ikke har aktivert gjenopprettingsnøkkelen, vil det være helt umulig å få tilbake dataene dine etter at passordet ditt er nullstilt. Hvis du er usikker på hva du skal gjøre, kontakt administratoren din før du fortsetter. Vil du virkelig fortsette?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ja, jeg vil virkelig nullstille passordet mitt nå" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Nullstill" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -527,7 +553,7 @@ msgstr "Personlig" msgid "Users" msgstr "Brukere" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apper" @@ -541,31 +567,31 @@ msgstr "Hjelp" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Feil ved lasting av merkelapper" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Merkelappen finnes allerede" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Feil ved sletting av merkelapp(er)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Feil ved merking" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Feil ved fjerning av merkelapp" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Feil ved favorittmerking" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Feil ved fjerning av favorittmerking" #: templates/403.php:12 msgid "Access forbidden" @@ -583,16 +609,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Hei der,\n\nbare informerer om at %s delte %s med deg.\nVis den: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Delingen vil opphøre %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Ha det!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -601,85 +627,83 @@ msgstr "Sikkerhetsadvarsel" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "PHP-versjonen din er sårbar for NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Vennligst oppdater PHP-installasjonen din for å bruke %s på en sikker måte." #: templates/installation.php:33 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Ingen sikker slumptallsgenerator er tilgjengelig. Vennligst aktiver PHP OpenSSL-utvidelsen." #: templates/installation.php:34 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Uten en sikker slumptallsgenerator er det mulig at en angriper kan forutse passordnullstilling-tokens og ta over kontoen din." #: templates/installation.php:40 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer." #: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "For informasjon om hvordan du setter opp serveren din riktig, se dokumentasjonen." #: templates/installation.php:48 msgid "Create an admin account" msgstr "opprett en administrator-konto" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avansert" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Fullfør oppsetting" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Ferdigstiller ..." @@ -688,14 +712,14 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Denne applikasjonen trenger JavaScript for å fungere korrekt. Vennligst aktiver JavaScript og last dette grensesnittet på nytt." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s er tilgjengelig. Få mer informasjon om hvordan du kan oppdatere." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Logg ut" @@ -715,52 +739,52 @@ msgstr "Vennligst skift passord for å gjøre kontoen din sikker igjen." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Autentisering feilet på serveren!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Vennligst kontakt administratoren din." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Mistet passordet ditt?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "husk" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Logg inn" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" -msgstr "" +msgstr "Alternative innlogginger" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Denne ownCloud-instansen er for øyeblikket i enbrukermodus." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Dette betyr at kun administratorer kan bruke instansen." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Kontakt systemadministratoren hvis denne meldingen var uventet eller ikke forsvinner." #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Takk for din tålmodighet." #: templates/update.admin.php:3 #, php-format @@ -770,8 +794,8 @@ msgstr "Oppdaterer ownCloud til versjon %s, dette kan ta en stund." #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Denne ownCloud-instansen oppdateres for øyeblikket, noe som kan ta litt tid." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Vennligst last denne siden på nytt om en liten stund for å fortsette å bruke ownCloud." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index b0f0975c6b..87cf2708f3 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -4,15 +4,16 @@ # # Translators: # Hans Nesse <>, 2013 +# vidaren , 2014 # TheLugal , 2013 # Stein-Aksel Basma , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,286 +31,293 @@ msgstr "Kan ikke flytte %s - En fil med samme navn finnes allerede" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnavn kan ikke være tomt." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format -msgid "" -"The name %s is already used in the folder %s. Please choose a different " -"name." +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:81 -msgid "Not a valid source" -msgstr "" - -#: ajax/newfile.php:86 -msgid "" -"Server is not allowed to open URLs, please check the server configuration" -msgstr "" - -#: ajax/newfile.php:103 -#, php-format -msgid "Error while downloading %s to %s" -msgstr "" - -#: ajax/newfile.php:140 -msgid "Error when creating the file" -msgstr "" - -#: ajax/newfolder.php:21 -msgid "Folder name cannot be empty." -msgstr "" - -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 -msgid "Error when creating the folder" -msgstr "" - -#: ajax/upload.php:18 ajax/upload.php:50 -msgid "Unable to set upload directory." -msgstr "Kunne ikke sette opplastingskatalog." - -#: ajax/upload.php:27 -msgid "Invalid Token" -msgstr "Ugyldig nøkkel" - -#: ajax/upload.php:64 -msgid "No file was uploaded. Unknown error" -msgstr "Ingen filer ble lastet opp. Ukjent feil." - -#: ajax/upload.php:71 -msgid "There is no error, the file uploaded with success" -msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" - -#: ajax/upload.php:72 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." - -#: ajax/upload.php:74 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Filen du prøvde å laste opp var større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet." - -#: ajax/upload.php:75 -msgid "The uploaded file was only partially uploaded" -msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" - -#: ajax/upload.php:76 -msgid "No file was uploaded" -msgstr "Ingen filer ble lastet opp" - -#: ajax/upload.php:77 -msgid "Missing a temporary folder" -msgstr "Mangler midlertidig mappe" - -#: ajax/upload.php:78 -msgid "Failed to write to disk" -msgstr "Klarte ikke å skrive til disk" - -#: ajax/upload.php:96 -msgid "Not enough storage available" -msgstr "Ikke nok lagringsplass" - -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 -msgid "Upload failed. Could not find uploaded file" -msgstr "" - -#: ajax/upload.php:172 -msgid "Invalid directory." -msgstr "Ugyldig katalog." - -#: appinfo/app.php:11 -msgid "Files" -msgstr "Filer" - -#: js/file-upload.js:228 -msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" - -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Ikke nok lagringsplass" - -#: js/file-upload.js:306 -msgid "Upload cancelled." -msgstr "Opplasting avbrutt." - -#: js/file-upload.js:344 -msgid "Could not get result from server." -msgstr "" - -#: js/file-upload.js:436 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." - -#: js/file-upload.js:523 -msgid "URL cannot be empty" -msgstr "" - -#: js/file-upload.js:527 js/filelist.js:377 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:529 js/filelist.js:379 -msgid "{new_name} already exists" -msgstr "{new_name} finnes allerede" - -#: js/file-upload.js:595 -msgid "Could not create file" -msgstr "" - -#: js/file-upload.js:611 -msgid "Could not create folder" -msgstr "" - -#: js/file-upload.js:661 -msgid "Error fetching URL" -msgstr "" - -#: js/fileactions.js:125 -msgid "Share" -msgstr "Del" - -#: js/fileactions.js:137 -msgid "Delete permanently" -msgstr "Slett permanent" - -#: js/fileactions.js:194 -msgid "Rename" -msgstr "Gi nytt navn" - -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 -msgid "Pending" -msgstr "Ventende" - -#: js/filelist.js:405 -msgid "Could not rename file" -msgstr "" - -#: js/filelist.js:539 -msgid "replaced {new_name} with {old_name}" -msgstr "erstattet {new_name} med {old_name}" - -#: js/filelist.js:539 -msgid "undo" -msgstr "angre" - -#: js/filelist.js:591 -msgid "Error deleting file." -msgstr "" - -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n mappe" -msgstr[1] "%n mapper" - -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n fil" -msgstr[1] "%n filer" - -#: js/filelist.js:617 -msgid "{dirs} and {files}" -msgstr "" - -#: js/filelist.js:828 js/filelist.js:866 -msgid "Uploading %n file" -msgid_plural "Uploading %n files" -msgstr[0] "Laster opp %n fil" -msgstr[1] "Laster opp %n filer" - -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' er et ugyldig filnavn." - -#: js/files.js:81 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: js/files.js:93 +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Navnet %s brukes allerede i mappen %s. Velg et annet navn." + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "Ikke en gyldig kilde" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Serveren har ikke lov til å åpne URL-er. Sjekk konfigurasjon av server" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Feil ved nedlasting av %s til %s" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "Feil ved oppretting av filen" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Mappenavn kan ikke være tomt." + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "Feil ved oppretting av mappen" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "Kunne ikke sette opplastingskatalog." + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "Ugyldig nøkkel" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "Ingen filer ble lastet opp. Ukjent feil." + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "Filen du prøvde å laste opp var større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet." + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "Ingen filer ble lastet opp" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "Mangler midlertidig mappe" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "Klarte ikke å skrive til disk" + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "Ikke nok lagringsplass" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "Opplasting feilet. Fant ikke opplastet fil." + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Opplasting feilet. Klarte ikke å finne informasjon om fil." + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "Ugyldig katalog." + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "Filer" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "Kan ikke laste opp {filename} fordi det er en mappe eller har 0 bytes" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "Opplasting avbrutt." + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "Fikk ikke resultat fra serveren." + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "URL kan ikke være tom" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "I hjemmemappen er 'Shared' et reservert filnavn" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "{new_name} finnes allerede" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "Klarte ikke å opprette fil" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "Klarte ikke å opprette mappe" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "Feil ved henting av URL" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "Del" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "Slett permanent" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "Gi nytt navn" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "Ventende" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "Klarte ikke å gi nytt navn til fil" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "erstattet {new_name} med {old_name}" + +#: js/filelist.js:591 +msgid "undo" +msgstr "angre" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "Feil ved sletting av fil." + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n mappe" +msgstr[1] "%n mapper" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n fil" +msgstr[1] "%n filer" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "{dirs} og {files}" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "Laster opp %n fil" +msgstr[1] "Laster opp %n filer" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkroniseres!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringsplass er nesten brukt opp ([usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "App for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og logg inn igjen." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Ugyldig privat nøkkel for Krypterings-app. Oppdater passordet for din private nøkkel i dine personlige innstillinger for å gjenopprette tilgang til de krypterte filene dine." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "Kryptering ble slått av men filene dine er fremdeles kryptert. Gå til dine personlige innstillinger for å dekryptere filene dine." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" -msgstr "" +msgstr "Feil ved flytting av fil" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Feil" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Navn" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Størrelse" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Endret" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Ulovlig mappenavn. Bruken av 'Shared' er reservert." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "Kunne ikke gi nytt navn til %s" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Last opp" @@ -345,69 +353,69 @@ msgstr "Maksimal størrelse på ZIP-filer" msgid "Save" msgstr "Lagre" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Ny" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" -msgstr "" +msgstr "Ny tekstfil" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Tekstfil" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Ny mappe" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Mappe" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Fra link" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" -msgstr "Slettet filer" +msgstr "Slettede filer" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "Du har ikke tillatelse til å laste opp eller opprette filer her" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Last ned" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Slett" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Filen er for stor" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skanner filer, vennligst vent." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 4db89c03c2..f56d81690b 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# vidaren , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,46 +20,46 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Gjenopprettingsnøkkel aktivert" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Klarte ikke å aktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen." #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Gjenopprettingsnøkkel ble deaktivert" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Klarte ikke å deaktivere gjenopprettingsnøkkel. Sjekk passordet for gjenopprettingsnøkkelen." #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Passordet ble endret." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Klarte ikke å endre passordet. Kanskje gammelt passord ikke var korrekt." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Passord for privat nøkkel ble oppdatert." #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Klarte ikke å oppdatere passord for privat nøkkel. Kanskje gammelt passord ikke var korrekt." #: files/error.php:12 msgid "" "Encryption app not initialized! Maybe the encryption app was re-enabled " "during your session. Please try to log out and log back in to initialize the" " encryption app." -msgstr "" +msgstr "Krypterings-app ikke initialisert! Kanskje krypterings-appen ble aktivert på nytt i løpet av økten din. Prøv å logge ut og logge inn igjen for å initialisere krypterings-appen." #: files/error.php:16 #, php-format @@ -66,50 +67,50 @@ msgid "" "Your private key is not valid! Likely your password was changed outside of " "%s (e.g. your corporate directory). You can update your private key password" " in your personal settings to recover access to your encrypted files." -msgstr "" +msgstr "Din private nøkkel er ikke gyldig! Sannsynligvis ble passordet ditt endret utenfor %s. (f.eks. din bedriftskatalog). Du kan oppdatere passordet for din private nøkkel i dine personlige innstillinger for å gjenvinne tilgang til de krypterte filene dine." #: files/error.php:19 msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Kan ikke dekryptere denne filen. Dette er sannsynligvis en delt fil. Spør eieren av filen om å dele den med deg på nytt." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Ukjent feil. Sjekk systeminnstillingene dine eller kontakt administratoren" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." -msgstr "" +msgstr "Manglende krav." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Vennligst se til at PHP 5.3.3 eller nyere er installert og at OpenSSL sammen med PHP-utvidelsen er aktivert og riktig konfigurert. Enn så lenge er krypterings-appen deaktivert." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Følgende brukere er ikke satt opp for kryptering:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "Første gangs kryptering startet... Dette kan ta litt tid. Vennligst vent." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Lagrer..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Gå direkte til din" #: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "personlige innstillinger" #: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" @@ -118,84 +119,84 @@ msgstr "Kryptering" #: templates/settings-admin.php:7 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Aktiver gjenopprettingsnøkkel (tillat å gjenopprette brukerfiler i tilfelle tap av passord):" #: templates/settings-admin.php:11 msgid "Recovery key password" -msgstr "" +msgstr "Passord for gjenopprettingsnøkkel" #: templates/settings-admin.php:14 msgid "Repeat Recovery key password" -msgstr "" +msgstr "Gjenta passord for gjenopprettingsnøkkel" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" -msgstr "" +msgstr "Aktiv" #: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" -msgstr "" +msgstr "Inaktiv" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Endre passord for gjenopprettingsnøkkel:" #: templates/settings-admin.php:40 msgid "Old Recovery key password" -msgstr "" +msgstr "Gammelt passord for gjenopprettingsnøkkel" #: templates/settings-admin.php:47 msgid "New Recovery key password" -msgstr "" +msgstr "Nytt passord for gjenopprettingsnøkkel" #: templates/settings-admin.php:53 msgid "Repeat New Recovery key password" -msgstr "" +msgstr "Gjenta nytt passord for gjenopprettingsnøkkel" #: templates/settings-admin.php:58 msgid "Change Password" -msgstr "" +msgstr "Endre passord" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Ditt passord for privat nøkkel stemmer ikke med påloggingspassordet ditt lenger:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Sett ditt gamle passord for privat nøkkel til ditt nåværende påloggingspassord." #: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Hvis du ikke husker det gamle passordet ditt kan du spørre administratoren om å gjenopprette filene dine." #: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Gammelt påloggingspassord" #: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Nåværende påloggingspassord" #: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "Oppdater passord for privat nøkkel" #: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Aktiver gjenoppretting av passord:" #: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Aktivering av dette valget tillater deg å gjenerobre tilgang til dine krypterte filer i tilfelle du mister passordet ditt." #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "Innstillinger for gjenoppretting av filer ble oppdatert" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "Klarte ikke å oppdatere gjenoppretting av filer" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 3e778cb6ab..91b4ca9391 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Hans Nesse <>\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Tilgang innvilget" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Feil ved konfigurering av Dropbox-lagring" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Gi tilgang" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Vær vennlig å oppgi gyldig Dropbox appnøkkel og hemmelighet." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Feil med konfigurering av Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advarsel: \"smbclient\" er ikke installert. Kan ikke montere CIFS/SMB mapper. Ta kontakt med din systemadministrator for å installere det." -#: lib/config.php:465 +#: lib/config.php:516 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 "Advarsel: FTP støtte i PHP er ikke slått på eller innstallert. Kan ikke montere FTP mapper. Ta kontakt med din systemadministrator for å innstallere det." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Brukere" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Slett" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Aktiver ekstern lagring for bruker" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Tillat brukere å koble til egne eksterne lagringsmedium" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL root-sertifikater" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importer root-sertifikat" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index cf4943e47f..a11aa6666c 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# vidaren , 2014 # Stein-Aksel Basma , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,9 +19,13 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Denne delingen er passordbeskyttet" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." @@ -32,54 +37,38 @@ msgstr "Passord" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Beklager, denne lenken ser ikke ut til å virke lenger." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Mulige årsaker:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "elementet er fjernet" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "lenken er utløpt" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "deling er deaktivert" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." +msgstr "For mer informasjon, spør personen som sendte lenken." + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" msgstr "" -#: templates/public.php:18 +#: templates/public.php:44 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s delte mappen %s med deg" +msgid "Download %s" +msgstr "" -#: templates/public.php:21 -#, php-format -msgid "%s shared the file %s with you" -msgstr "%s delte filen %s med deg" - -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Last ned" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Last opp" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Avbryt opplasting" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Forhåndsvisning ikke tilgjengelig for" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" -msgstr "" +msgstr "Direkte lenke" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 5bb60afa53..ad5af54c30 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -4,13 +4,14 @@ # # Translators: # Hans Nesse <>, 2013 +# vidaren , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +19,48 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kunne ikke slette %s fullstendig" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Kunne ikke gjenopprette %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Feil" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" -msgstr "" +msgstr "gjenopprettet" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Søppelkassen din er tom!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Navn" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Slettet" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Slett" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" -msgstr "Slettet filer" +msgstr "Slettede filer" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index b55d8702d8..52d99a921f 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# espenbye , 2014 +# vidaren , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-02-26 20:00+0000\n" +"Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +22,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Klarte ikke å tilbakeføre: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Versjoner" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Klarte ikke å tilbakeføre {file} til revisjon {timestamp}." -#: js/versions.js:79 +#: js/versions.js:87 msgid "More versions..." -msgstr "" +msgstr "Flere versjoner" -#: js/versions.js:116 +#: js/versions.js:125 msgid "No other versions available" -msgstr "" +msgstr "Det finnes ingen andre versjoner" -#: js/versions.js:149 +#: js/versions.js:155 msgid "Restore" msgstr "Gjenopprett" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 034978c5f1..cb494a0a0c 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# espenbye , 2014 +# vidaren , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 07:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +19,41 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." -msgstr "" +msgstr "App \"%s\" kan ikke installeres fordi den ikke er kompatibel med denne versjonen av ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" -msgstr "" +msgstr "Intet app-navn spesifisert" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hjelp" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personlig" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Innstillinger" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Brukere" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "Klarte ikke å oppgradere \"%s\"." #: private/avatar.php:66 msgid "Unknown filetype" @@ -61,15 +63,10 @@ msgstr "Ukjent filtype" msgid "Invalid image" msgstr "Ugyldig bilde" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "web tjenester du kontrollerer" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" @@ -90,76 +87,80 @@ msgstr "De valgte filene er for store til å kunne generere ZIP-fil" msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "Vennligst last ned filene separat i mindre deler eller spør administratoren pent." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" -msgstr "" +msgstr "Ingen kilde spesifisert ved installering av app" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" -msgstr "" +msgstr "Ingen href spesifisert ved installering av app fra http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" -msgstr "" +msgstr "Ingen sti spesifisert ved installering av app fra lokal fil" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "Arkiver av type %s støttes ikke" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" -msgstr "" +msgstr "Klarte ikke å åpne arkiv ved installering av app" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "App-en inneholder ikke filen info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" -msgstr "" +msgstr "App kan ikke installeres på grunn av ulovlig kode i appen." -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" -msgstr "" +msgstr "App kan ikke installeres fordi den ikke er kompatibel med denne versjonen av ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" -msgstr "" +msgstr "App kan ikke installeres fordi den inneholder tag true som ikke er tillatt for apper som ikke leveres med systemet" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "App kan ikke installeres fordi versjonen i info.xml/version ikke er den samme som versjonen som rapporteres fra app-butikken" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" -msgstr "" +msgstr "App-mappe finnes allerede" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "Kan ikke opprette app-mappe. Vennligst ordne opp i tillatelser. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Applikasjon er ikke påslått" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Autentikasjonsfeil" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Symbol utløpt. Vennligst last inn siden på nytt." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" @@ -175,31 +176,31 @@ msgstr "Bilder" #: private/setup/abstractdatabase.php:26 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s legg inn brukernavn for databasen." #: private/setup/abstractdatabase.php:29 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s legg inn navnet på databasen." #: private/setup/abstractdatabase.php:32 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s du kan ikke bruke punktum i databasenavnet" #: private/setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL-brukernavn og/eller passord ikke gyldig: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 #: private/setup/oci.php:114 private/setup/postgresql.php:24 #: private/setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Du må legge inn enten en eksisterende konto eller administratoren." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -212,7 +213,7 @@ msgstr "" #: private/setup/postgresql.php:125 private/setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "Databasefeil: \"%s\"" #: private/setup/mysql.php:68 private/setup/oci.php:55 #: private/setup/oci.php:122 private/setup/oci.php:145 @@ -223,111 +224,117 @@ msgstr "" #: private/setup/postgresql.php:126 private/setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Kommandoen som feilet: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Klarte ikke å etablere forbindelse til Oracle" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Oracle-brukernavn og/eller passord er ikke gyldig" #: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Kommando som feilet: \"%s\", navn: %s, passord: %s" #: private/setup/postgresql.php:23 private/setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL-brukernavn og/eller passord er ikke gyldig" #: private/setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "Sett et admin-brukernavn." #: private/setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "Sett et admin-passord." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Vennligst dobbelsjekk installasjonsguiden." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunne ikke finne kategori \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekunder siden" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutter siden" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timer siden" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "i dag" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dager siden" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "forrige måned" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n dager siden" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "forrige år" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 39604e80dc..8ca6031e56 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# espenbye , 2014 # Hans Nesse <>, 2013 +# vidaren , 2014 # Stein-Aksel Basma , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +21,48 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Kryptering" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Lasting av liste fra App Store feilet." @@ -30,11 +74,11 @@ msgstr "Autentiseringsfeil" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Ditt fulle navn er blitt endret." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Klarte ikke å endre fullt navn" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -88,88 +132,116 @@ msgstr "Kunne ikke oppdatere app." #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "Feil passord" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "Ingen bruker angitt" #: changepassword/controller.php:74 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" -msgstr "" +msgstr "Vennligst oppgi et administrativt gjenopprettingspassord. Ellers vil alle brukerdata gå tapt" #: changepassword/controller.php:79 msgid "" "Wrong admin recovery password. Please check the password and try again." -msgstr "" +msgstr "Feil administrativt gjenopprettingspassord. Sjekk passordet og prøv igjen." #: changepassword/controller.php:87 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." -msgstr "" +msgstr "Serveren støtter ikke endring av passord, men oppdatering av brukerens krypteringsnøkkel var vellykket." #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" +msgstr "Kunne ikke endre passord" + +#: js/admin.js:73 +msgid "Sending..." msgstr "" -#: js/apps.js:43 +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Brukerdokumentasjon" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Oppdater til {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Slå avBehandle " -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktiver" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Vennligst vent..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" -msgstr "" +msgstr "Deaktivering av app feilet" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" -msgstr "" +msgstr "Aktivering av app feilet" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Oppdaterer..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Feil ved oppdatering av app" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Feil" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Oppdater" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" +msgstr "Velg et profilbilde" + +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:266 +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" - -#: js/personal.js:287 -msgid "Saving..." -msgstr "Lagrer..." +msgstr "Dekrypterer filer... Vennligst vent, dette kan ta litt tid." #: js/users.js:47 msgid "deleted" @@ -183,265 +255,333 @@ msgstr "angre" msgid "Unable to remove user" msgstr "Kunne ikke slette bruker" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupper" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Gruppeadministrator" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Slett" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "legg til gruppe" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Oppgi et gyldig brukernavn" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Feil ved oppretting av bruker" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Advarsel: Hjemmemappe for bruker \"{user}\" eksisterer allerede" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "Alt (fatale problemer, feil, advarsler, info, debug)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "Info, advarsler, feil og fatale problemer" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "Advarsler, feil og fatale problemer" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "Feil og fatale problemer" #: templates/admin.php:12 msgid "Fatal issues only" +msgstr "Kun fatale problemer" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Du aksesserer %s via HTTP. Vi anbefaler på det sterkeste at du konfigurerer serveren til å kreve bruk av HTTPS i stedet." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " "configure your webserver in a way that the data directory is no longer " "accessible or you move the data directory outside the webserver document " "root." -msgstr "" +msgstr "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer. Vi anbefaler på det sterkeste at du konfigurerer web-serveren din slik at datamappen ikke lenger er tilgjengelig eller at du flytter datamappen ut av web-serverens dokument-rotmappe." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Installasjonsadvarsel" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Vennligst dobbeltsjekk installasjonsveilederne." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Modulen 'fileinfo' mangler" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Din PHP-versjon er udatert" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "PHP-versjonen din er utdatert. Vi anbefaler på det sterkeste at du oppdaterer til 5.3.8 eller nyere fordi eldre versjoner ikke vil virke. Det er mulig at denne installasjoner ikke fungerer korrekt." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Språk virker ikke" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "Kan ikke sette systemets nasjonale innstillinger til en som støtter UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Dette betyr at det kan forekomme problemer med visse tegn i filnavn." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Vi anbefaler på det sterkeste å installere pakkene som er nødvendig for at systemet skal støtte en av følgende nasjonale innstillinger: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Ingen internettilkopling" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " "installation of 3rd party apps don´t work. Accessing files from remote and " "sending of notification emails might also not work. We suggest to enable " "internet connection for this server if you want to have all features." -msgstr "" +msgstr "Denne serveren har ikke en fungerende Internett-tilkobling. Dette betyr at noen av funksjonene, slik som montering av ekstern lagring, påminnelser om oppdatering eller installering av 3-parts apper ikke fungerer. Fjerntilgang til filer og utsending av påminnelser i e-post virker kanskje ikke heller. Vi anbefaler at Internett-forbindelsen for denne serveren aktiveres hvis du vil ha full funksjonalitet." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." -msgstr "" +msgstr "cron.php er registrert i en webcron-tjeneste for å kalle cron.php hvert 15. minutt over http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "Bruk systemets cron-tjeneste for å kalle cron.php hvert 15. minutt." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Aktiver API for Deling" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Tillat apps å bruke API for Deling" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Tillat lenker" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" -msgstr "Tillat brukere å dele filer med lenker" +msgstr "Tillat brukere å dele filer offentlig med lenker" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" -msgstr "" +msgstr "Tillat offentlig opplasting" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Tillat at brukere lar andre laste opp til deres offentlig delte mapper" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "TIllat videredeling" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Tillat brukere å dele filer som allerede har blitt delt med dem" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Tillat brukere å dele med alle" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" -msgstr "" +msgstr "Tillat påminnelser i e-post" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "Tillat at brukere sender epost-påminnelser for delte filer" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Tvinger klientene til å koble til %s via en kryptert forbindelse." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." +msgstr "Vennligst koble til din %s via HTTPS for å aktivere eller deaktivere tvungen SSL." + +#: templates/admin.php:275 +msgid "Email Server" msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Logg" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mer" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Mindre" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versjon" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Utviklet avownCloud sammfunnet, kildekoden er lisensiert under AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Legg til din App" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Flere Apps" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Velg en app" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Se applikasjonens side på apps.owncloud.org" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-lisensiert av " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Brukerdokumentasjon" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Administratordokumentasjon" @@ -508,7 +652,7 @@ msgstr "Vis \"Førstegangs veiveiseren\" på nytt" msgid "You have used %s of the available %s" msgstr "Du har brukt %s av tilgjengelig %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passord" @@ -520,151 +664,149 @@ msgstr "Passord har blitt endret" msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "Fullt navn" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Epost" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Oppi epostadressen du vil tilbakestille passordet for" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilbilde" -#: templates/personal.php:91 -msgid "Upload new" -msgstr "" - -#: templates/personal.php:93 -msgid "Select new from Files" -msgstr "" - -#: templates/personal.php:94 -msgid "Remove image" -msgstr "" - -#: templates/personal.php:95 -msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "" - -#: templates/personal.php:97 -msgid "Your avatar is provided by your original account." -msgstr "" - #: templates/personal.php:101 -msgid "Abort" +msgid "Upload new" +msgstr "Last opp nytt" + +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "Velg nytt fra Filer" + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "Fjern bilde" + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "Enten png eller jpg. Helst kvadratisk men du kan beskjære det." + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "Avataren din kommer fra din opprinnelige konto." + +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" -msgstr "" +msgstr "Velg som profilbilde" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Språk" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "" +msgstr "Bruk denne adressen for å aksessere filene dine via WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Kryptering" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "Krypterings-appen er ikke aktiv lenger. Vennligst dekrypter alle filene dine" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" -msgstr "" +msgstr "Innloggingspassord" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" -msgstr "" +msgstr "Dekrypter alle filer" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Logginn navn" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Opprett" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" -msgstr "" +msgstr "Administrativt gjenopprettingspassord" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Legg inn gjenopprettingspassordet for å gjenopprette brukerfilene når passordet endres" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Standard lager" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "Legg inn lagringskvote (f.eks. \"512 MB\" eller \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ubegrenset" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Annet" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Brukernavn" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Lager" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "endre fullt navn" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "sett nytt passord" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Standard" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index ca55fe72a9..70a6b7d036 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# vidaren , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 07:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Klarte ikke å nullstille tilknytningene." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" @@ -39,24 +40,24 @@ msgstr "Konfigurasjonen er i orden, men Bind mislyktes. Vennligst sjekk tjener-k msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "Konfigurasjonen er ikke gyldig. Sjekk loggene for flere detaljer." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "Ingen handling spesifisert" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "Ingen konfigurasjon spesifisert" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "Ingen data spesifisert" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "Klarte ikke å sette konfigurasjon %s" #: js/settings.js:67 msgid "Deletion failed" @@ -76,7 +77,7 @@ msgstr "Kan ikke legge til tjener-konfigurasjon" #: js/settings.js:127 msgid "mappings cleared" -msgstr "" +msgstr "tilknytninger nullstilt" #: js/settings.js:128 msgid "Success" @@ -86,43 +87,43 @@ msgstr "Suksess" msgid "Error" msgstr "Feil" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" -msgstr "" +msgstr "Konfigurasjon OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" -msgstr "" +msgstr "Konfigurasjon feil" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" -msgstr "" +msgstr "Konfigurasjon ufullstendig" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Velg grupper" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" -msgstr "" +msgstr "Velg objektklasser" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" -msgstr "" +msgstr "Velg attributter" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Tilkoblingstest lyktes" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Tilkoblingstest mislyktes" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Er du sikker på at du vil slette aktiv tjener-konfigurasjon?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Bekreft sletting" @@ -130,23 +131,23 @@ msgstr "Bekreft sletting" #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s gruppe funnet" +msgstr[1] "%s grupper funnet" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s bruker funnet" +msgstr[1] "%s brukere funnet" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" -msgstr "" +msgstr "Ugyldig tjener" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" -msgstr "" +msgstr "Fant ikke den ønskede funksjonaliteten" #: templates/part.settingcontrols.php:2 msgid "Save" @@ -154,7 +155,7 @@ msgstr "Lagre" #: templates/part.settingcontrols.php:4 msgid "Test Configuration" -msgstr "" +msgstr "Test konfigurasjonen" #: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 msgid "Help" @@ -162,63 +163,63 @@ msgstr "Hjelp" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "kun de objektklassene:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "kun fra de gruppene:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Rediger ubearbeidet filter i stedet" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Ubearbeidet LDAP-filter" #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "Filteret spesifiserer hvilke LDAP-grupper som skal ha tilgang til %s-instansen." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "grupper funnet" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "LDAP-brukernavn:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "LDAP-epostadresse:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Andre attributter:" #: templates/part.wizard-loginfilter.php:38 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Definerer filteret som skal brukes når innlogging forsøkes. %%uid erstatter brukernavnet i innloggingshandlingen. Eksempel: \"uid=%%uid\"" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" @@ -266,18 +267,18 @@ msgstr "Du kan spesifisere Base DN for brukere og grupper under Avansert fanen" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" +msgstr "Filteret spesifiserer hvilke LDAP-brukere som skal ha tilgang til %s-instansen." #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "brukere funnet" #: templates/part.wizardcontrols.php:5 msgid "Back" @@ -292,7 +293,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Advarsel: Appene user_ldap og user_webdavauth er ikke kompatible med hverandre. Uventet oppførsel kan forekomme. Be systemadministratoren om å deaktivere en av dem." #: templates/settings.php:14 msgid "" @@ -302,7 +303,7 @@ msgstr "Warning: PHP LDAP modulen er ikke installert, hjelperen vil ikke #: templates/settings.php:20 msgid "Connection Settings" -msgstr "" +msgstr "Innstillinger for tilkobling" #: templates/settings.php:22 msgid "Configuration Active" @@ -320,19 +321,19 @@ msgstr "Sikkerhetskopierings (Replica) vert" msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Oppgi en valgfri reservetjener. Den må være en replika av hovedtjeneren for LDAP/AD." #: templates/settings.php:24 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Reserve (Replika) Port" #: templates/settings.php:25 msgid "Disable Main Server" -msgstr "" +msgstr "Deaktiver hovedtjeneren" #: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "Koble til bare replika-tjeneren." #: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" @@ -347,11 +348,11 @@ msgstr "Slå av SSL-sertifikat validering" msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "Ikke anbefalt, bruk kun for testing! Hvis tilkobling bare virker med dette valget, importer LDAP-tjenerens SSL-sertifikat i %s-serveren din." #: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Levetid i mellomlager" #: templates/settings.php:28 msgid "in seconds. A change empties the cache." @@ -359,7 +360,7 @@ msgstr "i sekunder. En endring tømmer bufferen." #: templates/settings.php:30 msgid "Directory Settings" -msgstr "" +msgstr "Innstillinger for Katalog" #: templates/settings.php:32 msgid "User Display Name Field" @@ -367,7 +368,7 @@ msgstr "Vis brukerens navnfelt" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "LDAP-attributten som skal brukes til å generere brukerens visningsnavn." #: templates/settings.php:33 msgid "Base User Tree" @@ -379,11 +380,11 @@ msgstr "En Bruker Base DN pr. linje" #: templates/settings.php:34 msgid "User Search Attributes" -msgstr "" +msgstr "Attributter for brukersøk" #: templates/settings.php:34 templates/settings.php:37 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Valgfritt, en attributt pr. linje" #: templates/settings.php:35 msgid "Group Display Name Field" @@ -391,7 +392,7 @@ msgstr "Vis gruppens navnfelt" #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "LDAP-attributten som skal brukes til å generere gruppens visningsnavn." #: templates/settings.php:36 msgid "Base Group Tree" @@ -403,47 +404,57 @@ msgstr "En gruppe hoved-DN pr. linje" #: templates/settings.php:37 msgid "Group Search Attributes" -msgstr "" +msgstr "Attributter for gruppesøk" #: templates/settings.php:38 msgid "Group-Member association" msgstr "gruppe-medlem assosiasjon" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" -msgstr "" +msgstr "Spesielle attributter" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" -msgstr "" +msgstr "Felt med lagringskvote" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" -msgstr "" +msgstr "Standard lagringskvote" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" -msgstr "" +msgstr "Felt med e-postadresse" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Navneregel for brukers hjemmemappe" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "La stå tom for brukernavn (standard). Ellers, spesifiser en LDAP/AD attributt." -#: templates/settings.php:51 -msgid "Internal Username" -msgstr "" - #: templates/settings.php:52 +msgid "Internal Username" +msgstr "Internt brukernavn" + +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,17 +468,17 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" - -#: templates/settings.php:53 -msgid "Internal Username Attribute:" -msgstr "" +msgstr "Som standard vil det interne brukernavnet bli laget utifra UUID-attributten. Dette sikrer at brukernavnet er unikt og at det ikke er nødvendig å konvertere tegn. Det interne brukernavnet har den begrensningen at bare disse tegnene er tillatt: [ a-zA-Z0-9_.@- ]. Andre tegn erstattes av tilsvarende ASCII-tegn eller blir ganske enkelt utelatt. Ved kollisjon blir et nummer lagt til / øket. Det interne brukernavnet brukes til å identifisere en bruker internt. Det er også standardnavnet på brukerens hjemmemappe. Det er også med i fjern-URL-er, for eksempel for alle *DAV-tjenester. Med denne innstillingen kan standard oppførsel overstyres. For å få en oppførsel som likner oppførselen før ownCloud 5, legg inn attributten for brukerens visningsnavn i dette feltet. La feltet stå tomt for standard oppførsel. Endringer vil kun påvirke nylig tilknyttede (opprettede) LDAP-brukere." #: templates/settings.php:54 -msgid "Override UUID detection" -msgstr "" +msgid "Internal Username Attribute:" +msgstr "Attributt for internt brukernavn:" #: templates/settings.php:55 +msgid "Override UUID detection" +msgstr "Overstyr UUID-oppdaging" + +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,21 +487,21 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" - -#: templates/settings.php:56 -msgid "UUID Attribute for Users:" -msgstr "" +msgstr "Som standard blir UUID-attributten oppdaget automatisk. UUID-attributten brukes til å identifisere LDAP-brukere og -grupper uten tvil. Det interne brukernavnet vil også bli laget basert på UUID, hvis ikke annet er spesifisert ovenfor. Du kan overstyre innstillingen og oppgi den attributten du ønsker. Du må forsikre det om at din valgte attributt kan hentes ut både for brukere og for grupper og at den er unik. La stå tomt for standard oppførsel. Endringer vil kun påvirke nylig tilknyttede (opprettede) LDAP-brukere og -grupper." #: templates/settings.php:57 -msgid "UUID Attribute for Groups:" -msgstr "" +msgid "UUID Attribute for Users:" +msgstr "UUID-attributt for brukere:" #: templates/settings.php:58 -msgid "Username-LDAP User Mapping" -msgstr "" +msgid "UUID Attribute for Groups:" +msgstr "UUID-attributt for grupper:" #: templates/settings.php:59 +msgid "Username-LDAP User Mapping" +msgstr "Tilknytning av brukernavn til LDAP-bruker" + +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,12 +513,12 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "" +msgstr "Brukernavn brukes til å lagre og tilordne (meta)data. For at brukere skal identifiseres og gjenkjennes presist, vil hver LDAP-bruker ha et internt brukernavn. Dette krever en tilknytning fra brukernavn til LDAP-bruker. Brukernavn som opprettes blir knyttet til LDAP-brukerens UUID. I tillegg mellomlagres DN for å redusere LDAP-kommunikasjon, men det brukes ikke til identifisering. Hvis DN endres vil endringene bli oppdaget. Det interne brukernavnet brukes alle steder. Nullstilling av tilknytningene vil etterlate seg rester overalt. Nullstilling av tilknytningene skjer ikke pr. konfigurasjon, det påvirker alle LDAP-konfigurasjoner! Nullstill aldri tilknytningene i et produksjonsmiljø, kun ved testing eller eksperimentering." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Nullstill tilknytning av brukernavn til LDAP-bruker" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Nullstill tilknytning av gruppenavn til LDAP-gruppe" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index 8be4a5ee62..3524341ab8 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/user_webdavauth.po @@ -5,13 +5,14 @@ # Translators: # espenbye , 2013 # espenbye , 2012 +# vidaren , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-25 19:18-0400\n" -"PO-Revision-Date: 2013-08-24 14:10+0000\n" -"Last-Translator: espenbye \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-02 23:20+0000\n" +"Last-Translator: vidaren \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV-autentisering" #: templates/settings.php:4 msgid "Address: " @@ -32,4 +33,4 @@ msgid "" "The user credentials will be sent to this address. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "Brukerens påloggingsinformasjon vil bli sendt til denne adressen. Denne utvidelsen sjekker svaret og vil tolke HTTP-statuskodene 401 og 403 som ugyldig bruker eller passord, og alle andre svar tolkes som gyldig påloggings." diff --git a/l10n/nds/core.po b/l10n/nds/core.po index 14b1f47bfb..714f763aa8 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/nds/files.po b/l10n/nds/files.po index 0923a19e99..0a2a0f0ee4 100644 --- a/l10n/nds/files.po +++ b/l10n/nds/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/nds/files_encryption.po b/l10n/nds/files_encryption.po index 868191ccce..defa439e7a 100644 --- a/l10n/nds/files_encryption.po +++ b/l10n/nds/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/nds/files_external.po b/l10n/nds/files_external.po index ed547a97cc..0cbcb8aaa1 100644 --- a/l10n/nds/files_external.po +++ b/l10n/nds/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-24 10:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:457 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:460 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/nds/files_sharing.po b/l10n/nds/files_sharing.po index 4b81b2ed05..9db95efcab 100644 --- a/l10n/nds/files_sharing.po +++ b/l10n/nds/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-24 10:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/nds/files_trashbin.po b/l10n/nds/files_trashbin.po index 3118b3b06d..2ec4379ecc 100644 --- a/l10n/nds/files_trashbin.po +++ b/l10n/nds/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-27 02:28-0400\n" -"PO-Revision-Date: 2013-10-24 10:48+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index 8fe55cbf50..f44dacaa1c 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index a24c4c4aca..9488a9d7d0 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/nds/user_ldap.po b/l10n/nds/user_ldap.po index 9bb61ef276..66bc16b25d 100644 --- a/l10n/nds/user_ldap.po +++ b/l10n/nds/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 5fe329f3e9..ad4938a5f7 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 0d44c7750f..28691ff9ae 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index 334bc328e2..79efb4cb4b 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index 7e7ed0e396..f42bf8b71d 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 2d9ef07ffd..d363ca3ea7 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index d733415ed4..b964888914 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index bc3849b95d..92e6df5e03 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index e0f8135708..2c5d190ca7 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 90edbef2af..8d19c156bd 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 54f27a40f2..714f067ee5 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,12 +20,7 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s deelde »%s« met jou" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Kon geen e-mail sturen aan de volgende gebruikers: %s" @@ -75,135 +70,139 @@ msgstr "Geen tijdelijke profielafbeelding beschikbaar. Probeer het opnieuw" msgid "No crop data provided" msgstr "Geen bijsnijdingsgegevens opgegeven" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "zondag" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "maandag" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "dinsdag" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "woensdag" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "donderdag" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "vrijdag" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "zaterdag" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "januari" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "februari" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "maart" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "april" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "mei" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "augustus" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "september" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "november" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "december" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Instellingen" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "vandaag" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "gisteren" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "vorige maand" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "vorig jaar" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "jaar geleden" @@ -271,6 +270,26 @@ msgstr "({count} geselecteerd)" msgid "Error loading file exists template" msgstr "Fout bij laden bestand bestaat al sjabloon" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Gedeeld" @@ -279,12 +298,12 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -296,123 +315,123 @@ msgstr "Fout tijdens het stoppen met delen" msgid "Error while changing permissions" msgstr "Fout tijdens het veranderen van permissies" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Gedeeld met u en de groep {group} door {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Gedeeld met u door {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Delen met gebruiker of groep ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Deel link" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Wachtwoord beveiligd" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Wachtwoord" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Sta publieke uploads toe" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "E-mail link naar persoon" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Versturen" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Stel vervaldatum in" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Vervaldatum" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Deel via e-mail:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "groep" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "melden per e-mail" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "creëer" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "bijwerken" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "verwijderen" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "deel" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-mail verzonden" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Waarschuwing" @@ -459,11 +478,17 @@ msgstr "De update is niet geslaagd. Meld dit probleem aan bij de Weet je zeker dat je gebruikersnaam en/of wachtwoor msgid "You will receive a link to reset your password via Email." msgstr "Je ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Gebruikersnaam" @@ -528,7 +553,7 @@ msgstr "Persoonlijk" msgid "Users" msgstr "Gebruikers" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -638,49 +663,47 @@ msgstr "Bekijk de documentatie voor Informa msgid "Create an admin account" msgstr "Maak een beheerdersaccount aan" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Geavanceerd" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configureer de database" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Databaseserver" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Installatie afronden" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Afronden ..." @@ -696,7 +719,7 @@ msgstr "Deze applicatie heeft een werkend JavaScript nodig.
just letting you know that %s shared »%s« with you.
View it!

" -msgstr "Hallo daar,

even een berichtje dat %s »%s« met u deelde.
Bekijk hier!

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index bd5ede5659..cf4e05a6f6 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-23 08:30+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,36 +29,48 @@ msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" msgid "Could not move %s" msgstr "Kon %s niet verplaatsen" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Bestandsnaam kan niet leeg zijn." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "De bestandsnaam mag geen \"/\" bevatten. Kies een andere naam." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "De naam %s bestaat al in map %s. Kies een andere naam." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Geen geldige bron" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server mag geen URS's openen, controleer de server configuratie" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fout bij downloaden %s naar %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Fout bij creëren bestand" @@ -66,236 +78,231 @@ msgstr "Fout bij creëren bestand" msgid "Folder name cannot be empty." msgstr "Mapnaam mag niet leeg zijn." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "De mapnaam mag geen \"/\" bevatten. Kies een andere naam." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Fout bij aanmaken map" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Kan upload map niet instellen." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Ongeldig Token" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "De upload van het bestand is goedgegaan." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het bestand overschrijdt de MAX_FILE_SIZE instelling dat is opgegeven in het HTML formulier" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Upload mislukt. Kon ge-uploade bestand niet vinden" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Ongeldige directory." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Bestanden" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kan {filename} niet uploaden omdat het een map is of 0 bytes groot is" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Niet genoeg ruimte beschikbaar" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Kon het resultaat van de server niet terugkrijgen." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL mag niet leeg zijn" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Kon bestand niet creëren" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Kon niet creëren map" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Fout bij ophalen URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Delen" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Fout bij verwijderen bestand." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" msgstr[1] "%n bestanden aan het uploaden" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' is een ongeldige bestandsnaam." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Crypto app is geactiveerd, maar uw sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ongeldige privésleutel voor crypto app. Werk het privésleutel wachtwoord bij in uw persoonlijke instellingen om opnieuw toegang te krijgen tot uw versleutelde bestanden." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Fout bij verplaatsen bestand" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Fout" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Naam" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Grootte" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Aangepast" @@ -303,12 +310,12 @@ msgstr "Aangepast" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s kon niet worden hernoemd" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Uploaden" @@ -344,69 +351,69 @@ msgstr "Maximale grootte voor ZIP bestanden" msgid "Save" msgstr "Bewaren" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nieuw" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nieuw tekstbestand" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Tekstbestand" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nieuwe map" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Map" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Vanaf link" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Verwijderde bestanden" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "U hebt geen toestemming om hier te uploaden of bestanden te maken" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Downloaden" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Verwijder" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload is te groot" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index ed6bb180e8..a29c17f9a3 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 19:00+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,18 +82,18 @@ msgid "" "administrator" msgstr "Onbekende fout, Controleer uw systeeminstellingen of neem contact op met uw systeembeheerder" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Missende benodigdheden." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "De volgende gebruikers hebben geen configuratie voor encryptie:" @@ -101,9 +101,9 @@ msgstr "De volgende gebruikers hebben geen configuratie voor encryptie:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "initiële versleuteling gestart... Dit kan even duren, geduld a.u.b." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Opslaan" +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 539642335b..b9b8e2dff4 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Toegang toegestaan" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Fout tijdens het configureren van Dropbox opslag" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Sta toegang toe" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Geef een geldige Dropbox key en secret." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Fout tijdens het configureren van Google Drive opslag" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." -#: lib/config.php:465 +#: lib/config.php:516 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 "Waarschuwing: FTP ondersteuning in PHP is niet geactiveerd of geïnstalleerd. Mounten van FTP shares is niet mogelijk. Vraag uw beheerder FTP ondersteuning te installeren." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Gebruikers" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Verwijder" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Externe opslag voor gebruikers activeren" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Sta gebruikers toe om hun eigen externe opslag aan te koppelen" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL root certificaten" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importeer root certificaat" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index ee7cf51429..8607a12c3b 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,10 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Deze share is met een wachtwoord beveiligd" @@ -55,32 +59,16 @@ msgstr "delen is uitgeschakeld" msgid "For more info, please ask the person who sent this link." msgstr "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s deelt de map %s met u" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s deelt het bestand %s met u" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Downloaden" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Uploaden" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Upload afbreken" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Geen voorbeeldweergave beschikbaar voor" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Directe link" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index cd643d87f3..c718c3e00d 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kon %s niet permanent verwijderen" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Kon %s niet herstellen" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Fout" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "hersteld" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Niets te vinden. Uw prullenbak is leeg!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Naam" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Herstellen" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Verwijderd" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Verwijder" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Verwijderde bestanden" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 91ff5c3487..342783e3c1 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,38 +20,38 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "App \"%s\" kan niet worden geïnstalleerd omdat die niet compatible is met deze versie van ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "De app naam is niet gespecificeerd." -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Help" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Persoonlijk" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Instellingen" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Gebruikers" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Beheerder" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." @@ -64,15 +64,10 @@ msgstr "Onbekend bestandsformaat" msgid "Invalid image" msgstr "Ongeldige afbeelding" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "Kon \"%s\" niet openen" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." @@ -95,74 +90,78 @@ msgid "" "administrator." msgstr "Download de bestanden afzonderlijk in kleinere porties of vraag het uw beheerder," -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Geen bron opgegeven bij installatie van de app" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Geen href opgegeven bij installeren van de app vanaf http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Geen pad opgegeven bij installeren van de app vanaf een lokaal bestand" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Archiefbestanden van type %s niet ondersteund" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Kon archiefbestand bij installatie van de app niet openen" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "De app heeft geen info.xml bestand" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "De app kan niet worden geïnstalleerd wegens onjuiste code in de app" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "De app kan niet worden geïnstalleerd omdat die niet compatible is met deze versie van ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "De app kan niet worden geïnstallerd omdat het de true tag bevat die niet is toegestaan voor niet gepubliceerde apps" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "De app kan niet worden geïnstalleerd omdat de versie in info.xml/version niet dezelfde is als de versie zoals die in de app store staat vermeld" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "App directory bestaat al" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan de app map niet aanmaken, Herstel de permissies. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "De applicatie is niet actief" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Authenticatie fout" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token verlopen. Herlaad de pagina." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Bestanden" @@ -202,8 +201,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Geef of een bestaand account op of het beheerdersaccount." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL gebruikersnaam en/of wachtwoord ongeldig" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -230,21 +229,21 @@ msgstr "Onjuiste commande was: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL gebruiker '%s'@'localhost' bestaat al." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Verwijder deze gebruiker uit MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL gebruiker '%s'@'%%' bestaat al" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Verwijder deze gebruiker uit MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -271,66 +270,72 @@ msgstr "Stel de gebruikersnaam van de beheerder in." msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Controleer de installatiehandleiding goed." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kon categorie \"%s\" niet vinden" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "seconden geleden" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuut geleden" msgstr[1] "%n minuten geleden" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n uur geleden" msgstr[1] "%n uur geleden" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "vandaag" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "gisteren" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag terug" msgstr[1] "%n dagen geleden" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "vorige maand" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n maand geleden" msgstr[1] "%n maanden geleden" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "vorig jaar" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 7ad4e32806..76c66c3973 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2013 +# André Koot , 2013-2014 # helonaut, 2013 # kwillems , 2013 # Len , 2013 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-06 07:40+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,48 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Versleuteling" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Kan de lijst niet van de App store laden" @@ -117,62 +159,90 @@ msgstr "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleute msgid "Unable to change password" msgstr "Kan wachtwoord niet wijzigen" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Gebruikersdocumentatie" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Bijwerken naar {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Uitschakelen" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Activeer" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Even geduld aub...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Fout tijdens het uitzetten van het programma" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Fout tijdens het aanzetten van het programma" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Bijwerken...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Fout bij bijwerken app" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Fout" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Bijwerken" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Kies een profielafbeelding" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Opslaan" - #: js/users.js:47 msgid "deleted" msgstr "verwijderd" @@ -185,40 +255,40 @@ msgstr "ongedaan maken" msgid "Unable to remove user" msgstr "Kon gebruiker niet verwijderen" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Groepen" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Groep beheerder" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Verwijder" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "toevoegen groep" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Fout bij aanmaken gebruiker" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Waarschuwing: Home directory voor gebruiker \"{user}\" bestaat al" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Nederlands" @@ -242,18 +312,42 @@ msgstr "Fouten en fatale problemen" msgid "Fatal issues only" msgstr "Alleen fatale problemen" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Beveiligingswaarschuwing" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "U bent met %s verbonden over HTTP. We adviseren met klem uw server zo te configureren dat allen HTTPS kan worden gebruikt." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -262,68 +356,68 @@ msgid "" "root." msgstr "Uw data folder en uw bestanden zijn waarschijnlijk vanaf het internet bereikbaar. Het .htaccess-bestand werkt niet. We raden ten zeerste aan aan om uw webserver zodanig te configureren, dat de datamap niet bereikbaar is vanaf het internet of om uw datamap te verplaatsen naar een locatie buiten de document root van de webserver." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Instellingswaarschuwing" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Conntroleer de installatie handleiding goed." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' ontbreekt" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Uw PHP versie is verouderd" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Uw PHP versie is verouderd. We adviseren met klem om bij te werken naar versie 5.3.8 of later, omdat oudere versies corrupt kunnen zijn. Het is mogelijk dat deze installatie niet goed werkt." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Taalbestand werkt niet" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "De systeemtaal kan niet worden ingesteld op een taal die UTF-8 ondersteunt." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Internet verbinding werkt niet" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -332,118 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Deze server heeft geen actieve internetverbinding. Dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internetverbinding voor deze server in te schakelen als u alle functies wilt gebruiken." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Sta publieke uploads toe" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Toestaan e-mailnotificaties" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Meer" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Minder" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versie" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "App toevoegen" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Meer apps" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Selecteer een app" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Zie de applicatiepagina op apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-Gelicenseerd door " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Gebruikersdocumentatie" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Beheerdersdocumentatie" @@ -510,7 +652,7 @@ msgstr "Toon de Eerste start Wizard opnieuw" msgid "You have used %s of the available %s" msgstr "Je hebt %s gebruikt van de beschikbare %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Wachtwoord" @@ -522,151 +664,149 @@ msgstr "Je wachtwoord is veranderd" msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nieuw" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Volledige naam" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Vul een mailadres in om je wachtwoord te kunnen herstellen" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profielafbeelding" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Upload een nieuwe" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Selecteer een nieuwe vanuit bestanden" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Verwijder afbeelding" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Of png, of jpg. Bij voorkeur vierkant, maar u kunt bijsnijden." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Uw avatar is verstrekt door uw originele account." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Afbreken" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Kies als profielafbeelding" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Taal" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Gebruik deze link om uw bestanden via WebDAV te benaderen" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Versleuteling" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "De crypto app is niet langer geactiveerd, u moet alle bestanden decrypten." -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Inlog-wachtwoord" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Decodeer alle bestanden" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Inlognaam" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" -msgstr "Creëer" +msgstr "Aanmaken" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Beheer herstel wachtwoord" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen bij wachtwoordwijziging" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Standaard Opslaglimiet" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ongelimiteerd" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Anders" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Gebruikersnaam" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Opslaglimiet" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "wijzigen volledige naam" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "Instellen nieuw wachtwoord" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Standaard" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 563da00c9a..367f19be2d 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,43 +89,43 @@ msgstr "Succes" msgid "Error" msgstr "Fout" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Configuratie OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Configuratie onjuist" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Configuratie incompleet" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Selecteer groepen" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Selecteer objectklasse" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Selecteer attributen" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Verbindingstest geslaagd" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Verbindingstest mislukt" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Wilt u werkelijk de huidige Serverconfiguratie verwijderen?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Bevestig verwijderen" @@ -143,11 +143,11 @@ msgid_plural "%s users found" msgstr[0] "%s gebruiker gevonden" msgstr[1] "%s gebruikers gevonden" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Ongeldige server" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Kon de gewenste functie niet vinden" @@ -165,8 +165,8 @@ msgstr "Help" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Beperk toegang tot %s tot groepen die voldoen aan deze criteria:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -201,8 +201,8 @@ msgid "groups found" msgstr "groepen gevonden" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Welk attribuut moet worden gebruikt als inlognaam:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -269,8 +269,8 @@ msgstr "Je kunt het Base DN voor gebruikers en groepen specificeren in het tab G #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Beperk toegang tot %s tot gebruikers die voldoen aan deze criteria:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -412,41 +412,51 @@ msgstr "Attributen voor groepszoekopdrachten" msgid "Group-Member association" msgstr "Groepslid associatie" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Speciale attributen" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Quota veld" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Quota standaard" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "in bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-mailveld" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Gebruikers Home map naamgevingsregel" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Laat leeg voor de gebruikersnaam (standaard). Of, specificeer een LDAP/AD attribuut." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Interne gebruikersnaam" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -462,15 +472,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Standaard wordt de interne gebruikersnaam aangemaakt op basis van het UUID attribuut. Het zorgt ervoor dat de gebruikersnaam uniek is en dat tekens niet hoeven te worden geconverteerd. De interne gebruikersnaam heeft als beperking dat alleen deze tekens zijn toegestaan​​: [a-zA-Z0-9_.@- ]. Andere tekens worden vervangen door hun ASCII vertaling of gewoonweg weggelaten. Bij identieke namen wordt een nummer toegevoegd of verhoogd. De interne gebruikersnaam wordt gebruikt om een ​​gebruiker binnen het systeem te herkennen. Het is ook de standaardnaam voor de standaardmap van de gebruiker in ownCloud. Het is ook een vertaling voor externe URL's, bijvoorbeeld voor alle *DAV diensten. Met deze instelling kan het standaardgedrag worden overschreven. Om een soortgelijk gedrag te bereiken als van vóór ownCloud 5, voer het gebruikersweergavenaam attribuut in in het volgende veld. Laat het leeg voor standaard gedrag. Veranderingen worden alleen toegepast op gekoppelde (toegevoegde) LDAP-gebruikers." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Interne gebruikersnaam attribuut:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Negeren UUID detectie" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -481,19 +491,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Standaard herkent ownCloud het UUID-attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij deze hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw gekoppelde (toegevoegde) LDAP-gebruikers en-groepen." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID attribuut voor gebruikers:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID attribuut voor groepen:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -507,10 +517,10 @@ msgid "" "experimental stage." msgstr "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de ownCloud gebruikersnaam aan een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne naam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Leegmaken Groepsnaam-LDAP groep vertaling" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 0364a320a6..0737a74120 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,12 +20,7 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s delte «%s» med deg" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -75,135 +70,139 @@ msgstr "Inga midlertidig profilbilete tilgjengeleg, prøv igjen" msgid "No crop data provided" msgstr "Ingen beskjeringsdata gitt" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Søndag" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Måndag" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Tysdag" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Fredag" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Laurdag" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mars" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Desember" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt sidan" msgstr[1] "%n minutt sidan" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time sidan" msgstr[1] "%n timar sidan" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "i dag" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "i går" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sidan" msgstr[1] "%n dagar sidan" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "førre månad" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sidan" msgstr[1] "%n månadar sidan" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "i fjor" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "år sidan" @@ -271,6 +270,26 @@ msgstr "({count} valte)" msgid "Error loading file exists template" msgstr "Klarte ikkje å lasta fil-finst-mal" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Delt" @@ -279,12 +298,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Feil ved deling" @@ -296,123 +315,123 @@ msgstr "Feil ved udeling" msgid "Error while changing permissions" msgstr "Feil ved endring av tillatingar" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Delt med deg og gruppa {group} av {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Delt med deg av {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Passordvern" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Passord" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Tillat offentleg opplasting" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Send lenkja over e-post" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Send" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Del over e-post:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "gruppe" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Udel" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "kan endra" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "lag" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "oppdater" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "slett" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "del" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Åtvaring" @@ -459,11 +478,17 @@ msgstr "Oppdateringa feila. Ver venleg og rapporter feilen til Er du viss på at du skreiv inn rett e-post/bru msgid "You will receive a link to reset your password via Email." msgstr "Du vil få ein e-post med ei lenkje for å nullstilla passordet." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Brukarnamn" @@ -528,7 +553,7 @@ msgstr "Personleg" msgid "Users" msgstr "Brukarar" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Program" @@ -638,49 +663,47 @@ msgstr "Ver venleg og les dokumentasjonen f msgid "Create an admin account" msgstr "Lag ein admin-konto" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avansert" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Set opp databasen" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "vil verta nytta" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tabellnamnrom for database" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Fullfør oppsettet" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -696,7 +719,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s er tilgjengeleg. Få meir informasjon om korleis du oppdaterer." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Logg ut" @@ -722,27 +745,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Gløymt passordet?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "hugs" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Logg inn" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternative innloggingar" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 08a93b7fab..714cc584ff 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,36 +30,48 @@ msgstr "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet" msgid "Could not move %s" msgstr "Klarte ikkje flytta %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnamnet kan ikkje vera tomt." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -67,236 +79,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Klarte ikkje å endra opplastingsmappa." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Ugyldig token" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: " -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Feil ved opplasting. Klarte ikkje å finna opplasta fil." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Ugyldig mappe." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Filer" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Klarte ikkje å lasta opp {filename} sidan det er ei mappe eller er 0 byte." -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Ikkje nok lagringsplass tilgjengeleg" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Opplasting avbroten." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Klarte ikkje å henta resultat frå tenaren." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbroten." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Del" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "bytte ut {new_name} med {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "angre" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lastar opp %n fil" msgstr[1] "Lastar opp %n filer" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "«.» er eit ugyldig filnamn." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringa di er nesten full ({usedSpacePercent} %)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Feil ved flytting av fil" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Feil" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Namn" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Storleik" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Endra" @@ -304,12 +311,12 @@ msgstr "Endra" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "Klarte ikkje å omdøypa på %s" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Last opp" @@ -345,69 +352,69 @@ msgstr "Maksimal storleik for ZIP-filer" msgid "Save" msgstr "Lagre" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Ny" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Tekst fil" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Mappe" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Frå lenkje" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Sletta filer" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Last ned" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Slett" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "For stor opplasting" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skannar filer, ver venleg og vent." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Køyrande skanning" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 63a65fd989..cba4f8cebb 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Lagrar …" +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 85acba6f70..6fe360ef9e 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Brukarar" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Slett" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 78a8e15a2b..b08d590046 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -54,32 +58,16 @@ msgstr "deling er slått av" msgid "For more info, please ask the person who sent this link." msgstr "Spør den som sende deg lenkje om du vil ha meir informasjon." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s delte mappa %s med deg" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s delte fila %s med deg" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Last ned" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Last opp" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Avbryt opplasting" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Inga førehandsvising tilgjengeleg for" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 618246702e..2558d7a528 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,44 +19,48 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Klarte ikkje sletta %s for godt" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Klarte ikkje gjenoppretta %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Feil" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "gjenoppretta" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting her. Papirkorga di er tom!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Namn" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Gjenopprett" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Sletta" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Slett" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Sletta filer" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index ec60d2c173..2ab71d7f5b 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,38 +19,38 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hjelp" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personleg" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Innstillingar" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Brukarar" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administrer" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -63,15 +63,10 @@ msgstr "Ukjend filtype" msgid "Invalid image" msgstr "Ugyldig bilete" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -94,74 +89,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Feil i autentisering" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" @@ -201,7 +200,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -229,20 +228,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -270,66 +269,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekund sidan" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutt sidan" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timar sidan" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "i dag" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagar sidan" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "førre månad" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n månadar sidan" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "i fjor" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index c97bf982e4..e13d7d4e97 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,48 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Kryptering" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Klarer ikkje å lasta inn liste fra app-butikken" @@ -116,62 +158,90 @@ msgstr "Bakstykket støttar ikkje passordendring, men krypteringsnøkkelen til b msgid "Unable to change password" msgstr "Klarte ikkje å endra passordet" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Brukardokumentasjon" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Oppdater til {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Slå av" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Slå på" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Ver venleg og vent …" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Klarte ikkje å skru av programmet" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Klarte ikkje å skru på programmet" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Oppdaterer …" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Feil ved oppdatering av app" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Feil" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Oppdater" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Oppdatert" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Vel eit profilbilete" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterer filer … Ver venleg og vent, dette kan ta ei stund." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Lagrar …" - #: js/users.js:47 msgid "deleted" msgstr "sletta" @@ -184,40 +254,40 @@ msgstr "angra" msgid "Unable to remove user" msgstr "Klarte ikkje fjerna brukaren" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupper" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Gruppestyrar" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Slett" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "legg til gruppe" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Du må oppgje eit gyldig brukarnamn" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Feil ved oppretting av brukar" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Nynorsk" @@ -241,18 +311,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Tryggleiksåtvaring" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -261,68 +355,68 @@ msgid "" "root." msgstr "Datamappa og filene dine er sannsynlegvis leselege frå nettet. Fila .htaccess fungerer ikkje. Me rår deg sterkt til å konfigurera vevtenaren din sånn at datamappa di ikkje lenger er tilgjengeleg; alternativt kan du flytta datamappa ut av dokumentrot til vevtenaren." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Oppsettsåtvaring" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Modulen «fileinfo» manglar" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Regionaldata fungerer ikkje" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Nettilkoplinga fungerer ikkje" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -331,118 +425,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne tenaren har ikkje ei fungerande nettilkopling. Dette vil seia at visse funksjonar, som montering av ekstern lagring, meldingar om oppdateringar eller installering av tredjepartsprogram, ikkje vil fungera. Det kan òg henda at du ikkje får tilgang til filene dine utanfrå, eller ikkje får sendt varslingsepostar. Me rår deg til å skru på nettilkoplinga for denne tenaren viss du ønskjer desse funksjonane." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Utfør éi oppgåve for kvar sidelasting" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Slå på API-et for deling" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "La app-ar bruka API-et til deling" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Tillat lenkjer" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "La brukarar dela ting offentleg med lenkjer" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Tillat offentlege opplastingar" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "La brukarar tillata andre å lasta opp i deira offentleg delte mapper" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Tillat vidaredeling" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "La brukarar vidaredela delte ting" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "La brukarar dela med kven som helst" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klientar til å kopla til %s med ei kryptert tilkopling." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Ver venleg å kopla til %s med HTTPS (eller skru av SSL-kravet)." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Logg" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Meir" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Mindre" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Kjeldekoden, utvikla av ownCloud-fellesskapet, er lisensiert under AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Legg til din app" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Fleire app-ar" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Vel eit program" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Sjå programsida på apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "Lisensiert under av " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Brukardokumentasjon" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Administratordokumentasjon" @@ -509,7 +651,7 @@ msgstr "Vis Oppstartvegvisaren igjen" msgid "You have used %s of the available %s" msgstr "Du har brukt %s av dine tilgjengelege %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Passord" @@ -521,151 +663,149 @@ msgstr "Passordet ditt er endra" msgid "Unable to change your password" msgstr "Klarte ikkje endra passordet" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Passord" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-post" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Di epost-adresse" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Fyll inn e-postadressa di for å gjera passordgjenoppretting mogleg" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilbilete" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Last opp ny" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Vel ny frå Filer" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Fjern bilete" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Anten PNG eller JPG. Helst kvadratisk, men du får moglegheita til å beskjera det." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "Avbryt" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Vel som profilbilete" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Språk" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Hjelp oss å omsetja" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Kryptering" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Innloggingspassord" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Dekrypter alle filene" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Innloggingsnamn" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Lag" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Gjenopprettingspassord for administrator" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Skriv inn gjenopprettingspassordet brukt for å gjenoppretta brukarfilene ved passordendring" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Standardlagring" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ubegrensa" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Anna" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Brukarnamn" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Lagring" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "lag nytt passord" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Standard" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 354e05bee4..480d38d38d 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Feil" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Vel grupper" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "Hjelp" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index 4007dd3247..90bae6db34 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -271,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -288,123 +307,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -451,11 +470,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -520,7 +545,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index 779270d084..0941d90690 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -298,12 +305,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -339,69 +346,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/nqo/files_encryption.po b/l10n/nqo/files_encryption.po index 0094acd72f..f8d0e13d32 100644 --- a/l10n/nqo/files_encryption.po +++ b/l10n/nqo/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/nqo/files_external.po b/l10n/nqo/files_external.po index bb48f60af6..144a1d0bff 100644 --- a/l10n/nqo/files_external.po +++ b/l10n/nqo/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-09-07 04:40-0400\n" -"PO-Revision-Date: 2013-09-07 07:28+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:453 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:457 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:460 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/nqo/files_sharing.po b/l10n/nqo/files_sharing.po index 7d6dbe42c6..c1f02996c6 100644 --- a/l10n/nqo/files_sharing.po +++ b/l10n/nqo/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/nqo/files_trashbin.po b/l10n/nqo/files_trashbin.po index 69ea00584d..bd77f4c205 100644 --- a/l10n/nqo/files_trashbin.po +++ b/l10n/nqo/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index 2ee237736f..27ffc71bf3 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index 20ff083d4c..4ea4dab8d4 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/nqo/user_ldap.po b/l10n/nqo/user_ldap.po index a042730684..19a0957268 100644 --- a/l10n/nqo/user_ldap.po +++ b/l10n/nqo/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 7ace16d573..86b0457dcd 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Dimenge" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Diluns" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Dimarç" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Dimecres" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Dijòus" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Divendres" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Dissabte" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "genièr" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "febrièr" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "març" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "abril" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "junh" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "julhet" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "agost" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "septembre" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "octobre" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Novembre" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Decembre" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Configuracion" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "uèi" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ièr" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "mes passat" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "meses a" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "an passat" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "ans a" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Error al partejar" @@ -293,123 +312,123 @@ msgstr "Error al non partejar" msgid "Error while changing permissions" msgstr "Error al cambiar permissions" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Senhal" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Met la data d'expiracion" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Data d'expiracion" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Parteja tras corrièl :" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grop" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "crea" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "met a jorn" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "escafa" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "parteja" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Utiliza lo ligam seguent per tornar botar lo senhal : {link}" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Reçaupràs un ligam per tornar botar ton senhal via corrièl." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Non d'usancièr" @@ -525,7 +550,7 @@ msgstr "Personal" msgid "Users" msgstr "Usancièrs" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Apps" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "Crea un compte admin" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avançat" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "serà utilizat" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Configuracion acabada" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Sortida" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "L'as perdut lo senhal ?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "bremba-te" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Dintrada" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 2fd5757cfc..b7d6846e34 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Fichièrs" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Parteja" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "defar" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Error" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nom" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Talha" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificat" @@ -301,12 +308,12 @@ msgstr "Modificat" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Amontcarga" @@ -342,69 +349,69 @@ msgstr "Talha maximum de dintrada per fichièrs ZIP" msgid "Save" msgstr "Enregistra" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nòu" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Fichièr de tèxte" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Dorsièr" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Escafa" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Amontcargament tròp gròs" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index c71d7b93c3..75356e1c04 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Enregistra..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 853318c6d5..827bfb5aa7 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Usancièrs" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Escafa" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 985ee59546..436924037b 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Avalcarga" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Amontcarga" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr " Anulla l'amontcargar" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index d1ca842a14..fd7ff1be9e 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Error" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nom" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Escafa" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 3fa8719bf9..a753c84793 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Ajuda" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Configuracion" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Usancièrs" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Services web jos ton contraròtle" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Error d'autentificacion" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fichièrs" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "segonda a" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "uèi" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ièr" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "mes passat" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "an passat" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index d14a580b73..6cd79045cb 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Pas possible de cargar la tièra dempuèi App Store" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Desactiva" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Activa" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Error" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Enregistra..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "defar" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grops" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grop Admin" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Escafa" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Avertiment de securitat" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Executa un prètfach amb cada pagina cargada" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Al partejar" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Activa API partejada" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Jornal" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Ajusta ton App" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Selecciona una applicacion" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Agacha la pagina d'applications en cò de apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licençiat per " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "" @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Senhal" @@ -518,151 +660,149 @@ msgstr "Ton senhal a cambiat" msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Lenga" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Crea" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Autres" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Non d'usancièr" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 58d4c7ffba..40d6de703c 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Error" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "Ajuda" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index d84cad3d41..86d3ab5d96 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,135 +68,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "ਐਤਵਾਰ" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "ਸੋਮਵਾਰ" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "ਮੰਗਲਵਾਰ" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "ਬੁੱਧਵਾਰ" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "ਵੀਰਵਾਰ" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "ਸ਼ੁੱਕਰਵਾਰ" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "ਸ਼ਨਿੱਚਰਵਾਰ" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "ਜਨਵਰੀ" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "ਫਰਵਰੀ" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "ਮਾਰਚ" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "ਅਪਰੈ" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "ਮਈ" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "ਜੂਨ" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "ਜੁਲਾਈ" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "ਅਗਸਤ" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "ਸਤੰਬ" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "ਅਕਤੂਬਰ" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "ਨਵੰਬ" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "ਅੱਜ" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "ਮਹੀਨੇ ਪਹਿਲਾਂ" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" @@ -269,6 +268,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -277,12 +296,12 @@ msgstr "" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "ਗਲ" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -294,123 +313,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "ਪਾਸਵਰ" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "ਭੇਜੋ" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "ਚੇਤਾਵਨੀ" @@ -457,11 +476,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -481,8 +506,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "ਯੂਜ਼ਰ-ਨਾਂ" @@ -526,7 +551,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -636,49 +661,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -694,7 +717,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -720,27 +743,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/pa/files.po b/l10n/pa/files.po index 5c76d7fda4..edfe9d88b1 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "ਫਾਇਲਾਂ" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "ਨਾਂ ਬਦਲੋ" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "ਵਾਪਸ" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "ਗਲਤੀ" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "ਅੱਪਲੋਡ" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "ਡਾਊਨਲੋਡ" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "ਹਟਾਓ" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/pa/files_encryption.po b/l10n/pa/files_encryption.po index 5b6b7d1300..078a3d3183 100644 --- a/l10n/pa/files_encryption.po +++ b/l10n/pa/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/pa/files_external.po b/l10n/pa/files_external.po index 2c798ff134..f72e18ae57 100644 --- a/l10n/pa/files_external.po +++ b/l10n/pa/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "ਹਟਾਓ" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/pa/files_sharing.po b/l10n/pa/files_sharing.po index 3648d32e6a..93261c71ce 100644 --- a/l10n/pa/files_sharing.po +++ b/l10n/pa/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "ਡਾਊਨਲੋਡ" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "ਅੱਪਲੋਡ" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/pa/files_trashbin.po b/l10n/pa/files_trashbin.po index 40900fcf33..386cfeb464 100644 --- a/l10n/pa/files_trashbin.po +++ b/l10n/pa/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "ਗਲਤੀ" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "ਹਟਾਓ" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index a5ae066958..3977deb38b 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ਫਾਇਲਾਂ" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "ਅੱਜ" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 20706ef03d..1fe41d1f7f 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.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-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -114,61 +156,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "ਬੰਦ" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "ਚਾਲੂ" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "...ਉਡੀਕੋ ਜੀ" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "...ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "ਗਲਤੀ" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "ਅੱਪਡੇਟ ਕੀਤਾ" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -182,40 +252,40 @@ msgstr "ਵਾਪਸ" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "ਗਰੁੱਪ" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "ਗਰੁੱਪ ਐਡਮਿਨ" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "ਹਟਾਓ" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "ਗਰੁੱਪ ਸ਼ਾਮਲ" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__ਭਾਸ਼ਾ_ਨਾਂ__" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "ਸੁਰੱਖਿਆ ਚੇਤਾਵਨੀ" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "ਸੈਟਅੱਪ ਚੇਤਾਵਨੀ" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -507,7 +649,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "ਪਾਸਵਰ" @@ -519,151 +661,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "ਪਾਸਵਰਡ ਬਦਲੋ" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "ਯੂਜ਼ਰ-ਨਾਂ" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/pa/user_ldap.po b/l10n/pa/user_ldap.po index 57a5f5729e..1baf1bc601 100644 --- a/l10n/pa/user_ldap.po +++ b/l10n/pa/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "ਗਲਤੀ" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 3bc8355954..963d76feb1 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -20,12 +20,7 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s Współdzielone »%s« z tobą" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nie można było wysłać wiadomości do następujących użytkowników: %s" @@ -75,139 +70,143 @@ msgstr "Brak obrazka profilu tymczasowego, spróbuj ponownie" msgid "No crop data provided" msgstr "Brak danych do przycięcia" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Niedziela" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Poniedziałek" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Wtorek" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Środa" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Czwartek" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Piątek" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sobota" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Styczeń" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Luty" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Marzec" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Kwiecień" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maj" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Czerwiec" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Lipiec" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Sierpień" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Wrzesień" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Październik" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Listopad" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Grudzień" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "dziś" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "lat temu" @@ -276,6 +275,26 @@ msgstr "({count} zaznaczonych)" msgid "Error loading file exists template" msgstr "Błąd podczas ładowania szablonu istniejącego pliku" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Udostępniono" @@ -284,12 +303,12 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Błąd" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -301,123 +320,123 @@ msgstr "Błąd podczas zatrzymywania współdzielenia" msgid "Error while changing permissions" msgstr "Błąd przy zmianie uprawnień" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Udostępnione tobie i grupie {group} przez {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Udostępnione tobie przez {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Współdziel z użytkownikiem lub grupą ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Udostępnij link" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Zabezpiecz hasłem" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Hasło" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Pozwól na publiczne wczytywanie" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Wyślij osobie odnośnik poprzez e-mail" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Wyślij" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Ustaw datę wygaśnięcia" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Współdziel poprzez e-mail:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupa" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "powiadom przez emaila" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "może edytować" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "utwórz" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "uaktualnij" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "usuń" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "współdziel" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-mail wysłany" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Ostrzeżenie" @@ -464,11 +483,17 @@ msgstr "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem Czy Twój email/nazwa użytkownika są p msgid "You will receive a link to reset your password via Email." msgstr "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nazwa użytkownika" @@ -533,7 +558,7 @@ msgstr "Osobiste" msgid "Users" msgstr "Użytkownicy" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplikacje" @@ -643,49 +668,47 @@ msgstr "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoz msgid "Create an admin account" msgstr "Utwórz konta administratora" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Zaawansowane" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Katalog danych" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Skonfiguruj bazę danych" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "zostanie użyte" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Zakończ konfigurowanie" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Kończę ..." @@ -701,7 +724,7 @@ msgstr "Ta aplikacja wymaga włączenia JavaScript do poprawnego działania. Pro msgid "%s is available. Get more information on how to update." msgstr "%s jest dostępna. Dowiedz się więcej na temat aktualizacji." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Wyloguj" @@ -727,28 +750,28 @@ msgstr "Uwierzytelnianie po stronie serwera nie powiodło się!" msgid "Please contact your administrator." msgstr "Skontaktuj się z administratorem" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Nie pamiętasz hasła?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "pamiętaj" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Zaloguj" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternatywne loginy" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Cześć,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index c68288c62b..667bc31ef2 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -3,8 +3,8 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki , 2013 -# I Robot , 2013 +# Cyryl Sochacki , 2013-2014 +# I Robot, 2013 # bobie , 2013 # Mariusz Fik , 2013 # Michal Plichta , 2013 @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 10:30+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -33,36 +33,48 @@ msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" msgid "Could not move %s" msgstr "Nie można było przenieść %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Nazwa pliku nie może być pusta." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Nazwa pliku nie może zawierać \"/\". Proszę wybrać inną nazwę." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Niepoprawne źródło" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serwer nie mógł otworzyć adresów URL, należy sprawdzić konfigurację serwera" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Błąd podczas pobierania %s do %S" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Błąd przy tworzeniu pliku" @@ -70,239 +82,234 @@ msgstr "Błąd przy tworzeniu pliku" msgid "Folder name cannot be empty." msgstr "Nazwa folderu nie może być pusta." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Nazwa folderu nie może zawierać \"/\". Proszę wybrać inną nazwę." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Błąd przy tworzeniu folderu" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Nie można ustawić katalog wczytywania." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Nieprawidłowy Token" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Nie było błędów, plik wysłano poprawnie." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Załadowany plik został wysłany tylko częściowo." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Zła ścieżka." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Pliki" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nie można przesłać {filename} być może jest katalogiem lub posiada 0 bajtów" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Za mało miejsca" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Nie można uzyskać wyniku z serwera." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL nie może być pusty" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Nie można utworzyć pliku" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Nie można utworzyć folderu" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Błąd przy pobieraniu adresu URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Udostępnij" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiono {new_name} przez {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "cofnij" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Błąd podczas usuwania pliku" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" -msgstr "{dirs} and {files}" +msgstr "{dirs} i {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" msgstr[1] "Wysyłanie %n plików" msgstr[2] "Wysyłanie %n plików" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "„.” jest nieprawidłową nazwą pliku." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Twój magazyn jest prawie pełny ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikacja szyfrująca jest aktywna, ale twoje klucze nie zostały zainicjowane, prosze wyloguj się i zaloguj ponownie." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz. Można zaktualizować hasło klucza prywatnego w ustawieniach osobistych w celu odzyskania dostępu do plików" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Szyfrowanie zostało wyłączone, ale nadal pliki są zaszyfrowane. Przejdź do ustawień osobistych i tam odszyfruj pliki." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Błąd prz przenoszeniu pliku" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Błąd" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nazwa" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Rozmiar" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modyfikacja" @@ -310,12 +317,12 @@ msgstr "Modyfikacja" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s nie można zmienić nazwy" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Wyślij" @@ -351,69 +358,69 @@ msgstr "Maksymalna wielkość pliku wejściowego ZIP " msgid "Save" msgstr "Zapisz" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nowy" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nowy plik tekstowy" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Plik tekstowy" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nowy folder" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Folder" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Z odnośnika" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Pliki usunięte" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Nie masz uprawnień do wczytywania lub tworzenia plików w tym miejscu" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Pusto. Wyślij coś!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Pobierz" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Usuń" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Ładowany plik jest za duży" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 268225af9b..cd54ba8689 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-13 14:46+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -82,18 +82,18 @@ msgid "" "administrator" msgstr "Nieznany błąd proszę sprawdzić ustawienia systemu lub skontaktuj się z administratorem" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Brak wymagań." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone." -#: hooks/hooks.php:278 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:" @@ -101,9 +101,9 @@ msgstr "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Rozpoczęto szyfrowanie... To może chwilę potrwać. Proszę czekać." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Zapisywanie..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 0f8b413e89..b2077dd2ea 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,40 +18,44 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Dostęp do" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Udziel dostępu" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." -#: lib/config.php:465 +#: lib/config.php:516 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 "Ostrzeżenie: Wsparcie dla FTP w PHP nie jest zainstalowane lub włączone. Skontaktuj sie z administratorem w celu zainstalowania lub włączenia go." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Użytkownicy" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Usuń" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Włącz zewnętrzne zasoby dyskowe użytkownika" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Zezwalaj użytkownikom na montowanie ich własnych zewnętrznych zasobów dyskowych" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Główny certyfikat SSL" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importuj główny certyfikat" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 26d13fcd20..49d993be3c 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,6 +18,10 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Udział ten jest chroniony hasłem" @@ -54,32 +58,16 @@ msgstr "Udostępnianie jest wyłączone" msgid "For more info, please ask the person who sent this link." msgstr "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s współdzieli folder z tobą %s" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s współdzieli z tobą plik %s" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Pobierz" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Wyślij" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Anuluj wysyłanie" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Podgląd nie jest dostępny dla" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Bezpośredni link" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index bcd5e63eee..d263d63e11 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -18,44 +18,48 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nie można trwale usunąć %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Nie można przywrócić %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Błąd" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "przywrócony" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nic tu nie ma. Twój kosz jest pusty!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nazwa" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Przywróć" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Usunięte" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Usuń" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Usunięte pliki" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 2f3c4cb6cb..7603c6cc42 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -19,38 +19,38 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Aplikacja \"%s\" nie może zostać zainstalowana, ponieważ nie jest zgodna z tą wersją ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Nie określono nazwy aplikacji" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Pomoc" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Osobiste" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Ustawienia" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Użytkownicy" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administrator" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." @@ -63,15 +63,10 @@ msgstr "Nieznany typ pliku" msgid "Invalid image" msgstr "Błędne zdjęcie" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "Kontrolowane serwisy" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "Nie można otworzyć \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." @@ -94,74 +89,78 @@ msgid "" "administrator." msgstr "Proszę ściągać pliki osobno w mniejszych paczkach lub poprosić administratora." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Nie określono źródła podczas instalacji aplikacji" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Nie określono linku skąd aplikacja ma być zainstalowana" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Nie określono lokalnego pliku z którego miała być instalowana aplikacja" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Typ archiwum %s nie jest obsługiwany" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Nie udało się otworzyć archiwum podczas instalacji aplikacji" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Aplikacja nie posiada pliku info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Aplikacja nie może być zainstalowany ponieważ nie dopuszcza kod w aplikacji" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Aplikacja nie może zostać zainstalowana ponieważ jest niekompatybilna z tą wersja ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Aplikacja nie może być zainstalowana ponieważ true tag nie jest true , co nie jest dozwolone dla aplikacji nie wysłanych" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Nie można zainstalować aplikacji, ponieważ w wersji info.xml/version nie jest taka sama, jak wersja z app store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Katalog aplikacji już isnieje" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nie mogę utworzyć katalogu aplikacji. Proszę popraw uprawnienia. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Aplikacja nie jest włączona" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Błąd uwierzytelniania" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token wygasł. Proszę ponownie załadować stronę." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Pliki" @@ -201,8 +200,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Należy wprowadzić istniejące konto użytkownika lub administratora." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL: Nazwa użytkownika i/lub hasło jest niepoprawne" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -229,21 +228,21 @@ msgstr "Niepoprawna komenda: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Użytkownik MySQL '%s'@'localhost' już istnieje" +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Usuń tego użytkownika z MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Użytkownik MySQL '%s'@'%%t' już istnieje" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Usuń tego użytkownika z MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -270,70 +269,76 @@ msgstr "Ustaw nazwę administratora." msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Sprawdź ponownie przewodniki instalacji." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nie można odnaleźć kategorii \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekund temu" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzinę temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "dziś" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "wczoraj" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "w zeszłym miesiącu" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "w zeszłym roku" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index e2ec0caf25..c1214670b6 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki , 2013 +# Cyryl Sochacki , 2013-2014 # adbrand , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-21 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 10:40+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -19,6 +19,48 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Szyfrowanie" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Nie można wczytać listy aplikacji" @@ -115,62 +157,90 @@ msgstr "Zaplecze nie obsługuje zmiany hasła, ale klucz szyfrowania użytkownik msgid "Unable to change password" msgstr "Nie można zmienić hasła" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Dokumentacja użytkownika" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Aktualizacja do {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Wyłącz" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Włącz" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Proszę czekać..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Błąd podczas wyłączania aplikacji" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Błąd podczas włączania aplikacji" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Aktualizacja w toku..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Błąd podczas aktualizacji aplikacji" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Błąd" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Aktualizuj" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Wybierz zdjęcie profilu" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Odszyfrowuje pliki... Proszę czekać, to może zająć jakiś czas." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Zapisywanie..." - #: js/users.js:47 msgid "deleted" msgstr "usunięto" @@ -183,40 +253,40 @@ msgstr "cofnij" msgid "Unable to remove user" msgstr "Nie można usunąć użytkownika" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupy" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Administrator grupy" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Usuń" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "dodaj grupę" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Ostrzeżenie: Katalog domowy dla użytkownika \"{user}\" już istnieje" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "polski" @@ -240,18 +310,42 @@ msgstr "Błędy i poważne problemy" msgid "Fatal issues only" msgstr "Tylko poważne problemy" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Ostrzeżenie o zabezpieczeniach" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Uzyskujesz dostęp do %s za pomocą protokołu HTTP. Zalecamy skonfigurować swój serwer z użyciem protokołu HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -260,68 +354,68 @@ msgid "" "root." msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Ostrzeżenia konfiguracji" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Proszę sprawdź ponownie przewodnik instalacji." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Brak modułu „fileinfo”" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Twoja wersja PHP jest za stara" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Twoja wersja PHP jest za stara. Rekomendujemy przynajmniej wersje 5.3.8. Jeśli masz starsza wersję ownCloud może nie działać poprawnie." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Lokalizacja nie działa" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "Oznacza to, że mogą być problemy z niektórymi znakami w nazwach plików." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "Zalecamy, aby zainstalować wymagane pakiety w systemie, jeden z następujących języków: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Połączenie internetowe nie działa" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -330,118 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Pozwól na publiczne wczytywanie" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Użytkownicy mogą włączyć dla innych wgrywanie do ich publicznych katalogów" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Pozwól na mailowe powiadomienia" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Logi" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Więcej" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Mniej" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Wersja" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Stworzone przez społeczność ownCloud, kod źródłowy na licencji AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Dodaj swoją aplikację" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Więcej aplikacji" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Zaznacz aplikację" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Zobacz stronę aplikacji na apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licencjonowane przez " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Dokumentacja użytkownika" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Dokumentacja administratora" @@ -508,7 +650,7 @@ msgstr "Uruchom ponownie kreatora pierwszego uruchomienia" msgid "You have used %s of the available %s" msgstr "Wykorzystujesz %s z dostępnych %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Hasło" @@ -520,151 +662,149 @@ msgstr "Twoje hasło zostało zmienione" msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Pełna nazwa" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Twój adres e-mail" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Zdjęcie profilu" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Wczytaj nowe" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Wybierz nowe z plików" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Usuń zdjęcie" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Png lub jpg. Idealnie kwadratowy, ale będzie można je przyciąć." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." +msgstr "Twój awatar jest ustawiony jako domyślny." + +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "Anuluj" - -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Wybierz zdjęcie profilu" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Język" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Użyj tego adresu do dostępu do twoich plików przez WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Szyfrowanie" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Hasło logowania" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Odszyfruj wszystkie pliki" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Login" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Utwórz" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Odzyskiwanie hasła administratora" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zmiany hasła" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Magazyn domyślny" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Bez limitu" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Inne" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nazwa użytkownika" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Magazyn" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "Zmień pełna nazwę" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "ustaw nowe hasło" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Domyślny" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index f625cf545f..1bd4d456bb 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki , 2013 +# Cyryl Sochacki , 2013-2014 +# hoek , 2014 # orcio6 , 2013 +# bobie , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -41,24 +43,24 @@ msgstr "Konfiguracja jest prawidłowa, ale Bind nie. Sprawdź ustawienia serwera msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." -msgstr "" +msgstr "Konfiguracja jest nieprawidłowa. Proszę rzucić okiem na dzienniki dalszych szczegółów." #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "Nie określono akcji" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "Nie określono konfiguracji" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "Nie określono danych" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "Nie można ustawić konfiguracji %s" #: js/settings.js:67 msgid "Deletion failed" @@ -88,43 +90,43 @@ msgstr "Sukces" msgid "Error" msgstr "Błąd" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" -msgstr "" +msgstr "Konfiguracja poprawna" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" -msgstr "" +msgstr "Konfiguracja niepoprawna" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" -msgstr "" +msgstr "Konfiguracja niekompletna" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Wybierz grupy" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" -msgstr "" +msgstr "Wybierz obiekty klas" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" -msgstr "" +msgstr "Wybierz atrybuty" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Test połączenia udany" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Test połączenia nie udany" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Czy chcesz usunąć bieżącą konfigurację serwera?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Potwierdź usunięcie" @@ -132,25 +134,25 @@ msgstr "Potwierdź usunięcie" #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%s znaleziona grupa" +msgstr[1] "%s znalezionych grup" +msgstr[2] "%s znalezionych grup" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%s znaleziony użytkownik" +msgstr[1] "%s znalezionych użytkowników" +msgstr[2] "%s znalezionych użytkowników" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" -msgstr "" +msgstr "Niepoprawny Host" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" -msgstr "" +msgstr "Nie można znaleźć żądanej funkcji" #: templates/part.settingcontrols.php:2 msgid "Save" @@ -166,63 +168,63 @@ msgstr "Pomoc" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "tylko te klasy obiektów:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "tylko z tych grup:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Edytuj zamiast tego czysty filtr" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Czysty filtr LDAP" #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "Filtr określa, które grupy LDAP powinny mieć dostęp do instancji %s." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "grup znaleziono" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "Nazwa użytkownika LDAP:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "LDAP Adres Email:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Inne atrybuty:" #: templates/part.wizard-loginfilter.php:38 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Określa jakiego filtru użyć podczas próby zalogowania. %%uid zastępuje nazwę użytkownika w procesie logowania. Przykład: \"uid=%%uid\"" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" @@ -270,18 +272,18 @@ msgstr "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowa #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP users shall have access to the %s instance." -msgstr "" +msgstr "Filtr określa, którzy użytkownicy LDAP powinni mieć dostęp do instancji %s." #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "użytkownicy znalezieni" #: templates/part.wizardcontrols.php:5 msgid "Back" @@ -296,7 +298,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich." #: templates/settings.php:14 msgid "" @@ -351,7 +353,7 @@ msgstr "Wyłączyć sprawdzanie poprawności certyfikatu SSL." msgid "" "Not recommended, use it for testing only! If connection only works with this" " option, import the LDAP server's SSL certificate in your %s server." -msgstr "" +msgstr "Nie polecane, używać tylko w celu testowania! Jeśli połączenie działa tylko z tą opcją, zaimportuj certyfikat SSL serwera LDAP na swój %s." #: templates/settings.php:28 msgid "Cache Time-To-Live" @@ -371,7 +373,7 @@ msgstr "Pole wyświetlanej nazwy użytkownika" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Atrybut LDAP służący do generowania wyświetlanej nazwy użytkownika ownCloud." #: templates/settings.php:33 msgid "Base User Tree" @@ -395,7 +397,7 @@ msgstr "Pole wyświetlanej nazwy grupy" #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Atrybut LDAP służący do generowania wyświetlanej nazwy grupy ownCloud." #: templates/settings.php:36 msgid "Base Group Tree" @@ -413,41 +415,51 @@ msgstr "Grupa atrybutów wyszukaj" msgid "Group-Member association" msgstr "Członek grupy stowarzyszenia" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Specjalne atrybuty" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Pole przydziału" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Przydział domyślny" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "w bajtach" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Pole email" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Reguły nazewnictwa folderu domowego użytkownika" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Pozostaw puste dla user name (domyślnie). W przeciwnym razie podaj atrybut LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Wewnętrzna nazwa użytkownika" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,17 +473,17 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "Domyślnie, wewnętrzna nazwa użytkownika zostanie utworzona z atrybutu UUID, ang. Universally unique identifier - Unikalny identyfikator użytkownika. To daje pewność, że nazwa użytkownika jest niepowtarzalna, a znaki nie muszą być konwertowane. Wewnętrzna nazwa użytkownika dopuszcza jedynie znaki: [ a-zA-Z0-9_.@- ]. Pozostałe znaki zamieniane są na ich odpowiedniki ASCII lub po prostu pomijane. W przypadku, gdy nazwa się powtarza na końcu jest dodawana / zwiększana cyfra. Wewnętrzna nazwa użytkownika służy do wewnętrznej identyfikacji użytkownika. Jest to również domyślna nazwa folderu domowego użytkownika. Jest to również część zdalnego adresu URL, na przykład dla wszystkich usług *DAV. Dzięki temu ustawieniu można nadpisywać domyślne zachowanie aplikacji. Aby osiągnąć podobny efekt jak przed ownCloud 5 wpisz atrybut nazwy użytkownika w poniższym polu. Pozostaw puste dla domyślnego zachowania. Zmiany będą miały wpływ tylko na nowo przypisanych (dodanych) użytkowników LDAP." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Wewnętrzny atrybut nazwy uzżytkownika:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Zastąp wykrywanie UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,21 +492,21 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Domyślnie, atrybut UUID jest wykrywany automatycznie. Atrybut UUID jest używany do niepodważalnej identyfikacji użytkowników i grup LDAP. Również wewnętrzna nazwa użytkownika zostanie stworzona na bazie UUID, jeśli nie zostanie podana powyżej. Możesz nadpisać to ustawienie i użyć atrybutu wedle uznania. Musisz się jednak upewnić, że atrybut ten może zostać pobrany zarówno dla użytkowników, jak i grup i jest unikalny. Pozostaw puste dla domyślnego zachowania. Zmiany będą miały wpływ tylko na nowo przypisanych (dodanych) użytkowników i grupy LDAP." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Atrybuty UUID dla użytkowników:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Atrybuty UUID dla grup:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Mapowanie użytkownika LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,12 +518,12 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "" +msgstr "Nazwy użytkowników są używane w celu przechowywania i przypisywania (meta) danych. Aby dokładnie zidentyfikować i rozpoznać użytkowników, każdy użytkownik LDAP będzie miał wewnętrzną nazwę. To wymaga utworzenia przypisania nazwy użytkownika do użytkownika LDAP. Utworzona nazwa użytkownika jet przypisywana do UUID użytkownika LDAP. Dodatkowo DN jest również buforowany aby zmniejszyć interakcję z LDAP, ale nie jest używany do identyfikacji. Jeśli DN się zmieni, zmiany zostaną odnalezione. Wewnętrzny użytkownik jest używany we wszystkich przypadkach. Wyczyszczenie mapowań spowoduje pozostawienie wszędzie resztek informacji. Wyczyszczenie mapowań nie jest wrażliwe na konfigurację, wpływa ono na wszystkie konfiguracje LDAP! Nigdy nie czyść mapowań w środowisku produkcyjnym, tylko podczas testów lub w fazie eksperymentalnej. " -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Czyść Mapowanie użytkownika LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Czyść Mapowanie nazwy grupy LDAP" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 368acc1e41..ff4fc2b8d4 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s compartilhou »%s« com você" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Não foi possível enviar e-mail para os seguintes usuários: %s" @@ -74,135 +69,139 @@ msgstr "Sem imagem no perfil temporário disponível, tente novamente" msgid "No crop data provided" msgstr "Nenhum dado para coleta foi fornecido" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Domingo" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Segunda-feira" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Terça-feira" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Quarta-feira" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Quinta-feira" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Sexta-feira" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sábado" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "janeiro" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "fevereiro" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "março" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "abril" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "maio" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "junho" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "julho" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "agosto" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "setembro" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "outubro" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "novembro" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "dezembro" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Ajustes" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " ha %n minuto" msgstr[1] "ha %n minutos" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "ha %n hora" msgstr[1] "ha %n horas" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "hoje" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ontem" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "ha %n dia" msgstr[1] "ha %n dias" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "último mês" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "ha %n mês" msgstr[1] "ha %n meses" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "meses atrás" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "último ano" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "anos atrás" @@ -270,6 +269,26 @@ msgstr "({count} selecionados)" msgid "Error loading file exists template" msgstr "Erro ao carregar arquivo existe modelo" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Compartilhados" @@ -278,12 +297,12 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -295,123 +314,123 @@ msgstr "Erro ao descompartilhar" msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartilhado com você e com o grupo {group} por {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Compartilhado com você por {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Compartilhar com usuário ou grupo ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Compartilher link" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Senha" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Permitir upload público" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Enviar link por e-mail" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Enviar" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Definir data de expiração" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Compartilhar via e-mail:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupo" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "notificar por e-mail" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "pode editar" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "controle de acesso" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "criar" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "atualizar" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "remover" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "compartilhar" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Aviso" @@ -458,11 +477,17 @@ msgstr "A atualização falhou. Por favor, relate este problema para a Certifique-se que seu e-mail/username estavam corre msgid "You will receive a link to reset your password via Email." msgstr "Você receberá um link para redefinir sua senha por e-mail." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nome de usuário" @@ -527,7 +552,7 @@ msgstr "Pessoal" msgid "Users" msgstr "Usuários" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplicações" @@ -637,49 +662,47 @@ msgstr "Para obter informações sobre como configurar corretamente o seu servid msgid "Create an admin account" msgstr "Criar uma conta de administrador" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avançado" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "será usado" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Usuário do banco de dados" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Host do banco de dados" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Concluir configuração" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Finalizando ..." @@ -695,7 +718,7 @@ msgstr "Esta aplicação reque JavaScript habilidado para correta operação.\nP msgid "%s is available. Get more information on how to update." msgstr "%s está disponível. Obtenha mais informações sobre como atualizar." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Sair" @@ -721,28 +744,28 @@ msgstr "Autenticação do servidor falhou!" msgid "Please contact your administrator." msgstr "Por favor, contate o administrador." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Esqueceu sua senha?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "lembrar" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Fazer login" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Logins alternativos" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Olá,

só gostaria que você soubesse que %s compartilhou »%s« com você.
Veja isto!

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index ede91a81e9..003c3812a0 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,36 +30,48 @@ msgstr "Impossível mover %s - Um arquivo com este nome já existe" msgid "Could not move %s" msgstr "Impossível mover %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "O nome do arquivo não pode estar vazio." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "O nome do arquivo não deve conter \"/\". Por favor, escolha um nome diferente." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "O nome %s já é usado na pasta %s. Por favor, escolha um nome diferente." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Não é uma fonte válida" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Não é permitido ao servidor abrir URLs, por favor verificar a configuração do servidor." -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Erro ao baixar %s para %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Erro ao criar o arquivo" @@ -67,236 +79,231 @@ msgstr "Erro ao criar o arquivo" msgid "Folder name cannot be empty." msgstr "O nome da pasta não pode estar vazio." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "O nome da pasta não pode conter \"/\". Por favor, escolha um nome diferente." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Erro ao criar a pasta" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Impossível configurar o diretório de upload" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Sem erros, o arquivo foi enviado com sucesso" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o argumento MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi parcialmente enviado" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Nenhum arquivo enviado" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Falha no envio. Não foi possível obter informações do arquivo." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Falha no envio. Não foi possível encontrar o arquivo enviado" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Falha no envio. Não foi possível obter informações do arquivo." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Diretório inválido." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Arquivos" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Incapaz de fazer o envio de {filename}, pois é um diretório ou tem 0 bytes" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Espaço de armazenamento insuficiente" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL não pode estar vazia" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Não foi possível criar o arquivo" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Não foi possível criar a pasta" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Erro ao buscar URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Compartilhar" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "desfazer" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Erro eliminando o arquivo." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" msgstr[1] "Enviando %n arquivos" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' é um nome de arquivo inválido." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Seu armazenamento está quase cheio ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "App de encriptação está ativado, mas as chaves não estão inicializadas, por favor log-out e faça login novamente" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Chave do App de Encriptação é inválida. Por favor, atualize sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Erro movendo o arquivo" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Erro" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nome" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Tamanho" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificado" @@ -304,12 +311,12 @@ msgstr "Modificado" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Nome da pasta inválido. Uso de 'Shared' é reservado." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeado" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Upload" @@ -345,69 +352,69 @@ msgstr "Tamanho máximo para arquivo ZIP" msgid "Save" msgstr "Guardar" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Novo" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Novo arquivo texto" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Arquivo texto" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nova pasta" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Pasta" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Do link" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Arquivos apagados" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Você não tem permissão para carregar ou criar arquivos aqui" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Baixar" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Excluir" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 0d4611d79d..796a98a65e 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 16:30+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,18 +83,18 @@ msgid "" "administrator" msgstr "Erro desconhecido, por favor verifique suas configurações ou faça contato com o administrador" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Requisitos não encontrados." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Seguintes usuários não estão configurados para criptografia:" @@ -102,9 +102,9 @@ msgstr "Seguintes usuários não estão configurados para criptografia:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Criptografia inicial inicializada... Isto pode tomar algum tempo. Por favor espere." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Salvando..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 49e4100d52..ab8c74fd21 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Acesso concedido" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Erro ao configurar armazenamento do Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Permitir acesso" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor forneça um app key e secret válido do Dropbox" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar armazenamento do Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:465 +#: lib/config.php:516 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 "Aviso: O suporte para FTP do PHP não está ativado ou instalado. Impossível montar compartilhamentos FTP. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Usuários" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Excluir" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Habilitar Armazenamento Externo do Usuário" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Permitir usuários a montar seus próprios armazenamentos externos" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Certificados SSL raíz" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importar Certificado Raíz" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 0e25ada0b9..8488461374 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Este compartilhamento esta protegido por senha" @@ -54,32 +58,16 @@ msgstr "compartilhamento está desativada" msgid "For more info, please ask the person who sent this link." msgstr "Para mais informações, por favor, pergunte a pessoa que enviou este link." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s compartilhou a pasta %s com você" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s compartilhou o arquivo %s com você" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Baixar" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Upload" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Cancelar upload" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Nenhuma visualização disponível para" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Link direto" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 3104219a27..92cbf1ac21 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Não foi possível excluir %s permanentemente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Erro" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "restaurado" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Nada aqui. Sua lixeira está vazia!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nome" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Excluído" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Excluir" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Arquivos Apagados" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index b6aa06fddb..07cc4242cd 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "O aplicativo \"%s\" não pode ser instalado porque não é compatível com esta versão do ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "O nome do aplicativo não foi especificado." -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Ajuda" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Pessoal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Ajustes" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Usuários" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." @@ -62,15 +62,10 @@ msgstr "Tipo de arquivo desconhecido" msgid "Invalid image" msgstr "Imagem inválida" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "serviços web sob seu controle" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "não pode abrir \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "Por favor baixe os arquivos separadamente em pedaços ou educadamente pergunte ao seu administrador." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Nenhuma fonte foi especificada enquanto instalava o aplicativo" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Nenhuma href foi especificada enquanto instalava o aplicativo de httml" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Nenhum caminho foi especificado enquanto instalava o aplicativo do arquivo local" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Arquivos do tipo %s não são suportados" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Falha para abrir o arquivo enquanto instalava o aplicativo" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "O aplicativo não fornece um arquivo info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "O aplicativo não pode ser instalado por causa do código não permitido no Aplivativo" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "O aplicativo não pode ser instalado porque não é compatível com esta versão do ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "O aplicativo não pode ser instalado porque ele contém a marca verdadeiro que não é permitido para aplicações não embarcadas" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "O aplicativo não pode ser instalado porque a versão em info.xml /versão não é a mesma que a versão relatada na App Store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Diretório App já existe" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Não é possível criar pasta app. Corrija as permissões. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Aplicação não está habilitada" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Erro de autenticação" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token expirou. Por favor recarregue a página." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Arquivos" @@ -200,8 +199,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Você precisa inserir uma conta existente ou o administrador." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Nome de usuário e/ou senha MySQL inválido(s)" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +227,21 @@ msgstr "Comando ofensivo era: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "O usuário MySQL '%s'@'localhost' já existe." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Derrubar este usuário do MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Usuário MySQL '%s'@'%%' já existe" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Derrube este usuário do MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,66 +268,72 @@ msgstr "Defina um nome de usuário de administrador." msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, confira os guias de instalação." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Impossível localizar categoria \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "segundos atrás" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "ha %n minutos" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "ha %n horas" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "hoje" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ontem" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "ha %n dias" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "último mês" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "ha %n meses" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "último ano" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 94e5cc8ff9..5d05398b9c 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 10:30+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,48 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Criptografia" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Não foi possível carregar lista da App Store" @@ -115,62 +157,90 @@ msgstr "Back-end não suporta alteração de senha, mas a chave de criptografia msgid "Unable to change password" msgstr "Impossível modificar senha" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentação de Usuário" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Atualizar para {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Desabilitar" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Habilitar" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Por favor, aguarde..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Erro enquanto desabilitava o aplicativo" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Erro enquanto habilitava o aplicativo" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Atualizando..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Erro ao atualizar aplicativo" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Erro" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Atualizar" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Atualizado" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Selecione uma imagem para o perfil" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Salvando..." - #: js/users.js:47 msgid "deleted" msgstr "excluído" @@ -183,40 +253,40 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Impossível remover usuário" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupos" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupo Administrativo" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Excluir" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "adicionar grupo" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Erro ao criar usuário" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Aviso: O diretório home para o usuário \"{user}\" já existe" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Português (Brasil)" @@ -240,18 +310,42 @@ msgstr "Erros e problemas fatais" msgid "Fatal issues only" msgstr "Somente questões fatais" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Você está acessando %s via HTTP. Sugerimos você configurar o servidor para exigir o uso de HTTPS em seu lugar." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -260,68 +354,68 @@ msgid "" "root." msgstr "Seu diretório de dados e seus arquivos são, provavelmente, acessíveis a partir da internet. O arquivo htaccess. não está funcionando. Nós sugerimos fortemente que você configure o seu servidor web de uma forma que o diretório de dados não esteja mais acessível ou mova o diretório de dados para fora do raiz do servidor." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Aviso de Configuração" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece não estar funcionando." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, verifique os guias de instalação." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Módulo 'fileinfo' faltando" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type)." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Sua versão de PHP está desatualizada" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "A sua versão do PHP está desatualizada. Recomendamos a atualização para 5.3.8 ou mais recente, pois as versões mais antigas são conhecidas por serem quebradas. É possível que esta instalação não esteja funcionando corretamente." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Localização não funcionando" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Localidade do sistema não pode ser definido como um que suporta UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Nós sugerimos para instalar os pacotes necessários no seu sistema para suportar uma das seguintes localidades: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Sem conexão com a internet" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -330,118 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Permitir que usuários compartilhem itens com o público usando links" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Permitir envio público" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que usuários deem permissão a outros para enviarem arquivios para suas pastas compartilhadas publicamente" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Permitir usuários enviar notificação por email de arquivos compartilhados" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Segurança" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Obrigar os clientes que se conectem a %s através de uma conexão criptografada." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Registro" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mais" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Menos" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versão" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desenvolvido pela comunidade ownCloud, o código fonte está licenciado sob AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Adicione seu Aplicativo" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Mais Apps" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Selecione um Aplicativo" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Ver página do aplicativo em apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licenciado por " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentação de Usuário" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentação de Administrador" @@ -508,7 +650,7 @@ msgstr "Mostrar este Assistente de novo" msgid "You have used %s of the available %s" msgstr "Você usou %s do seu espaço de %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Senha" @@ -520,151 +662,149 @@ msgstr "Sua senha foi alterada" msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Nome Completo" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Preencha um endereço de e-mail para habilitar a recuperação de senha" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Imagem para o perfil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Enviar nova foto" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Selecinar uma nova dos Arquivos" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Remover imagem" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Ou png ou jpg. O ideal é quadrado, mas você vai ser capaz de cortá-la." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Seu avatar é fornecido por sua conta original." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Abortar" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Escolha como imagem para o perfil" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Idioma" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Use este endereço para ter acesso a seus Arquivos via WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Criptografia" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "O aplicativo de criptografia não está habilitado, por favor descriptar todos os seus arquivos" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Senha de login" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Decripti todos os Arquivos" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Nome de Login" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Criar" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Recuperação da Senha do Administrador" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha." -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Armazenamento Padrão" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Por favor insira cota de armazenamento (ex: \"512\" ou \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Outro" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nome de Usuário" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Armazenamento" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "alterar nome completo" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "definir nova senha" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Padrão" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 6fd04f0749..4edd288a6e 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,43 +88,43 @@ msgstr "Sucesso" msgid "Error" msgstr "Erro" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Configuração OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Configuração incorreta" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Configuração incompleta" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Selecionar grupos" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Selecione classes de objetos" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Selecione os atributos" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Teste de conexão bem sucedida" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Teste de conexão falhou" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Você quer realmente deletar as atuais Configurações de Servidor?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Confirmar Exclusão" @@ -142,11 +142,11 @@ msgid_plural "%s users found" msgstr[0] "usuário %s encontrado" msgstr[1] "usuários %s encontrados" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Não foi possível encontrar a função desejada" @@ -164,8 +164,8 @@ msgstr "Ajuda" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Limitar o acesso a %s para grupos que coincidam com estes critérios:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -200,8 +200,8 @@ msgid "groups found" msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "O atributo deve ser usado como nome de login:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -268,8 +268,8 @@ msgstr "Você pode especificar DN Base para usuários e grupos na guia Avançada #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Limitar o acesso a %s para usuários que coincidam com estes critérios:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -411,41 +411,51 @@ msgstr "Atributos de Busca de Grupo" msgid "Group-Member association" msgstr "Associação Grupo-Membro" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atributos Especiais" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Campo de Cota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Cota Padrão" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "em bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Campo de Email" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Regra para Nome da Pasta Pessoal do Usuário" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixe vazio para nome de usuário (padrão). Caso contrário, especifique um atributo LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Nome de usuário interno" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Por padrão, o nome de usuário interno será criado a partir do atributo UUID. Ele garante que o nome de usuário é único e que caracteres não precisam ser convertidos. O nome de usuário interno tem a restrição de que apenas estes caracteres são permitidos: [a-zA-Z0-9_.@- ]. Outros caracteres são substituídos por seus correspondentes em ASCII ou simplesmente serão omitidos. Em caso de colisão um número será adicionado/aumentado. O nome de usuário interno é usado para identificar um usuário internamente. É também o nome padrão da pasta \"home\" do usuário. É também parte de URLs remotas, por exemplo, para todos as instâncias *DAV. Com esta definição, o comportamento padrão pode ser sobrescrito. Para alcançar um comportamento semelhante ao de antes do ownCloud 5, forneça o atributo do nome de exibição do usuário no campo seguinte. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários LDAP recém mapeados (adicionados)." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atributo Interno de Nome de Usuário:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Substituir detecção UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados)." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID Atributos para Usuários:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID Atributos para Grupos:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Usuário-LDAP Mapeamento de Usuário" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar Mapeamento de Usuário Nome de Usuário-LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar NomedoGrupo-LDAP Mapeamento do Grupo" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index cc4b1340ad..c5639f5a1a 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,19 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bruno Martins , 2013 +# Bruno Martins , 2013 # bmgmatias , 2013 +# Carlos , 2014 # Mouxy , 2013 # Duarte Velez Grilo , 2013 # Gontxi , 2013 -# Helder Meneses , 2013 +# Helder Meneses , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,15 +24,10 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s partilhado »%s« contigo" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Não conseguiu enviar correio aos seguintes utilizadores: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -76,137 +72,141 @@ msgstr "Foto temporária de perfil indisponível, tente novamente" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Sem dados de corte fornecidos" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Domingo" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Segunda" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Terça" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Quarta" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Quinta" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Sexta" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sábado" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Janeiro" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Fevereiro" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Março" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Abril" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maio" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Junho" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Julho" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Agosto" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Setembro" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Outubro" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Novembro" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Dezembro" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Configurações" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "hoje" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ontem" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "ultímo mês" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "meses atrás" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "ano passado" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "anos atrás" @@ -216,7 +216,7 @@ msgstr "Escolha" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Erro ao carregar o modelo de selecionador de ficheiro: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -237,12 +237,12 @@ msgstr "Erro ao carregar o template: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} conflicto de ficheiro" +msgstr[1] "{count} conflitos de ficheiro" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Um conflito no ficheiro" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" @@ -252,7 +252,7 @@ msgstr "Quais os ficheiros que pretende manter?" msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Se escolher ambas as versões, o ficheiro copiado irá ter um número adicionado ao seu nome." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -272,6 +272,26 @@ msgstr "({count} seleccionados)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" +msgstr "Erro ao carregar o modelo de existências do ficheiro" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" msgstr "" #: js/share.js:51 js/share.js:66 js/share.js:106 @@ -282,12 +302,12 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -299,123 +319,123 @@ msgstr "Erro ao deixar de partilhar" msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Partilhado consigo e com o grupo {group} por {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Partilhado consigo por {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" -msgstr "" +msgstr "Partilhar com utilizador ou grupo..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Partilhar o link" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Password" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Permitir Envios Públicos" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Enviar o link por e-mail" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Enviar" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Especificar data de expiração" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Partilhar via email:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupo" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "Notificar por email" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "pode editar" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "criar" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "actualizar" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "apagar" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "partilhar" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Aviso" @@ -425,7 +445,7 @@ msgstr "O tipo de objecto não foi especificado" #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Introduza novo" #: js/tags.js:27 msgid "Delete" @@ -437,19 +457,19 @@ msgstr "Adicionar" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Editar etiquetas" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Erro ao carregar modelo de diálogo: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Não foram escolhidas etiquetas para apagar." #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Por favor recarregue a página." #: js/update.js:17 msgid "" @@ -462,11 +482,17 @@ msgstr "A actualização falhou. Por favor reporte este incidente seguindo este msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s reposição da password" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Use o seguinte endereço para repor a sua password: {link}" @@ -486,8 +512,8 @@ msgstr "O pedido falhou!
Tem a certeza que introduziu o seu email/username msgid "You will receive a link to reset your password via Email." msgstr "Vai receber um endereço para repor a sua password" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nome de utilizador" @@ -531,7 +557,7 @@ msgstr "Pessoal" msgid "Users" msgstr "Utilizadores" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplicações" @@ -545,31 +571,31 @@ msgstr "Ajuda" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Erro ao carregar etiquetas" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "A etiqueta já existe" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Erro ao apagar etiqueta(s)" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Erro ao etiquetar" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Erro ao desetiquetar" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "Erro a definir como favorito" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "Erro a remover como favorito" #: templates/403.php:12 msgid "Access forbidden" @@ -587,7 +613,7 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Olá,\n\napenas para informar que %s partilhou »%s« consigo.\nConsulte aqui: %s\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format @@ -596,7 +622,7 @@ msgstr "Esta partilha vai expirar em %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Parabéns!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -641,49 +667,47 @@ msgstr "Para obter informações de como configurar correctamente o servidor, ve msgid "Create an admin account" msgstr "Criar uma conta administrativa" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avançado" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configure a base de dados" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "vai ser usada" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Acabar instalação" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "A terminar..." @@ -692,14 +716,14 @@ msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Esta aplicação requer JavaScript ativado para uma operação correta. Por favor ative o JavaScript e recarregue esta interface." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponível. Tenha mais informações como actualizar." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Sair" @@ -719,48 +743,48 @@ msgstr "Por favor mude a sua palavra-passe para assegurar a sua conta de novo." #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Autenticação do lado do servidor falhou!" #: templates/login.php:18 msgid "Please contact your administrator." msgstr "Por favor contacte o administrador." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Esqueceu-se da sua password?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "lembrar" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Entrar" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Contas de acesso alternativas" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "Esta instância do ownCloud está actualmente configurada no modo de utilizador único." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Isto significa que apenas os administradores podem usar a instância." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Contacte o seu administrador de sistema se esta mensagem continuar a aparecer ou apareceu inesperadamente." #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." @@ -774,8 +798,8 @@ msgstr "A actualizar o ownCloud para a versão %s, esta operação pode demorar. #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Esta instância do ownCloud está a ser actualizada, poderá demorar algum tempo." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Por favo recarregue esta página após algum tempo para continuar a usar ownCloud." diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 97c3bb28e4..5c6cc157eb 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -4,15 +4,16 @@ # # Translators: # bmgmatias , 2013 +# Carlos , 2014 # FernandoMASilva, 2013 # Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,293 +24,300 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome" +msgstr "Não pôde mover o ficheiro %s - Já existe um ficheiro com esse nome" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" msgstr "Não foi possível move o ficheiro %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "O nome do ficheiro não pode estar vazio." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format -msgid "" -"The name %s is already used in the folder %s. Please choose a different " -"name." +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:81 -msgid "Not a valid source" -msgstr "" - -#: ajax/newfile.php:86 -msgid "" -"Server is not allowed to open URLs, please check the server configuration" -msgstr "" - -#: ajax/newfile.php:103 -#, php-format -msgid "Error while downloading %s to %s" -msgstr "" - -#: ajax/newfile.php:140 -msgid "Error when creating the file" -msgstr "" - -#: ajax/newfolder.php:21 -msgid "Folder name cannot be empty." -msgstr "" - -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 -msgid "Error when creating the folder" -msgstr "" - -#: ajax/upload.php:18 ajax/upload.php:50 -msgid "Unable to set upload directory." -msgstr "Não foi possível criar o diretório de upload" - -#: ajax/upload.php:27 -msgid "Invalid Token" -msgstr "Token inválido" - -#: ajax/upload.php:64 -msgid "No file was uploaded. Unknown error" -msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" - -#: ajax/upload.php:71 -msgid "There is no error, the file uploaded with success" -msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" - -#: ajax/upload.php:72 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" - -#: ajax/upload.php:74 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "O tamanho do ficheiro carregado ultrapassa o valor MAX_FILE_SIZE definido no formulário HTML" - -#: ajax/upload.php:75 -msgid "The uploaded file was only partially uploaded" -msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" - -#: ajax/upload.php:76 -msgid "No file was uploaded" -msgstr "Nenhum ficheiro foi submetido" - -#: ajax/upload.php:77 -msgid "Missing a temporary folder" -msgstr "Está a faltar a pasta temporária" - -#: ajax/upload.php:78 -msgid "Failed to write to disk" -msgstr "Falhou a escrita no disco" - -#: ajax/upload.php:96 -msgid "Not enough storage available" -msgstr "Não há espaço suficiente em disco" - -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." - -#: ajax/upload.php:144 -msgid "Upload failed. Could not find uploaded file" -msgstr "" - -#: ajax/upload.php:172 -msgid "Invalid directory." -msgstr "Directório Inválido" - -#: appinfo/app.php:11 -msgid "Files" -msgstr "Ficheiros" - -#: js/file-upload.js:228 -msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" - -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Espaço em disco insuficiente!" - -#: js/file-upload.js:306 -msgid "Upload cancelled." -msgstr "Envio cancelado." - -#: js/file-upload.js:344 -msgid "Could not get result from server." -msgstr "Não foi possível obter o resultado do servidor." - -#: js/file-upload.js:436 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." - -#: js/file-upload.js:523 -msgid "URL cannot be empty" -msgstr "" - -#: js/file-upload.js:527 js/filelist.js:377 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:529 js/filelist.js:379 -msgid "{new_name} already exists" -msgstr "O nome {new_name} já existe" - -#: js/file-upload.js:595 -msgid "Could not create file" -msgstr "" - -#: js/file-upload.js:611 -msgid "Could not create folder" -msgstr "" - -#: js/file-upload.js:661 -msgid "Error fetching URL" -msgstr "" - -#: js/fileactions.js:125 -msgid "Share" -msgstr "Partilhar" - -#: js/fileactions.js:137 -msgid "Delete permanently" -msgstr "Eliminar permanentemente" - -#: js/fileactions.js:194 -msgid "Rename" -msgstr "Renomear" - -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 -msgid "Pending" -msgstr "Pendente" - -#: js/filelist.js:405 -msgid "Could not rename file" -msgstr "" - -#: js/filelist.js:539 -msgid "replaced {new_name} with {old_name}" -msgstr "substituido {new_name} por {old_name}" - -#: js/filelist.js:539 -msgid "undo" -msgstr "desfazer" - -#: js/filelist.js:591 -msgid "Error deleting file." -msgstr "" - -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n pasta" -msgstr[1] "%n pastas" - -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n ficheiro" -msgstr[1] "%n ficheiros" - -#: js/filelist.js:617 -msgid "{dirs} and {files}" -msgstr "{dirs} e {files}" - -#: js/filelist.js:828 js/filelist.js:866 -msgid "Uploading %n file" -msgid_plural "Uploading %n files" -msgstr[0] "A carregar %n ficheiro" -msgstr[1] "A carregar %n ficheiros" - -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' não é um nome de ficheiro válido!" - -#: js/files.js:81 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: js/files.js:93 +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "O nome %s já está em uso na pasta %s. Por favor escolha um nome diferente." + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "Não é uma fonte válida" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "O servidor não consegue abrir URLs, por favor verifique a configuração do servidor" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Erro ao transferir %s para %s" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "Erro ao criar o ficheiro" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "O nome da pasta não pode estar vazio." + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "Erro ao criar a pasta" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "Não foi possível criar o diretório de upload" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "Token inválido" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "O tamanho do ficheiro carregado ultrapassa o valor MAX_FILE_SIZE definido no formulário HTML" + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "Nenhum ficheiro foi submetido" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "Está a faltar a pasta temporária" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "Falhou a escrita no disco" + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "Não há espaço suficiente em disco" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "Falhou o envio. Não conseguiu encontrar o ficheiro enviado" + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "Directório Inválido" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "Ficheiros" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "Incapaz de enviar {filename}, dado que é uma pasta, ou tem 0 bytes" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "Envio cancelado." + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "Não foi possível obter o resultado do servidor." + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "URL não pode estar vazio" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "O nome {new_name} já existe" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "Não pôde criar ficheiro" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "Não pôde criar pasta" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "Erro ao obter URL" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "Partilhar" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "Eliminar permanentemente" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "Renomear" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "Pendente" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "Não pôde renomear o ficheiro" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "substituido {new_name} por {old_name}" + +#: js/filelist.js:591 +msgid "undo" +msgstr "desfazer" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "Erro ao apagar o ficheiro." + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n pasta" +msgstr[1] "%n pastas" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n ficheiro" +msgstr[1] "%n ficheiros" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "{dirs} e {files}" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "A carregar %n ficheiro" +msgstr[1] "A carregar %n ficheiros" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "O seu armazenamento está cheio, os ficheiros não podem ser sincronizados." -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "A Aplicação de Encriptação está ativada, mas as suas chaves não inicializaram. Por favor termine e inicie a sessão novamente" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Chave privada inválida da Aplicação de Encriptação. Por favor atualize a sua senha de chave privada nas definições pessoais, para recuperar o acesso aos seus ficheiros encriptados." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Erro ao mover o ficheiro" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Erro" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nome" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Tamanho" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificado" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeada" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Carregar" @@ -345,69 +353,69 @@ msgstr "Tamanho máximo para ficheiros ZIP" msgid "Save" msgstr "Guardar" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Novo" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" -msgstr "" +msgstr "Novo ficheiro de texto" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Ficheiro de texto" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nova Pasta" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Pasta" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Da ligação" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "Você não tem permissão para enviar ou criar ficheiros aqui" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Transferir" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Eliminar" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Upload muito grande" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 05ab1951b2..182227a14f 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,18 +84,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Faltam alguns requisitos." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Os utilizadores seguintes não estão marcados para cifragem:" @@ -103,9 +103,9 @@ msgstr "Os utilizadores seguintes não estão marcados para cifragem:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "A guardar..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 7cac3cf388..3a83ece28a 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Acesso autorizado" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Erro ao configurar o armazenamento do Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Conceder acesso" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar o armazenamento do Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." -#: lib/config.php:465 +#: lib/config.php:516 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 "Aviso: O suporte FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Utilizadores" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Eliminar" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Activar Armazenamento Externo para o Utilizador" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Permitir que os utilizadores montem o seu próprio armazenamento externo" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Certificados SSL de raiz" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importar Certificado Root" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index 8f81ec4756..fa60247fc2 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: PapiMigas Migas \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,10 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Esta partilha está protegida por palavra-chave" @@ -57,32 +61,16 @@ msgstr "A partilha está desativada" msgid "For more info, please ask the person who sent this link." msgstr "Para mais informações, por favor questione a pessoa que lhe enviou este link" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s partilhou a pasta %s consigo" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s partilhou o ficheiro %s consigo" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Transferir" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Carregar" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Cancelar envio" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Não há pré-visualização para" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Link direto" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 08cb33d574..1ad640315a 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Não foi possível eliminar %s de forma permanente" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Erro" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "Restaurado" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Não hà ficheiros. O lixo está vazio!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nome" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Restaurar" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Apagado" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Eliminar" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Ficheiros Apagados" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index aa1267bce6..96fd36945f 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,38 +19,38 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "A aplicação \"%s\" não pode ser instaladas por não ser compatível com esta versão da ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "O nome da aplicação não foi especificado" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Ajuda" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Pessoal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Configurações" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Utilizadores" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." @@ -63,15 +63,10 @@ msgstr "Ficheiro desconhecido" msgid "Invalid image" msgstr "Imagem inválida" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "serviços web sob o seu controlo" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "Não foi possível abrir \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." @@ -94,74 +89,78 @@ msgid "" "administrator." msgstr "Por favor descarregue os ficheiros divididos em partes mais pequenas ou peça ajuda ao seu administrador." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Não foi especificada uma fonte de instalação desta aplicação" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Não foi especificada uma href http para instalar esta aplicação" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Não foi especificado o caminho de instalação desta aplicação" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Arquivos do tipo %s não são suportados" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Ocorreu um erro ao abrir o ficheiro de instalação desta aplicação" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "A aplicação não disponibiliza um ficheiro info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "A aplicação não pode ser instalado devido a código não permitido dentro da aplicação" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "A aplicação não pode ser instalada por não ser compatível com esta versão do ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Esta aplicação não pode ser instalada por que contém o tag true que só é permitido para aplicações nativas" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Esta aplicação não pode ser instalada porque a versão no info.xml/version não coincide com a reportada na loja de aplicações" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "A directoria da aplicação já existe" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Não foi possível criar a pasta da aplicação. Por favor verifique as permissões. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "A aplicação não está activada" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Erro na autenticação" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "O token expirou. Por favor recarregue a página." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Ficheiros" @@ -201,8 +200,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Precisa de introduzir uma conta existente ou de administrador" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Nome de utilizador/password do MySQL inválida" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -229,21 +228,21 @@ msgstr "O comando gerador de erro foi: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "O utilizador '%s'@'localhost' do MySQL já existe." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Eliminar este utilizador do MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "O utilizador '%s'@'%%' do MySQL já existe" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Eliminar este utilizador do MySQL" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -270,66 +269,72 @@ msgstr "Definir um nome de utilizador de administrador" msgid "Set an admin password." msgstr "Definiar uma password de administrador" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Por favor verifique installation guides." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Não foi encontrado a categoria \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "Minutos atrás" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutos atrás" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n horas atrás" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "hoje" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ontem" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dias atrás" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "ultímo mês" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n meses atrás" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "ano passado" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index d92800eab3..6dee6b5348 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-13 14:43-0500\n" -"PO-Revision-Date: 2013-12-12 10:40+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,6 +23,48 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Encriptação" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Incapaz de carregar a lista da App Store" @@ -119,62 +161,90 @@ msgstr "Não foi possível alterar a sua palavra-passe, mas a chave de encripta msgid "Unable to change password" msgstr "Não foi possível alterar a sua password" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentação de Utilizador" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Actualizar para a versão {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Desactivar" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Activar" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Por favor aguarde..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Erro enquanto desactivava a aplicação" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Erro enquanto activava a aplicação" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "A Actualizar..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Erro enquanto actualizava a aplicação" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Erro" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Actualizar" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Seleccione uma fotografia de perfil" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo." -#: js/personal.js:287 -msgid "Saving..." -msgstr "A guardar..." - #: js/users.js:47 msgid "deleted" msgstr "apagado" @@ -187,40 +257,40 @@ msgstr "desfazer" msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupos" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Eliminar" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "Adicionar grupo" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Atenção: a pasta pessoal do utilizador \"{user}\" já existe" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -244,18 +314,42 @@ msgstr "Erros e problemas fatais" msgid "Fatal issues only" msgstr "Apenas problemas fatais" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Está a aceder %s via HTTP. Recomendamos vivamente que configure o servidor para forçar o uso de HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -264,68 +358,68 @@ msgid "" "root." msgstr "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. O seu ficheiro .htaccess não está a funcionar corretamente. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Aviso de setup" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Por favor verifique oGuia de instalação." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Falta o módulo 'fileinfo'" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "A sua versão do PHP está ultrapassada" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "A sua versão do PHP está ultrapassada. Recomendamos que actualize para a versão 5.3.8 ou mais recente, devido às versões anteriores conterem problemas. É também possível que esta instalação não esteja a funcionar correctamente." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Internacionalização não está a funcionar" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Não é possível pôr as definições de sistema compatíveis com UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Isto significa que podem haver problemas com alguns caracteres nos nomes dos ficheiros." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Recomendamos fortemente que instale no seu sistema todos os pacotes necessários para suportar os seguintes locales: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "A ligação à internet não está a funcionar" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -334,118 +428,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o serviço cron do sistema para chamar o ficheiro cron.php a cada 15 minutos." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Partilha" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Activar a API de partilha" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Permitir que os utilizadores usem a API de partilha" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Permitir que os utilizadores partilhem itens com o público utilizando um link." -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Permitir Envios Públicos" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir aos utilizadores que possam definir outros utilizadores para carregar ficheiros para as suas pastas publicas" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Permitir repartilha" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Permitir que os utilizadores partilhem com todos" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Segurança" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forçar os clientes a ligar a %s através de uma ligação encriptada" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor ligue-se a %s através de uma ligação HTTPS para ligar/desligar o uso de ligação por SSL" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Registo" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mais" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Menos" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versão" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Desenvolvido pela comunidade ownCloud, ocódigo fonte está licenciado sob a AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Adicione a sua aplicação" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Mais Aplicações" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Selecione uma aplicação" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Ver a página da aplicação em apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licenciado por " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentação de Utilizador" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentação de administrador." @@ -512,7 +654,7 @@ msgstr "Mostrar novamente Wizard de Arranque Inicial" msgid "You have used %s of the available %s" msgstr "Usou %s do disponivel %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Password" @@ -524,151 +666,149 @@ msgstr "A sua palavra-passe foi alterada" msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Nome completo" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Foto do perfil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Carregar novo" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Seleccionar novo a partir dos ficheiros" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Remover imagem" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "O seu avatar é fornecido pela sua conta original." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Abortar" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Escolha uma fotografia de perfil" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Idioma" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Utilize esta ligação para aceder aos seus ficheiros via WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Encriptação" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Password de entrada" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Desencriptar todos os ficheiros" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Nome de utilizador" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Criar" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Recuperar password de administrador" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Digite a senha de recuperação, a fim de recuperar os arquivos de usuários durante a mudança de senha" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Armazenamento Padrão" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Ilimitado" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Outro" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nome de utilizador" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Armazenamento" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "alterar nome completo" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "definir nova palavra-passe" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Padrão" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 048fb54948..9d94a100c6 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bruno Martins , 2013 +# Bruno Martins , 2013 +# Carlos , 2014 # Mouxy , 2013 -# Helder Meneses , 2013 +# Helder Meneses , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +27,7 @@ msgstr "Falhou a limpar os mapas" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "Erro ao eliminar as configurações do servidor" +msgstr "Erro ao eliminar a configuração do servidor" #: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" @@ -46,20 +47,20 @@ msgstr "" #: ajax/wizard.php:32 msgid "No action specified" -msgstr "" +msgstr "Nenhuma acção especificada" #: ajax/wizard.php:38 msgid "No configuration specified" -msgstr "" +msgstr "Nenhuma configuração especificada" #: ajax/wizard.php:81 msgid "No data specified" -msgstr "" +msgstr "Nenhuma data especificada" #: ajax/wizard.php:89 #, php-format msgid " Could not set configuration %s" -msgstr "" +msgstr "Não foi possível definir a configuração %s" #: js/settings.js:67 msgid "Deletion failed" @@ -89,43 +90,43 @@ msgstr "Sucesso" msgid "Error" msgstr "Erro" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" -msgstr "" +msgstr "Configuração OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" -msgstr "" +msgstr "Configuração incorreta" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" -msgstr "" +msgstr "Configuração incompleta" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" -msgstr "" +msgstr "Selecionar classes de objetos" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" -msgstr "" +msgstr "Selecionar atributos" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Teste de conecção passado com sucesso." -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Erro no teste de conecção." -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Deseja realmente apagar as configurações de servidor actuais?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Confirmar a operação de apagar" @@ -133,23 +134,23 @@ msgstr "Confirmar a operação de apagar" #, php-format msgid "%s group found" msgid_plural "%s groups found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s grupo encontrado" +msgstr[1] "%s grupos encontrados" #: lib/wizard.php:122 #, php-format msgid "%s user found" msgid_plural "%s users found" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%s utilizador encontrado" +msgstr[1] "%s utilizadores encontrados" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" -msgstr "" +msgstr "Hospedeiro Inválido" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" -msgstr "" +msgstr "Não se encontrou a função desejada" #: templates/part.settingcontrols.php:2 msgid "Save" @@ -165,63 +166,63 @@ msgstr "Ajuda" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 msgid "only those object classes:" -msgstr "" +msgstr "apenas essas classes de objetos:" #: templates/part.wizard-groupfilter.php:17 #: templates/part.wizard-userfilter.php:17 msgid "only from those groups:" -msgstr "" +msgstr "apenas desses grupos:" #: templates/part.wizard-groupfilter.php:25 #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Editar filtro raw em vez disso" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Filtro LDAP Raw" #: templates/part.wizard-groupfilter.php:31 #, php-format msgid "" "The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "" +msgstr "O filtro especifica quais grupos LDAP devem ter acesso à instância %s." #: templates/part.wizard-groupfilter.php:38 msgid "groups found" -msgstr "" +msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" -msgstr "" +msgstr "Nome de utilizador LDAP:" #: templates/part.wizard-loginfilter.php:16 msgid "LDAP Email Address:" -msgstr "" +msgstr "Endereço de correio eletrónico LDAP:" #: templates/part.wizard-loginfilter.php:24 msgid "Other Attributes:" -msgstr "" +msgstr "Outros Atributos:" #: templates/part.wizard-loginfilter.php:38 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "" +msgstr "Define o filtro a aplicar, quando se tenta uma sessão. %%uid substitui o nome de utilizador na ação de início de sessão. Exemplo: \"uid=%%uid\"" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" @@ -269,7 +270,7 @@ msgstr "Pode especificar o ND Base para utilizadores e grupos no separador Avan #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -280,7 +281,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:38 msgid "users found" -msgstr "" +msgstr "utilizadores encontrados" #: templates/part.wizardcontrols.php:5 msgid "Back" @@ -295,7 +296,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Aviso: A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações." #: templates/settings.php:14 msgid "" @@ -335,7 +336,7 @@ msgstr "Desactivar servidor principal" #: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "Ligar apenas ao servidor de réplicas." #: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" @@ -370,7 +371,7 @@ msgstr "Mostrador do nome de utilizador." #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "Atributo LDAP para gerar o nome de utilizador do ownCloud." #: templates/settings.php:33 msgid "Base User Tree" @@ -394,7 +395,7 @@ msgstr "Mostrador do nome do grupo." #: templates/settings.php:35 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "Atributo LDAP para gerar o nome do grupo do ownCloud." #: templates/settings.php:36 msgid "Base Group Tree" @@ -412,41 +413,51 @@ msgstr "Atributos de pesquisa de grupo" msgid "Group-Member association" msgstr "Associar utilizador ao grupo." -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atributos especiais" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Quota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Quota padrão" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "em bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Campo de email" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Regra da pasta inicial do utilizador" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Nome de utilizador interno" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -460,17 +471,17 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "Por padrão o nome de utilizador interno vai ser criado através do atributo UUID. Desta forma é assegurado que o nome é único e os caracteres não necessitam de serem convertidos. O nome interno tem a restrição de que apenas estes caracteres são permitidos: [ a-zA-Z0-9_.@- ]. Outros caracteres são substituídos pela sua correspondência ASCII ou simplesmente omitidos. Mesmo assim, quando for detetado uma colisão irá ser acrescentado um número. O nome interno é usado para identificar o utilizador internamente. É também o nome utilizado para a pasta inicial no ownCloud. É também parte de URLs remotos, como por exemplo os serviços *DAV. Com esta definição, o comportamento padrão é pode ser sobreposto. Para obter o mesmo comportamento antes do ownCloud 5 introduza o atributo do nome no campo seguinte. Deixe vazio para obter o comportamento padrão. As alterações apenas serão feitas para utilizadores mapeados (adicionados) LDAP." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atributo do nome de utilizador interno" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Passar a detecção do UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -481,19 +492,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 -msgid "UUID Attribute for Users:" -msgstr "" - #: templates/settings.php:57 -msgid "UUID Attribute for Groups:" -msgstr "" +msgid "UUID Attribute for Users:" +msgstr "Atributo UUID para utilizadores:" #: templates/settings.php:58 +msgid "UUID Attribute for Groups:" +msgstr "Atributo UUID para grupos:" + +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Mapeamento do utilizador LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -507,10 +518,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Limpar mapeamento do utilizador-LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Limpar o mapeamento do nome de grupo LDAP" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index f2ee984065..38e20f121d 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,7 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s Partajat »%s« cu tine de" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -76,139 +71,143 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Duminică" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Luni" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Marți" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Miercuri" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Joi" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Vineri" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sâmbătă" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Ianuarie" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februarie" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Martie" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Aprilie" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mai" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Iunie" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Iulie" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Septembrie" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Octombrie" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Noiembrie" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Decembrie" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Setări" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "astăzi" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ieri" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "ultima lună" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "ultimul an" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "ani în urmă" @@ -277,6 +276,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Partajat" @@ -285,12 +304,12 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Eroare" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -302,123 +321,123 @@ msgstr "Eroare la anularea partajării" msgid "Error while changing permissions" msgstr "Eroare la modificarea permisiunilor" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Distribuie cu tine si grupul {group} de {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Distribuie cu tine de {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Protejare cu parolă" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Parolă" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Permiteţi încărcarea publică." -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Expediază legătura prin poșta electronică" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Expediază" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Specifică data expirării" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Data expirării" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Distribuie prin email:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grup" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "poate edita" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "control acces" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "creare" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "actualizare" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "ștergere" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "partajare" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Mesajul a fost expediat" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Atenție" @@ -465,11 +484,17 @@ msgstr "Actualizarea a eșuat! Raportați problema către Esti sigur ca email-ul/numele de utilizator sunt corec msgid "You will receive a link to reset your password via Email." msgstr "Vei primi un mesaj prin care vei putea reseta parola via email." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Nume utilizator" @@ -534,7 +559,7 @@ msgstr "Personal" msgid "Users" msgstr "Utilizatori" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplicații" @@ -644,49 +669,47 @@ msgstr "Pentru informații despre cum să configurezi serverul, vezi admin account
" msgstr "Crează un cont de administrator" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avansat" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Director date" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Configurează baza de date" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "vor fi folosite" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -702,7 +725,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s este disponibil. Vezi mai multe informații despre procesul de actualizare." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Ieșire" @@ -728,27 +751,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Ai uitat parola?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "amintește" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Autentificare" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Conectări alternative" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 7d9acd7661..86a81a1711 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,36 +32,48 @@ msgstr "%s nu se poate muta - Fișierul cu acest nume există deja " msgid "Could not move %s" msgstr "Nu s-a putut muta %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Numele fișierului nu poate rămâne gol." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nume invalide, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -69,239 +81,234 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Imposibil de a seta directorul pentru incărcare." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Jeton Invalid" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste marimea maxima permisa in php.ini: " -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Nu a fost încărcat nici un fișier" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Eroare la scrierea discului" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Nu este suficient spațiu disponibil" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Încărcare eșuată. Nu se pot obține informații despre fișier." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Încărcare eșuată. Nu se poate găsi fișierul încărcat" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Încărcare eșuată. Nu se pot obține informații despre fișier." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "registru invalid." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Fișiere" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nu se poate încărca {filename} deoarece este un director sau are mărimea de 0 octeți" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nu este suficient spațiu disponibil" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Nu se poate obține rezultatul de la server." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "a imparti" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Stergere permanenta" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "in timpul" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n director" msgstr[1] "%n directoare" msgstr[2] "%n directoare" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fișier" msgstr[1] "%n fișiere" msgstr[2] "%n fișiere" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} și {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Se încarcă %n fișier." msgstr[1] "Se încarcă %n fișiere." msgstr[2] "Se încarcă %n fișiere." -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' este un nume invalid de fișier." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nume invalide, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Spatiul de stocare este plin, fisierele nu mai pot fi actualizate sau sincronizate" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Spatiul de stocare este aproape plin {spatiu folosit}%" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "in curs de descarcare. Aceasta poate să dureze ceva timp dacă fișierele sunt mari." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Eroare la mutarea fișierului" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Eroare" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Nume" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Dimensiune" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Modificat" @@ -309,12 +316,12 @@ msgstr "Modificat" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s nu a putut fi redenumit" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Încărcare" @@ -350,69 +357,69 @@ msgstr "Dimensiunea maximă de intrare pentru fișiere compresate" msgid "Save" msgstr "Salvează" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nou" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "lista" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Dosar" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "de la adresa" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Sterge fisierele" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Descarcă" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Șterge" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, asteptati va rog" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index 2c475db5a0..69ab253275 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# DaniR , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,39 +20,39 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Cheia de recupeare a fost activata cu succes" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Nu s-a putut activa cheia de recuperare. Verifica parola de recuperare!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Cheia de recuperare dezactivata cu succes" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Nu am putut dezactiva cheia de recuperare. Verifica parola de recuperare!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Parola a fost modificată cu succes." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Parola nu a putut fi schimbata. Poate ca parola veche este incorecta." #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Cheia privata a fost actualizata cu succes" #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Nu am putut actualiza parola pentru cheia privata. Poate ca parola veche este incorecta." #: files/error.php:12 msgid "" @@ -80,18 +81,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +100,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Se salvează..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -109,7 +110,7 @@ msgstr "" #: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "setari personale" #: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" @@ -130,11 +131,11 @@ msgstr "" #: templates/settings-admin.php:21 templates/settings-personal.php:51 msgid "Enabled" -msgstr "" +msgstr "Activat" #: templates/settings-admin.php:29 templates/settings-personal.php:59 msgid "Disabled" -msgstr "" +msgstr "Dezactivat" #: templates/settings-admin.php:34 msgid "Change recovery key password:" @@ -154,11 +155,11 @@ msgstr "" #: templates/settings-admin.php:58 msgid "Change Password" -msgstr "" +msgstr "Schimbă parola" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Parola cheii private nu se mai potriveste cu parola ta de logare:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." @@ -194,8 +195,8 @@ msgstr "" #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "Setarile pentru recuperarea fisierelor au fost actualizate" #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "Nu am putut actualiza recuperarea de fisiere" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 69aa8b63bc..701902d245 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Acces permis" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Eroare la configurarea mediului de stocare Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Permite accesul" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Prezintă te rog o cheie de Dropbox validă și parola" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Eroare la configurarea mediului de stocare Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." -#: lib/config.php:465 +#: lib/config.php:516 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 "Atenție: suportul pentru FTP în PHP nu este activat sau instalat. Montarea mediilor FPT partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleze." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Utilizatori" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Șterge" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Permite stocare externă pentru utilizatori" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Permite utilizatorilor să monteze stocare externă proprie" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Certificate SSL root" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importă certificat root" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index f5960b814f..f7f4f9bc0f 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -54,32 +58,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s a partajat directorul %s cu tine" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s a partajat fișierul %s cu tine" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Descarcă" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Încărcare" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Anulează încărcarea" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Nici o previzualizare disponibilă pentru " - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index ca45c2337b..418b3ac186 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Eroare" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Nume" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Șterge" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 38e5a85313..b95c7873cf 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# I Robot , 2013 +# I Robot, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +18,38 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Ajutor" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personal" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Setări" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Utilizatori" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -62,15 +62,10 @@ msgstr "Tip fișier necunoscut" msgid "Invalid image" msgstr "Imagine invalidă" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "servicii web controlate de tine" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." @@ -93,74 +88,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Aplicația nu este activată" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Eroare la autentificare" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token expirat. Te rugăm să reîncarci pagina." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fișiere" @@ -200,7 +199,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -228,20 +227,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -269,70 +268,76 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Vă rugăm să verificați ghiduri de instalare." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Cloud nu a gasit categoria \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "secunde în urmă" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n minute" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n ore" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "astăzi" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ieri" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n zile" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "ultima lună" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "ultimul an" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 4841638de4..81c976edda 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,48 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Încriptare" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Imposibil de actualizat lista din App Store." @@ -115,61 +157,89 @@ msgstr "" msgid "Unable to change password" msgstr "Imposibil de schimbat parola" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Documentație utilizator" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Actualizat la {versiuneaaplicaţiei}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Dezactivați" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Activare" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Aşteptaţi vă rog...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Actualizare în curs...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Eroare în timpul actualizării aplicaţiei" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Eroare" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Actualizare" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Actualizat" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Se salvează..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -183,40 +253,40 @@ msgstr "Anulează ultima acțiune" msgid "Unable to remove user" msgstr "Imposibil de eliminat utilizatorul" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupuri" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupul Admin " -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Șterge" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "adăugaţi grupul" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Trebuie să furnizaţi un nume de utilizator valid" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Eroare la crearea utilizatorului" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Trebuie să furnizaţi o parolă validă" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "_language_name_" @@ -240,18 +310,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Avertisment de securitate" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -260,68 +354,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Atenţie la implementare" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Modulul \"Fileinfo\" lipsește" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Localizarea nu funcționează" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Conexiunea la internet nu funcționează" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -330,118 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Execută o sarcină la fiecare pagină încărcată" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Partajare" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Activare API partajare" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Permite aplicațiilor să folosească API-ul de partajare" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Pemite legături" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Permite utilizatorilor să partajeze fișiere în mod public prin legături" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Permite încărcări publice" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Permite repartajarea" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Securitate" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mai mult" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Adaugă aplicația ta" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Mai multe aplicații" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Selectează o aplicație" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Vizualizează pagina applicației pe apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licențiat " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Documentație utilizator" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Documentație administrator" @@ -508,7 +650,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "Ați utilizat %s din %s disponibile" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Parolă" @@ -520,151 +662,149 @@ msgstr "Parola a fost modificată" msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Completează o adresă de mail pentru a-ți putea recupera parola" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Imagine de profil" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Înlătură imagine" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Alege drept imagine de profil" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Limba" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Încriptare" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Crează" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Stocare implicită" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Nelimitată" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Altele" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Nume utilizator" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Stocare" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "setează parolă nouă" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Implicită" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 9edb1afcd3..c75faaa5ef 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "Succes" msgid "Error" msgstr "Eroare" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -164,7 +164,7 @@ msgstr "Ajutor" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -200,7 +200,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -268,7 +268,7 @@ msgstr "Puteți să specificați DN de bază pentru utilizatori și grupuri în #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -411,41 +411,51 @@ msgstr "" msgid "Group-Member association" msgstr "Asocierea Grup-Membru" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "în octeți" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lăsați gol pentru numele de utilizator (implicit). În caz contrar, specificați un atribut LDAP / AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index e1f8d17842..e6b3ec833b 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -10,7 +10,7 @@ # Evgeniy Spitsyn , 2013 # jekader , 2013 # Mescalinich , 2013 -# stushev , 2013 +# stushev, 2013 # eurekafag , 2013 # sk.avenger , 2013 # Victor Bravo <>, 2013 @@ -23,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-22 17:10+0000\n" -"Last-Translator: Evgeniy Spitsyn \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,12 +33,7 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s поделился »%s« с вами" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Невозможно отправить письмо следующим пользователям: %s" @@ -88,139 +83,143 @@ msgstr "Временная картинка профиля недоступна, msgid "No crop data provided" msgstr "Не указана информация о кадрировании" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Воскресенье" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Понедельник" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Вторник" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Среда" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Четверг" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Пятница" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Суббота" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Январь" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Февраль" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Март" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Апрель" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Май" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Июнь" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Июль" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Август" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Сентябрь" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Октябрь" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Ноябрь" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Декабрь" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "сегодня" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "вчера" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "в прошлом году" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "несколько лет назад" @@ -289,6 +288,26 @@ msgstr "({count} выбрано)" msgid "Error loading file exists template" msgstr "Ошибка при загрузке шаблона существующего файла" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Общие" @@ -297,12 +316,12 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Ошибка" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -314,123 +333,123 @@ msgstr "Ошибка при закрытии доступа" msgid "Error while changing permissions" msgstr "Ошибка при смене разрешений" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} открыл доступ для Вас и группы {group} " -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} открыл доступ для Вас" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Поделиться с пользователем или группой..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Поделиться ссылкой" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Пароль" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Разрешить открытую загрузку" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Почтовая ссылка на персону" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Отправить" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Установить срок доступа" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Дата окончания" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Поделится через электронную почту:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "группа" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "уведомить по почте" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "может редактировать" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "контроль доступа" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "создать" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "обновить" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "удалить" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "открыть доступ" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Письмо отправлено" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Предупреждение" @@ -477,11 +496,17 @@ msgstr "При обновлении произошла ошибка. Пожал msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud..." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s сброс пароля" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Используйте следующую ссылку чтобы сбросить пароль: {link}" @@ -501,8 +526,8 @@ msgstr "Запрос не удался. Вы уверены, что email или msgid "You will receive a link to reset your password via Email." msgstr "На ваш адрес Email выслана ссылка для сброса пароля." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Имя пользователя" @@ -546,7 +571,7 @@ msgstr "Личное" msgid "Users" msgstr "Пользователи" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Приложения" @@ -656,49 +681,47 @@ msgstr "Для информации, как правильно настроит msgid "Create an admin account" msgstr "Создать учётную запись администратора" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Дополнительно" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Директория с данными" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Настройка базы данных" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "будет использовано" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Завершить установку" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Завершаем..." @@ -714,7 +737,7 @@ msgstr "Это приложение требует включённый JavaScri msgid "%s is available. Get more information on how to update." msgstr "%s доступно. Получить дополнительную информацию о порядке обновления." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Выйти" @@ -740,28 +763,28 @@ msgstr "Неудачная аутентификация с сервером!" msgid "Please contact your administrator." msgstr "Пожалуйста, свяжитесь с вашим администратором." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "запомнить" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Войти" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Альтернативные имена пользователя" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Здравствуйте,

просто даём вам знать, что %s расшарил %s для вас.
Посмотреть!

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 71eb028f58..fa12eaaf4a 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -6,6 +6,7 @@ # lord93 , 2013 # Evgeniy Spitsyn , 2013 # jekader , 2013 +# mogarych , 2014 # eurekafag , 2013 # Victor Bravo <>, 2013 # vsapronov , 2013 @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-24 01:55-0500\n" -"PO-Revision-Date: 2013-12-22 17:50+0000\n" -"Last-Translator: Evgeniy Spitsyn \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,36 +38,48 @@ msgstr "Невозможно переместить %s - файл с таким msgid "Could not move %s" msgstr "Невозможно переместить %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Имя файла не может быть пустым." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Имя файла не должно содержать символ \"/\". Пожалуйста, выберите другое имя." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." -msgstr "Имя %s уже используется в папке %s. Пожалуйста выберите другое имя." +msgstr "Имя %s уже используется для каталога %s. Пожалуйста, выберите другое имя." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Неправильный источник" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" -msgstr "Ошибка при загрузке %s в %s" +msgstr "Ошибка при скачивании %s в %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Ошибка при создании файла" @@ -74,252 +87,247 @@ msgstr "Ошибка при создании файла" msgid "Folder name cannot be empty." msgstr "Имя папки не может быть пустым." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Имя папки не должно содержать символ \"/\". Пожалуйста, выберите другое имя." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" -msgstr "Ошибка при создании папки" +msgstr "Ошибка создания каталога" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Не удалось установить каталог загрузки." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Недопустимый маркер" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Файл превышает размер установленный upload_max_filesize в php.ini:" +msgstr "Файл превышает размер, установленный параметром upload_max_filesize в php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Загружаемый файл превосходит значение переменной MAX_FILE_SIZE, указанной в форме HTML" - -#: ajax/upload.php:75 -msgid "The uploaded file was only partially uploaded" -msgstr "Файл загружен частично" - -#: ajax/upload.php:76 -msgid "No file was uploaded" -msgstr "Файл не был загружен" - -#: ajax/upload.php:77 -msgid "Missing a temporary folder" -msgstr "Отсутствует временная папка" +msgstr "Загруженный файл превышает размер, установленный параметром MAX_FILE_SIZE в HTML-форме" #: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "Файл загружен лишь частично" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "Ни одного файла загружено не было" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "Отсутствует временный каталог" + +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:127 ajax/upload.php:154 +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "Загрузка не удалась. Невозможно найти загружаемый файл" + +#: ajax/upload.php:166 msgid "Upload failed. Could not get file info." msgstr "Загрузка не удалась. Невозможно получить информацию о файле" -#: ajax/upload.php:144 -msgid "Upload failed. Could not find uploaded file" -msgstr "Загрузка не удалась. Невозможно найти загруженный файл" - -#: ajax/upload.php:172 +#: ajax/upload.php:185 msgid "Invalid directory." -msgstr "Неправильный каталог." +msgstr "Неверный каталог." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Файлы" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "Невозможно загрузить файл {filename} так как он является директорией либо имеет размер 0 байт" +msgstr "Невозможно загрузить {filename}, так как это либо каталог, либо файл нулевого размера" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Недостаточно свободного места" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." -msgstr "Не получен ответ от сервера" +msgstr "Не удалось получить ответ от сервера." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." +msgstr "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" -msgstr "В домашней папке 'Shared' зарезервированное имя файла" +msgstr "'Shared' - это зарезервированное имя файла в домашнем каталоге" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Не удалось создать файл" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" -msgstr "Не удалось создать папку" +msgstr "Не удалось создать каталог" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Ошибка получения URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Открыть доступ" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" -msgstr "Удалено навсегда" +msgstr "Удалить окончательно" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Не удалось переименовать файл" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "отмена" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Ошибка при удалении файла." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" -msgstr[0] "%n папка" -msgstr[1] "%n папки" -msgstr[2] "%n папок" +msgstr[0] "%n каталог" +msgstr[1] "%n каталога" +msgstr[2] "%n каталогов" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файла" msgstr[2] "%n файлов" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Закачка %n файла" msgstr[1] "Закачка %n файлов" msgstr[2] "Закачка %n файлов" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' - неправильное имя файла." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "Ваше дисковое пространство полностью заполнено, произведите очистку перед загрузкой новых файлов." +msgstr "Ваше хранилище заполнено, произведите очистку перед загрузкой новых файлов." -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Приложение для шифрования активно, но ваши ключи не инициализированы, пожалуйста, перелогиньтесь" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "Неверный приватный ключ для приложения шифрования. Пожалуйста, обноваите ваш приватный ключ в персональных настройках чтобы восстановить доступ к вашим зашифрованным файлам." +msgstr "Закрытый ключ приложения шифрования недействителен. Обновите закрытый ключ в личных настройках, чтобы восстановить доступ к зашифрованным файлам." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "Шифрование было отключено, но ваши файлы все еще зашифрованы. Пожалуйста, зайдите на страницу персональных настроек для того, чтобы расшифровать ваши файлы." +msgstr "Шифрование было отключено, но ваши файлы остались зашифрованными. Зайдите на страницу личных настроек для того, чтобы расшифровать их." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." +msgstr "Идёт подготовка к скачиванию. Это может занять некоторое время, если файлы большого размера." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Ошибка при перемещении файла" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Ошибка" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Имя" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Размер" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" -msgstr "Изменён" +msgstr "Дата изменения" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s не может быть переименован" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Загрузка" @@ -341,7 +349,7 @@ msgstr "Требуется для скачивания нескольких фа #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "Включить ZIP-скачивание" +msgstr "Включить скачивание в виде архивов ZIP" #: templates/admin.php:20 msgid "0 is unlimited" @@ -355,69 +363,69 @@ msgstr "Максимальный исходный размер для ZIP фай msgid "Save" msgstr "Сохранить" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Новый" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Новый текстовый файл" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Текстовый файл" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" -msgstr "Новая папка" +msgstr "Новый каталог" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" -msgstr "Папка" +msgstr "Каталог" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" -msgstr "Из ссылки" +msgstr "Объект по ссылке" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Удалённые файлы" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" -msgstr "Отмена загрузки" +msgstr "Отменить загрузку" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" -msgstr "У вас недостаточно прав для загрузки или создания файлов отсюда." +msgstr "У вас нет прав для загрузки или создания файлов здесь." -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Скачать" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Удалить" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Файл слишком велик" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере." +msgstr "Файлы, которые вы пытаетесь загрузить, превышают лимит максимального размера на этом сервере." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Подождите, файлы сканируются." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 821add2380..07f348b79d 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 04:00+0000\n" -"Last-Translator: vsapronov \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,18 +87,18 @@ msgid "" "administrator" msgstr "Неизвестная ошибка, пожалуйста, проверьте системные настройки или свяжитесь с администратором" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Требования отсутствуют." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Пожалуйста, убедитесь, что версия PHP 5.3.3 или новее, а также, что OpenSSL и соответствующее расширение PHP включены и правильно настроены. На данный момент приложение шифрования отключено." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Для следующих пользователей шифрование не настроено:" @@ -106,9 +106,9 @@ msgstr "Для следующих пользователей шифровани msgid "Initial encryption started... This can take some time. Please wait." msgstr "Начато начальное шифрование... Это может занять какое-то время. Пожалуйста, подождите." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Сохранение..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 24a62cae43..6af3711cc6 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-18 11:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Доступ предоставлен" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Ошибка при настройке хранилища Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Предоставление доступа" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Пожалуйста, предоставьте действующий ключ Dropbox и пароль." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища Google Drive" -#: lib/config.php:467 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:471 +#: lib/config.php:516 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:474 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Пользователи" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Удалить" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Включить пользовательские внешние носители" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Разрешить пользователям монтировать их собственные внешние носители" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Корневые сертификаты SSL" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Импортировать корневые сертификаты" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 2b5eca9c97..31e8bc0c0e 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mogarych , 2014 # Victor Bravo <>, 2013 # not_your_conscience , 2013 # Den4md , 2013 @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: not_your_conscience \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,9 +21,13 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "Эта шара защищена паролем" +msgstr "Общий ресурс защищён паролем" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." @@ -50,38 +55,22 @@ msgstr "срок ссылки истёк" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "обмен отключен" +msgstr "общий доступ отключён" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку." +msgstr "Пожалуйста, обратитесь к отправителю данной ссылки." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s открыл доступ к папке %s для Вас" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s открыл доступ к файлу %s для Вас" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Скачать" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Загрузка" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Отмена загрузки" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Предпросмотр недоступен для" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Прямая ссылка" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 4e30a52f76..519a953a15 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.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-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-18 11:40+0000\n" -"Last-Translator: baden \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,21 +19,25 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s не может быть удалён навсегда" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "%s не может быть восстановлен" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Ошибка" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "восстановлен" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index cb1007c9a5..ac96e2405a 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,38 +24,38 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Приложение \"%s\" нельзя установить, так как оно не совместимо с текущей версией ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Не выбрано имя приложения" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Помощь" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Личное" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Конфигурация" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Пользователи" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." @@ -68,15 +68,10 @@ msgstr "Неизвестный тип файла" msgid "Invalid image" msgstr "Изображение повреждено" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "не могу открыть \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." @@ -99,74 +94,78 @@ msgid "" "administrator." msgstr "Загрузите файлы раздельно маленькими частями или вежливо попросите вашего администратора." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Не указан источник при установке приложения" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Не указан атрибут href при установке приложения через http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Не указан путь при установке приложения из локального файла" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Архивы %s не поддерживаются" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Не возможно открыть архив при установке приложения" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Приложение не имеет файла info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Приложение невозможно установить. В нем содержится запрещенный код." -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Приложение невозможно установить. Не совместимо с текущей версией ownCloud." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Приложение невозможно установить. Оно содержит параметр true который не допустим для приложений, не входящих в поставку." -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Приложение невозможно установить. Версия в info.xml/version не совпадает с версией заявленной в магазине приложений" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Папка приложения уже существует" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Не удалось создать директорию. Исправьте права доступа. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Приложение не разрешено" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Ошибка аутентификации" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Токен просрочен. Перезагрузите страницу." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Файлы" @@ -206,8 +205,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Вы должны войти или в существующий аккаунт или под администратором." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Неверное имя пользователя и/или пароль MySQL" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -234,21 +233,21 @@ msgstr "Вызываемая команда была: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Пользователь MySQL '%s'@'localhost' уже существует." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Удалить этого пользователя из MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Пользователь MySQL '%s'@'%%' уже существует" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Удалить этого пользователя из MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -275,70 +274,76 @@ msgstr "Установить имя пользователя для admin." msgid "Set an admin password." msgstr "становит пароль для admin." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Категория \"%s\" не найдена" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "несколько секунд назад" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минута назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "сегодня" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "в прошлом месяце" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "в прошлом году" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 91d66080a2..948a25e9a4 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 23:30+0000\n" -"Last-Translator: stushev\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,6 +32,48 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Шифрование" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Не удалось загрузить список из App Store" @@ -128,62 +170,90 @@ msgstr "Используемый механизм не поддерживает msgid "Unable to change password" msgstr "Невозможно изменить пароль" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Пользовательская документация" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Обновить до {версия приложения}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Выключить" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Включить" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Подождите..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Ошибка отключения приложения" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Ошибка включения приложения" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Обновление..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Ошибка при обновлении приложения" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Ошибка" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Обновить" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Обновлено" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Выберите картинку профиля" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Сохранение..." - #: js/users.js:47 msgid "deleted" msgstr "удален" @@ -196,40 +266,40 @@ msgstr "отмена" msgid "Unable to remove user" msgstr "Невозможно удалить пользователя" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Группы" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Администратор группы" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Удалить" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "добавить группу" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Предупреждение: домашняя папка пользователя \"{user}\" уже существует" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Русский " @@ -253,18 +323,42 @@ msgstr "Ошибки и критические проблемы" msgid "Fatal issues only" msgstr "Только критические проблемы" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Предупреждение безопасности" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Вы обращаетесь к %s используя HTTP. Мы настоятельно рекомендуем вам настроить сервер на использование HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -273,68 +367,68 @@ msgid "" "root." msgstr "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Предупреждение установки" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' отсутствует" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Ваша версия PHP устарела" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Локализация не работает" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Невозможно установить системную локаль, поддерживающую UTF-8" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Это значит, что могут быть проблемы с некоторыми символами в именах файлов." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Интернет-соединение не работает" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -343,118 +437,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Планировщик задач по расписанию" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Выполнять одно задание с каждой загруженной страницей" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php зарегестрирован в webcron и будет вызываться каждые 15 минут по http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Использовать системный cron для вызова cron.php каждые 15 минут." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Общий доступ" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Включить API общего доступа" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Позволить приложениям использовать API общего доступа" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Разрешить открытые загрузки" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Разрешить пользователям позволять другим загружать в их открытые папки" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Разрешить переоткрытие общего доступа" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Разрешить пользователя делать общий доступ любому" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Разрешить уведомление по почте" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Разрешить пользователю оповещать почтой о расшаренных файлах" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Журнал" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Уровень детализации журнала" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Больше" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Меньше" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Версия" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Разрабатывается сообществом ownCloud, исходный код доступен под лицензией AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Добавить приложение" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Больше приложений" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Выберите приложение" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Смотрите дополнения на apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr " лицензия. Автор " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Пользовательская документация" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Документация администратора" @@ -521,7 +663,7 @@ msgstr "Показать помощник настройки" msgid "You have used %s of the available %s" msgstr "Вы использовали %s из доступных %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Пароль" @@ -533,151 +675,149 @@ msgstr "Ваш пароль изменён" msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Полное имя" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Фото профиля" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Загрузить новую" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Выберите новый из файлов" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Удалить изображение" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Либо png, либо jpg. Изображение должно быть квадратным, но вы сможете обрезать его позже." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Будет использован аватар вашей оригинальной учетной записи." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Отмена" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Выберите изображение профиля" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Язык" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Используйте этот адресс для доступа к вашим файлам через WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Шифрование" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Пароль входа" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Снять шифрование со всех файлов" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Имя пользователя" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Создать" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Восстановление пароля администратора" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Хранилище по умолчанию" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Неограниченно" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Другое" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Имя пользователя" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Хранилище" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "изменить полное имя" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "установить новый пароль" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "По умолчанию" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 686aeb1269..5622e48b34 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -8,6 +8,7 @@ # alfsoft , 2013 # jekader , 2013 # Евгений Белоусов , 2013 +# mogarych , 2014 # unixoid , 2013 # vsapronov , 2013 # not_your_conscience , 2013 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,43 +96,43 @@ msgstr "Успешно" msgid "Error" msgstr "Ошибка" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Конфигурация в порядке" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Конфигурация неправильна" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Конфигурация не завершена" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Выберите группы" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Выберите объектные классы" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Выберите атрибуты" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Проверка соединения удалась" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Проверка соединения не удалась" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Вы действительно хотите удалить существующую конфигурацию сервера?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Подтверждение удаления" @@ -151,11 +152,11 @@ msgstr[0] "%s пользователь найден" msgstr[1] "%s пользователя найдено" msgstr[2] "%s пользователей найдено" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Неверный сервер" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Не могу найти требуемой функциональности" @@ -173,8 +174,8 @@ msgstr "Помощь" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Ограничить доступ к %s группам, удовлетворяющим этому критерию:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -209,8 +210,8 @@ msgid "groups found" msgstr "групп найдено" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Какой атрибут должен быть использован для логина:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -277,8 +278,8 @@ msgstr "Вы можете задать Base DN для пользователей #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Ограничить доступ к %s пользователям, удовлетворяющим этому критерию:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -420,41 +421,51 @@ msgstr "Атрибуты поиска для группы" msgid "Group-Member association" msgstr "Ассоциация Группа-Участник" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Специальные атрибуты" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Поле квоты" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Квота по умолчанию" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "в байтах" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Поле адреса электронной почты" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Правило именования домашней папки пользователя" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Оставьте пустым для использования имени пользователя (по умолчанию). Иначе укажите атрибут LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Внутреннее имя пользователя" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -470,15 +481,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "По умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Таким образом имя пользователя становится уникальным и не требует конвертации символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено или увеличено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по умолчанию для папки пользователя в ownCloud. Оно также является частью URL, к примеру, для всех сервисов *DAV. С помощью данной настройки можно изменить поведение по умолчанию. Чтобы достичь поведения, как было до ownCloud 5, введите атрибут отображаемого имени пользователя в этом поле. Оставьте его пустым для режима по умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Атрибут для внутреннего имени:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Переопределить нахождение UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -487,21 +498,21 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "По умолчанию ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." +msgstr "По умолчанию ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно идентифицировать пользователей и группы LDAP. Также на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID-атрибуты для пользователей:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID-атрибуты для групп:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Соответствия Имя-Пользователь LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -515,10 +526,10 @@ msgid "" "experimental stage." msgstr "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется различающееся имя (DN) для уменьшения числа обращений к LDAP, однако оно не используется для идентификации. Если различающееся имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP-подключения! Ни в коем случае не рекомендуется сбрасывать привязки, если система уже находится в эксплуатации, только на этапе тестирования." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Очистить соответствия Имя-Пользователь LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Очистить соответствия Группа-Группа LDAP" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index ff4597f8a1..2c0c94cc3d 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "ඉරිදා" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "සඳුදා" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "අඟහරුවාදා" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "බදාදා" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "සිකුරාදා" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "සෙනසුරාදා" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "ජනවාරි" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "පෙබරවාරි" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "මාර්තු" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "අප්‍රේල්" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "මැයි" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "ජූනි" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "ජූලි" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "අගෝස්තු" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "සැප්තැම්බර්" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "ඔක්තෝබර" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "නොවැම්බර්" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "අද" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "දෝෂයක්" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "මුර පදය" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "කල් ඉකුත් විමේ දිනය දමන්න" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "කල් ඉකුත් විමේ දිනය" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "විද්‍යුත් තැපෑල මඟින් බෙදාගන්න: " -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "කණ්ඩායම" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "ප්‍රවේශ පාලනය" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "සදන්න" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "මකන්න" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "අවවාදය" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "ඔබගේ මුරපදය ප්‍රත්‍යාරම්භ කිරීම සඳහා යොමුව විද්‍යුත් තැපෑලෙන් ලැබෙනු ඇත" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "පරිශීලක නම" @@ -525,7 +550,7 @@ msgstr "පෞද්ගලික" msgid "Users" msgstr "පරිශීලකයන්" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "යෙදුම්" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "දියුණු/උසස්" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "දත්ත ෆෝල්ඩරය" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "දත්ත සමුදාය හැඩගැසීම" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "භාවිතා වනු ඇත" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "නික්මීම" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "මුරපදය අමතකද?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "මතක තබාගන්න" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "ප්‍රවේශවන්න" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 9df11d7710..5c70561319 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "ගොනුවක් උඩුගත නොවුණි" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් අතුරුදහන්" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "ගොනු" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "දෝෂයක්" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "නම" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "වෙනස් කළ" @@ -301,12 +308,12 @@ msgstr "වෙනස් කළ" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "උඩුගත කරන්න" @@ -342,69 +349,69 @@ msgstr "ZIP ගොනු සඳහා දැමිය හැකි උපරි msgid "Save" msgstr "සුරකින්න" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "නව" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "පෙළ ගොනුව" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "ෆෝල්ඩරය" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "යොමුවෙන්" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "බාන්න" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "මකා දමන්න" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 7edd1f497a..bd5b1eb2e3 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "සුරැකෙමින් පවතී..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index cfd9ed24ec..9e8b521ac5 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "පිවිසීමට හැක" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Dropbox ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "පිවිසුම ලබාදෙන්න" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "කරුණාකර වලංගු Dropbox යෙදුම් යතුරක් හා රහසක් ලබාදෙන්න." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Google Drive ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "පරිශීලකයන්" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "මකා දමන්න" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "පරිශීලක භාහිර ගබඩාවන් සක්‍රිය කරන්න" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "පරිශීලකයන්ට තමාගේම භාහිර ගබඩාවන් මවුන්ට් කිරීමේ අයිතිය දෙන්න" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL මූල සහතිකයන්" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "මූල සහතිකය ආයාත කරන්න" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index fd643b4125..58f715f18b 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "බාන්න" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "උඩුගත කරන්න" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "උඩුගත කිරීම අත් හරින්න" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "පූර්වදර්ශනයක් නොමැත" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 93598dcd45..d34ed9fd0b 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "දෝෂයක්" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "නම" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "මකා දමන්න" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 584bebcb4d..8699aa3e99 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "උදව්" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "පෞද්ගලික" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "සිටුවම්" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "පරිශීලකයන්" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "පරිපාලක" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්‍රියයි" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "යෙදුම සක්‍රිය කර නොමැත" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "සත්‍යාපන දෝෂයක්" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ගොනු" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "අද" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "ඊයේ" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "පෙර මාසයේ" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index f2d8b41cc8..ee499a6886 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "ගුප්ත කේතනය" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "අක්‍රිය කරන්න" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "සක්‍රිය කරන්න" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "දෝෂයක්" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "යාවත්කාල කිරීම" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "සුරැකෙමින් පවතී..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "නිෂ්ප්‍රභ කරන්න" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "කණ්ඩායම්" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "කාණ්ඩ පරිපාලක" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "මකා දමන්න" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "ආරක්ෂක නිවේදනයක්" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "හුවමාරු කිරීම" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "යොමු සලසන්න" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "යළි යළිත් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "හුවමාරු කළ හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "වැඩි" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "අඩු" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "නිපදන ලද්දේ ownCloud සමාජයෙන්, the මුල් කේතය ලයිසන්ස් කර ඇත්තේ AGPL යටතේ." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "යෙදුමක් එක් කිරීම" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "තවත් යෙදුම්" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "යෙදුමක් තොරන්න" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "මුර පදය" @@ -518,151 +660,149 @@ msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "විද්‍යුත් තැපෑල" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "ඔබගේ විද්‍යුත් තැපෑල" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "මුරපද ප්‍රතිස්ථාපනය සඳහා විද්‍යුත් තැපැල් විස්තර ලබා දෙන්න" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "ගුප්ත කේතනය" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "තනන්න" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "වෙනත්" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "පරිශීලක නම" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index f7bb2e04b6..5fb71e19e5 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "සාර්ථකයි" msgid "Error" msgstr "දෝෂයක්" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "උදව්" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 1d149c8a11..6ac9fe71d8 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 15:30+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -17,12 +17,7 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,139 +67,143 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Nedeľa" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Pondelok" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Utorok" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Streda" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Štvrtok" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Piatok" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sobota" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Január" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Február" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Marec" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Apríl" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Máj" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Jún" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Júl" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Október" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "December" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -273,6 +272,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -281,12 +300,12 @@ msgstr "" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -298,123 +317,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "skupina" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -461,11 +480,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -485,8 +510,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -530,7 +555,7 @@ msgstr "Osobné" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -640,49 +665,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Pokročilé" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -698,7 +721,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -724,27 +747,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/sk/files.po b/l10n/sk/files.po index dee18527fb..304ed950fb 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: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 15:30+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,239 +76,234 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Zdieľať" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -304,12 +311,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -345,69 +352,69 @@ msgstr "" msgid "Save" msgstr "Uložiť" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Stiahnuť" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Odstrániť" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index 56f3e5e10c..876401e6a7 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 5a80877b71..536ee6f6b9 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/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: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,40 +17,44 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:467 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:471 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:474 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Odstrániť" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 2783214c34..1c1b6602df 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 15:30+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,6 +17,10 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Stiahnuť" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 7cd4fe3874..11f7b773ea 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,21 +17,25 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 9cd71b7433..0e98417ded 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,34 +17,34 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "Osobné" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "Nastavenia" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,70 +267,76 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 6a0e0098d4..f6fb953c40 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -17,6 +17,48 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Odstrániť" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Ostatné" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 79c47dfcc6..2e3098a1e2 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 15:20+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -164,7 +164,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -200,7 +200,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -268,7 +268,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -411,41 +411,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 18d65c58b7..074e8beb34 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 # martin, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s s vami zdieľa »%s«" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nebolo možné odoslať email týmto používateľom: %s " @@ -74,139 +69,143 @@ msgstr "Dočasný profilový obrázok nie je k dispozícii, skúste to znovu" msgid "No crop data provided" msgstr "Dáta pre orezanie neboli zadané" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Nedeľa" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Pondelok" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Utorok" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Streda" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Štvrtok" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Piatok" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Sobota" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Január" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Február" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Marec" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Apríl" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Máj" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Jún" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Júl" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "August" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Október" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "December" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "dnes" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "včera" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "minulý rok" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "pred rokmi" @@ -275,6 +274,26 @@ msgstr "({count} vybraných)" msgid "Error loading file exists template" msgstr "Chyba pri nahrávaní šablóny existencie súboru" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Zdieľané" @@ -283,12 +302,12 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -300,123 +319,123 @@ msgstr "Chyba počas ukončenia zdieľania" msgid "Error while changing permissions" msgstr "Chyba počas zmeny oprávnení" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Zdieľané s vami a so skupinou {group} používateľom {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Zdieľané s vami používateľom {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Zdieľať s používateľom alebo skupinou ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Zdieľať linku" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Heslo" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Povoliť verejné nahrávanie" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Odoslať odkaz emailom" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Odoslať" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Nastaviť dátum expirácie" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Dátum expirácie" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Zdieľať cez email:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "skupina" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "informovať emailom" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "prístupové práva" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "vytvoriť" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "aktualizovať" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "vymazať" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "zdieľať" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email odoslaný" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Varovanie" @@ -457,17 +476,23 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Aktualizácia nebola úspešná. Problém nahláste na ownCloud community." +msgstr "Aktualizácia nebola úspešná. Problém nahláste ownCloud comunite." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku." +msgstr "Aktualizácia bola úspešná. Presmerovávam vás na prihlasovaciu stránku." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "reset hesla %s" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}" @@ -477,7 +502,7 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "Odkaz na obnovenie hesla bol odoslaný na Vašu emailovú adresu.
Ak ho v krátkej dobe neobdržíte, skontrolujte si Váš kôš a priečinok spam.
Ak ho ani tam nenájdete, kontaktujte svojho administrátora." +msgstr "Odkaz na obnovenie hesla bol odoslaný na vašu emailovú adresu.
Ak ho v krátkej dobe neobdržíte, skontrolujte si váš kôš a priečinok spam.
Ak ho ani tam nenájdete, kontaktujte svojho administrátora." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
Did you make sure your email/username was right?" @@ -485,10 +510,10 @@ msgstr "Požiadavka zlyhala.
Uistili ste sa, že vaše používateľské meno #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." -msgstr "Odkaz pre obnovenie hesla obdržíte e-mailom." +msgstr "Odkaz pre obnovenie hesla obdržíte emailom." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Meno používateľa" @@ -532,7 +557,7 @@ msgstr "Osobné" msgid "Users" msgstr "Používatelia" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Aplikácie" @@ -588,7 +613,7 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "Ahoj,\n\nchcem ti dať navedomie, že %s zdieľa %s s tebou.\nZobrazenie tu: %s\n\n" +msgstr "Ahoj,\n\nchcem ti dať navedomie, že %s s tebou zdieľa %s.\nTu je odkaz: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format @@ -597,7 +622,7 @@ msgstr "Zdieľanie expiruje %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "Za zdravie!" +msgstr "Pekný deň!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -642,49 +667,47 @@ msgstr "Pre informácie, ako správne nastaviť váš server, sa pozrite do admin account
" msgstr "Vytvoriť administrátorský účet" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Rozšírené" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Priečinok dát" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Nastaviť databázu" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "bude použité" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Používateľ databázy" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Dokončiť inštaláciu" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Dokončujem..." @@ -698,9 +721,9 @@ msgstr "Táto aplikácia vyžaduje JavaScript a tento musí byť povolený pre s #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "%s je dostupná. Získajte viac informácií k postupu aktualizácie." +msgstr "%s je dostupná. Získajte viac informácií o postupe aktualizácie." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odhlásiť" @@ -712,11 +735,11 @@ msgstr "Automatické prihlásenie bolo zamietnuté!" msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "V nedávnej dobe ste nezmenili svoje heslo, váš účet môže byť kompromitovaný." +msgstr "V nedávnej dobe ste si nezmenili svoje heslo, váš účet môže byť kompromitovaný." #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Prosím, zmeňte svoje heslo pre opätovné zabezpečenie vášho účtu" +msgstr "Prosím, zmeňte si svoje heslo pre opätovné zabezpečenie vášho účtu." #: templates/login.php:17 msgid "Server side authentication failed!" @@ -726,28 +749,28 @@ msgstr "Autentifikácia na serveri zlyhala!" msgid "Please contact your administrator." msgstr "Kontaktujte prosím vášho administrátora." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Zabudli ste heslo?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "zapamätať" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Prihlásiť sa" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternatívne prihlásenie" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Ahoj,

chcem ti dať navedomie, že %s zdieľa »%s« s tebou.
Zobrazenie tu!

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 3ac04ae10b..12728cfc8c 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,36 +28,48 @@ msgstr "Nie je možné presunúť %s - súbor s týmto menom už existuje" msgid "Could not move %s" msgstr "Nie je možné presunúť %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Meno súboru nemôže byť prázdne" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Názov súboru nesmie obsahovať \"/\". Prosím zvoľte iný názov." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Názov %s už používa priečinok s%. Prosím zvoľte iný názov." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" -msgstr "" +msgstr "Server nie je oprávnený otvárať adresy URL. Overte nastavenia servera." -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba pri sťahovaní súboru %s do %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Chyba pri vytváraní súboru" @@ -65,239 +77,234 @@ msgstr "Chyba pri vytváraní súboru" msgid "Folder name cannot be empty." msgstr "Názov priečinka nemôže byť prázdny." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Názov priečinka nesmie obsahovať \"/\". Prosím zvoľte iný názov." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Chyba pri vytváraní priečinka" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Nemožno nastaviť priečinok pre nahrané súbory." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol nahraný. Neznáma chyba" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Neplatný priečinok." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Súbory" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Nemožno nahrať súbor {filename}, pretože je to priečinok, alebo má 0 bitov" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nie je k dispozícii dostatok miesta" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Odosielanie zrušené." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Nepodarilo sa dostať výsledky zo servera." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL nemôže byť prázdna" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Nemožno vytvoriť súbor" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Nemožno vytvoriť priečinok" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" -msgstr "" +msgstr "Chyba pri načítavaní URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Zdieľať" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Nemožno premenovať súbor" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Chyba pri mazaní súboru." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" msgstr[1] "%n súbory" msgstr[2] "%n súborov" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávam %n súbor" msgstr[1] "Nahrávam %n súbory" msgstr[2] "Nahrávam %n súborov" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' je neplatné meno súboru." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložisko je takmer plné ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Chybný súkromný kľúč na šifrovanie aplikácií. Zaktualizujte si heslo súkromného kľúča v svojom osobnom nastavení, aby ste znovu získali prístup k svojim zašifrovaným súborom." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Chyba pri presúvaní súboru" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Chyba" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Názov" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Veľkosť" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Upravené" @@ -305,12 +312,12 @@ msgstr "Upravené" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s nemohol byť premenovaný" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Odoslať" @@ -346,69 +353,69 @@ msgstr "Najväčšia veľkosť ZIP súborov" msgid "Save" msgstr "Uložiť" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Nový" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nový textový súbor" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Textový súbor" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nový priečinok" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Priečinok" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Z odkazu" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Zmazané súbory" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Nemáte oprávnenie sem nahrávať alebo vytvoriť súbory" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Sťahovanie" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Zmazať" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Nahrávanie je príliš veľké" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Práve prezerané" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 36c34248e2..a57f418836 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-12-02 13:30+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,18 +82,18 @@ msgid "" "administrator" msgstr "Neznáma chyba, skontrolujte si vaše systémové nastavenia alebo kontaktujte administrátora" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Chýbajúce požiadavky." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Nasledujúci používatelia nie sú nastavení pre šifrovanie:" @@ -101,9 +101,9 @@ msgstr "Nasledujúci používatelia nie sú nastavení pre šifrovanie:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. Čakajte prosím." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Ukladám..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 24ef5a545f..5ac968e0c4 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Prístup povolený" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Chyba pri konfigurácii úložiska Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Povoliť prístup" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Zadajte platný kľúč aplikácie a heslo Dropbox" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Chyba pri konfigurácii úložiska Google drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:465 +#: lib/config.php:516 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 "Upozornenie: Podpora FTP v PHP nie je povolená alebo nainštalovaná. Nie je možné pripojenie oddielov FTP. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Používatelia" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Zmazať" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Povoliť externé úložisko" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Povoliť používateľom pripojiť si vlastné externé úložisko" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Koreňové SSL certifikáty" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importovať koreňový certifikát" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 9822b994dc..e4c054abfe 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Toto zdieľanie je chránené heslom" @@ -54,32 +58,16 @@ msgstr "zdieľanie je zakázané" msgid "For more info, please ask the person who sent this link." msgstr "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s zdieľa s vami priečinok %s" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s zdieľa s vami súbor %s" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Sťahovanie" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Nahrať" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Zrušiť nahrávanie" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Žiaden náhľad k dispozícii pre" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Priama linka" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 6aad589b16..8362398105 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nemožno zmazať %s navždy" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Nemožno obnoviť %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Chyba" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "obnovené" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Žiadny obsah. Kôš je prázdny!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Názov" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Obnoviť" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Zmazané" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Zmazať" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Zmazané súbory" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index b33bb89f20..da00461099 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,38 +19,38 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Aplikácia \"%s\" nemôže byť nainštalovaná kvôli nekompatibilite z touto verziou ownCloudu." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Nešpecifikované meno aplikácie" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Pomoc" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Osobné" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Nastavenia" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Používatelia" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Administrátor" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." @@ -63,15 +63,10 @@ msgstr "Neznámy typ súboru" msgid "Invalid image" msgstr "Chybný obrázok" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "nemožno otvoriť \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." @@ -94,74 +89,78 @@ msgid "" "administrator." msgstr "Prosím, stiahnite si súbory samostatne v menších blokoch alebo sa obráťte na správcu." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Nešpecifikovaný zdroj pri inštalácii aplikácie" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Nešpecifikovaný atribút \"href\" pri inštalácii aplikácie pomocou protokolu \"http\"" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Nešpecifikovaná cesta pri inštalácii aplikácie z lokálneho súboru" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Tento typ archívu %s nie je podporovaný" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Zlyhanie pri otváraní archívu počas inštalácie aplikácie" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Aplikácia neposkytuje súbor info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Aplikácia nemôže byť nainštalovaná pre nepovolený kód v aplikácii" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Aplikácia nemôže byť nainštalovaná pre nekompatibilitu z touto verziou ownCloudu" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Aplikácia nemôže byť nainštalovaná pretože obsahuje pravý štítok, ktorý nie je povolený pre zaslané \"shipped\" aplikácie" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Aplikácia nemôže byť nainštalovaná pretože verzia v info.xml/version nezodpovedá verzii špecifikovanej v obchode s aplikáciami" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Aplikačný priečinok už existuje" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Nemožno vytvoriť aplikačný priečinok. Prosím upravte povolenia. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Chyba autentifikácie" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token vypršal. Obnovte, prosím, stránku." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Súbory" @@ -201,8 +200,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadať jestvujúci účet alebo administrátora." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Používateľské meno a/alebo heslo pre MySQL databázu je neplatné" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -229,21 +228,21 @@ msgstr "Podozrivý príkaz bol: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Používateľ '%s'@'localhost' už v MySQL existuje." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Zahodiť používateľa z MySQL." +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Používateľ '%s'@'%%' už v MySQL existuje" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Zahodiť používateľa z MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -270,70 +269,76 @@ msgstr "Zadajte používateľské meno administrátora." msgid "Set an admin password." msgstr "Zadajte heslo administrátora." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Prosím skontrolujte inštalačnú príručku." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nemožno nájsť danú kategóriu \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "pred sekundami" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "dnes" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "včera" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "minulý mesiac" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "minulý rok" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 226ab6392c..3bcd00e873 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 # martin, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-16 13:50+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,48 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Šifrovanie" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Nie je možné nahrať zoznam z App Store" @@ -115,62 +157,90 @@ msgstr "Úložisko nepodporuje zmenu hesla, ale šifrovací kľúč používate msgid "Unable to change password" msgstr "Zmena hesla sa nepodarila" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Príručka používateľa" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Aktualizovať na {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Zakázať" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Zapnúť" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Čakajte prosím..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" -msgstr "Chyba pri zablokovaní aplikácie" +msgstr "Chyba pri zakázaní aplikácie" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Chyba pri povoľovaní aplikácie" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Aktualizujem..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "chyba pri aktualizácii aplikácie" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Chyba" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Aktualizovať" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Vybrať avatara" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Ukladám..." - #: js/users.js:47 msgid "deleted" msgstr "zmazané" @@ -183,40 +253,40 @@ msgstr "vrátiť" msgid "Unable to remove user" msgstr "Nemožno odobrať používateľa" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Skupiny" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Správca skupiny" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Zmazať" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "pridať skupinu" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Chyba pri vytváraní používateľa" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Upozornenie: Domovský priečinok používateľa \"{user}\" už existuje" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Slovensky" @@ -240,18 +310,42 @@ msgstr "Chyby a fatálne problémy" msgid "Fatal issues only" msgstr "Len fatálne problémy" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Bezpečnostné upozornenie" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Do %s máte prístup cez HTTP. Dôrazne odporúčame nakonfigurovať server tak, aby namiesto toho vyžadoval použitie HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -260,68 +354,68 @@ msgid "" "root." msgstr "Váš priečinok s dátami aj vaše súbory sú pravdepodobne prístupné z internetu. Súbor .htaccess nefunguje. Odporúčame nakonfigurovať webový server tak, aby priečinok s dátami nebol naďalej prístupný, alebo presunúť priečinok s dátami mimo priestor sprístupňovaný webovým serverom." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Nastavenia oznámení" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Skontrolujte prosím znovu inštalačnú príručku." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Chýba modul 'fileinfo'" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Vaša PHP verzia je zastaraná" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto instalácia nebude fungovat správne." +msgstr "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto inštalácia nebude fungovať správne." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Lokalizácia nefunguje" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Pripojenie na internet nefunguje" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -330,118 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Vykonať jednu úlohu s každým načítaní stránky" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použite systémovú službu cron, ktorá zavolá súbor cron.php každých 15 minút." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Zdieľanie" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Povoliť API zdieľania" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Povoliť aplikáciám používať API na zdieľanie" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Povoliť odkazy" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Povoliť verejné nahrávanie súborov" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Povoliť používateľom umožniť iným používateľom nahrávať do ich zdieľaného priečinka" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Povoliť zdieľanie ďalej" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Povoliť používateľom ďalej zdieľať zdieľané položky" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Povoliť používateľom zdieľať s kýmkoľvek" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" -msgstr "Povoliť upozornenia emailom" +msgstr "Povoliť odosielať upozornenia emailom" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" -msgstr "Povoliť používateľom upozornenia emailom pre svoje zdieľané súbory" +msgstr "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynúti pripájanie klientov k %s šifrovaným pripojením." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Záznam" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Viac" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Menej" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Verzia" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Vyvinuté komunitou ownCloud,zdrojový kód je licencovaný pod AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Pridať vašu aplikáciu" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Viac aplikácií" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Vyberte aplikáciu" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Pozrite si stránku aplikácií na apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licencované " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Príručka používateľa" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Príručka administrátora" @@ -508,163 +650,161 @@ msgstr "Znovu zobraziť sprievodcu prvým spustením" msgid "You have used %s of the available %s" msgstr "Použili ste %s z %s dostupných " -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Heslo" #: templates/personal.php:40 msgid "Your password was changed" -msgstr "Heslo bolo zmenené" +msgstr "Vaše heslo bolo zmenené" #: templates/personal.php:41 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Meno a priezvisko" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Avatar" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Nahrať nový" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Vyberte nový zo súborov" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Zmazať obrázok" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "Buď png alebo jpg. V ideálnom prípade štvorec, ale budete mať možnosť ho orezať." +msgstr "Formát súboru png alebo jpg. V ideálnom prípade štvorec, ale budete mať možnosť ho orezať." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." -msgstr "Váš avatar je použiý z pôvodného účtu." +msgstr "Váš avatar je použitý z pôvodného účtu." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Prerušiť" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Vybrať ako avatara" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Použite túto linku pre prístup k vašim súborom cez WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Šifrovanie" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Šifrovacia aplikácia už nie je spustená, dešifrujte všetky svoje súbory." -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Prihlasovacie heslo" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Dešifrovať všetky súbory" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Prihlasovacie meno" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Vytvoriť" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Obnovenie hesla administrátora" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Predvolené úložisko" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB​​\" alebo \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Nelimitované" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Iné" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" -msgstr "Meno používateľa" +msgstr "Používateľské meno" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Úložisko" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "zmeniť meno a priezvisko" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "nastaviť nové heslo" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Predvolené" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 314d24e826..0576f0dc51 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 # martin, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,43 +88,43 @@ msgstr "Úspešné" msgid "Error" msgstr "Chyba" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" -msgstr "Konfigurácia je vporiadku" +msgstr "Konfigurácia je v poriadku" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Nesprávna konfigurácia" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Nekompletná konfigurácia" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Vybrať skupinu" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Vyberte triedy objektov" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Vyberte atribúty" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Test pripojenia bol úspešný" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Test pripojenia zlyhal" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Naozaj chcete zmazať súčasné nastavenie servera?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Potvrdiť vymazanie" @@ -144,11 +144,11 @@ msgstr[0] "%s nájdený používateľ" msgstr[1] "%s nájdení používatelia" msgstr[2] "%s nájdených používateľov" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Neplatný hostiteľ" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Nemožno nájsť požadovanú funkciu" @@ -166,8 +166,8 @@ msgstr "Pomoc" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Obmedziť prístup %s do skupiny, ktoré spĺňajú tieto kritériá:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -202,8 +202,8 @@ msgid "groups found" msgstr "nájdené skupiny" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Ako prihlasovacie meno použiť atribút:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -222,7 +222,7 @@ msgstr "Iné atribúty:" msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action. Example: \"uid=%%uid\"" -msgstr "Určuje použitý filter, pri pokuse o prihlásenie. %%uid nahradzuje používateľské meno v činnosti prihlásenia. Napríklad: \"uid=%%uid\"" +msgstr "Určuje použitý filter, pri pokuse o prihlásenie. %%uid nahrádza používateľské meno v činnosti prihlásenia. Napríklad: \"uid=%%uid\"" #: templates/part.wizard-server.php:18 msgid "Add Server Configuration" @@ -235,7 +235,7 @@ msgstr "Hostiteľ" #: templates/part.wizard-server.php:31 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "Môžete vynechať protokol, s výnimkou požadovania SSL. Vtedy začnite s ldaps://" +msgstr "Môžete vynechať protokol, okrem prípadu, kedy sa vyžaduje SSL. Vtedy začnite s ldaps://" #: templates/part.wizard-server.php:36 msgid "Port" @@ -270,8 +270,8 @@ msgstr "V rozšírenom nastavení môžete zadať základné DN pre používate #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Obmedziť prístup k %s na používateľov, ktorí spĺňajú tieto kritériá:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -302,7 +302,7 @@ msgstr "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "Upozornenie: nie je nainštalovaný LDAP modul pre PHP, backend vrstva nebude fungovať. Požádejte administrátora systému aby ho nainštaloval." +msgstr "Upozornenie: nie je nainštalovaný LDAP modul pre PHP, backend vrstva nebude fungovať. Požiadajte administrátora systému, aby ho nainštaloval." #: templates/settings.php:20 msgid "Connection Settings" @@ -355,7 +355,7 @@ msgstr "Neodporúčané, použite iba pri testovaní! Pokiaľ spojenie funguje i #: templates/settings.php:28 msgid "Cache Time-To-Live" -msgstr "Životnosť objektov v medzipamäti" +msgstr "Životnosť objektov vo vyrovnávacej pamäti" #: templates/settings.php:28 msgid "in seconds. A change empties the cache." @@ -363,11 +363,11 @@ msgstr "v sekundách. Zmena vyprázdni vyrovnávaciu pamäť." #: templates/settings.php:30 msgid "Directory Settings" -msgstr "Nastavenie priečinka" +msgstr "Nastavenia priečinka" #: templates/settings.php:32 msgid "User Display Name Field" -msgstr "Pole pre zobrazenie mena používateľa" +msgstr "Pole pre zobrazované meno používateľa" #: templates/settings.php:32 msgid "The LDAP attribute to use to generate the user's display name." @@ -413,41 +413,51 @@ msgstr "Atribúty vyhľadávania skupín" msgid "Group-Member association" msgstr "Priradenie člena skupiny" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Špeciálne atribúty" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Pole kvóty" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Predvolená kvóta" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "v bajtoch" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Pole emailu" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Pravidlo pre nastavenie názvu používateľského priečinka dát" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "Nechajte prázdne pre používateľské meno (predvolené). Inak uveďte atribút LDAP/AD." +msgstr "Nechajte prázdne pre používateľské meno (predvolené). Inak uveďte atribút z LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Interné používateľské meno" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,17 +471,17 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách používateľských mien bude číslo pridané / odobrané. Interné používateľské meno sa používa na internú identifikáciu používateľa. Je tiež predvoleným názvom používateľského domovského priečinka v ownCloud. Je tiež súčasťou URL pre vzdialený prístup, napríklad pre všetky služby * DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred verziou ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo namapovaných (pridaných) LDAP používateľov." +msgstr "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách používateľských mien bude číslo pridané / odobrané. Interné používateľské meno sa používa na internú identifikáciu používateľa. Je tiež predvoleným názvom používateľského domovského priečinka v ownCloud. Je tiež súčasťou URL pre vzdialený prístup, napríklad pre všetky služby *DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred verziou ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo namapovaných (pridaných) LDAP používateľov." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atribút interného používateľského mena:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Prepísať UUID detekciu" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,21 +490,21 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP." +msgstr "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné používateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri používateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID atribút pre používateľov:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID atribút pre skupiny:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Mapovanie názvov LDAP používateľských mien" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,12 +516,12 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze." +msgstr "Používateľské mená sa používajú pre uchovávanie a priraďovanie (meta) dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapovaní vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Zrušiť mapovanie LDAP používateľských mien" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Zrušiť mapovanie názvov LDAP skupín" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index b3e3200858..09cb6a21f4 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-07 19:50+0000\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-01-14 21:42+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 4d04d18975..1db0fbd206 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s je omogočil souporabo »%s«" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Ni mogoče poslati sporočila za: %s" @@ -74,91 +69,95 @@ msgstr "Na voljo ni nobene začasne slike za profil. Poskusite znova." msgid "No crop data provided" msgstr "Ni podanih podatkov obreza" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "nedelja" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "ponedeljek" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "torek" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "sreda" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "četrtek" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "petek" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "sobota" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "januar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "februar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "marec" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "april" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "maj" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "junij" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "julij" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "avgust" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "september" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "november" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "december" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -166,7 +165,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -174,15 +173,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "danes" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "včeraj" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -190,11 +189,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -202,15 +201,15 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "lansko leto" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "let nazaj" @@ -280,6 +279,26 @@ msgstr "({count} izbranih)" msgid "Error loading file exists template" msgstr "Napaka nalaganja predloge obstoječih datotek" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "V souporabi" @@ -288,12 +307,12 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Napaka" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -305,123 +324,123 @@ msgstr "Napaka med odstranjevanjem souporabe" msgid "Error while changing permissions" msgstr "Napaka med spreminjanjem dovoljenj" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "V souporabi z vami in skupino {group}. Lastnik je {owner}." -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "V souporabi z vami. Lastnik je {owner}." -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Souporaba z uporabnikom ali skupino ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Povezava za prejem" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Geslo" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Dovoli javno pošiljanje na strežnik" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Posreduj povezavo po elektronski pošti" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Pošlji" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Nastavi datum preteka" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Datum preteka" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Pošlji povezavo do dokumenta preko elektronske pošte:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "skupina" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "V souporabi v {item} z uporabnikom {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Prekliči souporabo" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "obvesti po elektronski pošti" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "ustvari" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "posodobi" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "izbriše" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "določi souporabo" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Napaka nastavljanja datuma preteka" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Elektronska pošta je poslana" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Opozorilo" @@ -468,11 +487,17 @@ msgstr "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu Ali sta elektronski naslov oziroma uporabnišk msgid "You will receive a link to reset your password via Email." msgstr "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Uporabniško ime" @@ -537,7 +562,7 @@ msgstr "Osebno" msgid "Users" msgstr "Uporabniki" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Programi" @@ -647,49 +672,47 @@ msgstr "Za več informacij o pravilnem nastavljanju strežnika, kliknite na pove msgid "Create an admin account" msgstr "Ustvari skrbniški račun" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Napredne možnosti" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Podatkovna mapa" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Uporabnik podatkovne zbirke" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Končaj nastavitev" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Poteka zaključevanje opravila ..." @@ -705,7 +728,7 @@ msgstr "Program zahteva omogočeno skriptno podporo. Za pravilno delovanje je tr msgid "%s is available. Get more information on how to update." msgstr "%s je na voljo. Pridobite več podrobnosti za posodobitev." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odjava" @@ -731,28 +754,28 @@ msgstr "Overitev s strežnika je spodletela!" msgid "Please contact your administrator." msgstr "Stopite v stik s skrbnikom sistema." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Ali ste pozabili geslo?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "zapomni si" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Prijava" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Druge prijavne možnosti" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Pozdravljeni,

oseba %s vam je omogočila souporabo %s.
Vir si lahko ogledate na tem naslovu.

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 83b375f340..ecd8970740 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-22 01:55-0500\n" -"PO-Revision-Date: 2013-12-21 21:20+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,36 +29,48 @@ msgstr "Datoteke %s ni mogoče premakniti - datoteka s tem imenom že obstaja." msgid "Could not move %s" msgstr "Datoteke %s ni mogoče premakniti" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Ime datoteke ne sme biti prazno polje." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Ime datoteke ne sme vsebovati znaka \"/\". Določiti je treba drugo ime." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Vir ni veljaven" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika." -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Napaka med prejemanjem %s v mapo %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Napaka med ustvarjanjem datoteke" @@ -66,155 +78,156 @@ msgstr "Napaka med ustvarjanjem datoteke" msgid "Folder name cannot be empty." msgstr "Ime mape ne more biti prazna vrednost." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Ime mape ne sme vsebovati znaka \"/\". Določiti je treba drugo ime." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Napaka med ustvarjanjem mape" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Mapo, v katero boste prenašali dokumente, ni mogoče določiti" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Neveljaven žeton" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke." -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Neveljavna mapa." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Datoteke" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Ni mogoče poslati datoteke {filename}, saj je to ali mapa ali pa je velikost datoteke 0 bajtov." -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Na voljo ni dovolj prostora." +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Ni mogoče pridobiti podatkov s strežnika." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "Polje naslova URL ne sme biti prazno" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo." -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Ni mogoče ustvariti datoteke" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Ni mogoče ustvariti mape" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Napaka pridobivanja naslova URL" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Souporaba" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Ni mogoče preimenovati datoteke" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "preimenovano ime {new_name} z imenom {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Napaka brisanja datoteke." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapa" @@ -222,7 +235,7 @@ msgstr[1] "%n mapi" msgstr[2] "%n mape" msgstr[3] "%n map" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n datoteka" @@ -230,11 +243,11 @@ msgstr[1] "%n datoteki" msgstr[2] "%n datoteke" msgstr[3] "%n datotek" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} in {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Posodabljanje %n datoteke" @@ -242,66 +255,60 @@ msgstr[1] "Posodabljanje %n datotek" msgstr[2] "Posodabljanje %n datotek" msgstr[3] "Posodabljanje %n datotek" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' je neveljavno ime datoteke." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Prostor za shranjevanje je skoraj do konca zaseden ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite." -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ni ustreznega osebnega ključa za program za šifriranje. Posodobite osebni ključ za dostop do šifriranih datotek med nastavitvami." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifriranje je onemogočeno, datoteke pa so še vedno šifrirane. Odšifrirajte jih med nastavitvami." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Napaka premikanja datoteke" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Napaka" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Ime" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Velikost" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Spremenjeno" @@ -309,12 +316,12 @@ msgstr "Spremenjeno" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s ni mogoče preimenovati" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Pošlji" @@ -350,69 +357,69 @@ msgstr "Največja vhodna velikost za datoteke ZIP" msgid "Save" msgstr "Shrani" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Novo" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Nova besedilna datoteka" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Besedilna datoteka" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Nova mapa" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Mapa" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Iz povezave" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Izbrisane datoteke" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Ni ustreznih dovoljenj za pošiljanje ali ustvarjanje datotek na tem mestu." -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Prejmi" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Izbriši" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Prekoračenje omejitve velikosti" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 958c659739..a6ef4cc4ec 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-29 23:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,18 +82,18 @@ msgid "" "administrator" msgstr "Prišlo je do neznane napake. Preverite nastavitve sistema ali pa stopite v stik s skrbnikom sistema." -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Manjkajoče zahteve" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Preverite, ali je na strežniku nameščen paket PHP 5.3.3 ali novejši, da je omogočen in pravilno nastavljen PHP OpenSSL. Z obstoječimi možnostmi šifriranje ni mogoče." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Navedeni uporabniki še nimajo nastavljenega šifriranja:" @@ -101,9 +101,9 @@ msgstr "Navedeni uporabniki še nimajo nastavljenega šifriranja:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "Začetno šifriranje je začeto ... Opravilo je lahko dolgotrajno." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Poteka shranjevanje ..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index deddf05668..48e0a9a94d 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Dostop je odobren" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Napaka nastavljanja shrambe Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Odobri dostop" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Napaka nastavljanja shrambe Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: lib/config.php:465 +#: lib/config.php:516 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 "Opozorilo: podpora FTP v PHP ni omogočena ali pa ni nameščena. Priklapljanje pogonov FTP zato ne bo mogoče." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Uporabniki" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Izbriši" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Omogoči zunanjo uporabniško podatkovno shrambo" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Dovoli uporabnikom priklop lastne zunanje podatkovne shrambe" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Korenska potrdila SSL" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Uvozi korensko potrdilo" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 8831af7422..28f3d93fa0 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "To mesto je zaščiteno z geslom." @@ -54,32 +58,16 @@ msgstr "souporaba je onemogočena." msgid "For more info, please ask the person who sent this link." msgstr "Za več podrobnosti stopite v stik s pošiljateljem te povezave." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "Oseba %s je določila mapo %s za souporabo" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "Oseba %s je določila datoteko %s za souporabo" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Prejmi" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Pošlji" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Prekliči pošiljanje" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Predogled ni na voljo za" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Neposredna povezava" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 47b8914bda..96b15d40e6 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Datoteke %s ni mogoče trajno izbrisati." -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Ni mogoče obnoviti %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Napaka" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "obnovljeno" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Mapa smeti je prazna." -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Ime" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Obnovi" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Izbrisano" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Izbriši" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Izbrisane datoteke" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 1a6921a702..7be17c64fb 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,38 +19,38 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Programa \"%s\" ni mogoče namestiti, ker ni skladen s trenutno nameščeno različico oblaka ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Ni podanega imena programa" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Pomoč" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Osebno" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Nastavitve" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Uporabniki" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Skrbništvo" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Posodabljanje \"%s\" je spodletelo." @@ -63,15 +63,10 @@ msgstr "Neznana vrsta datoteke" msgid "Invalid image" msgstr "Neveljavna slika" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "ni mogoče odpreti \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." @@ -94,74 +89,78 @@ msgid "" "administrator." msgstr "Datoteke je treba prejeti ločeno v manjših paketih, ali pa je treba za pomoč prositi skrbnika." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Ni podanega vira med nameščenjem programa" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Ni podanega podatka naslova HREF med nameščenjem programa preko protokola HTTP." -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Ni podane poti med nameščenjem programa iz krajevne datoteke" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Arhivi vrste %s niso podprti" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Odpiranje arhiva je med nameščanjem spodletelo" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Program je brez datoteke info.xml" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Programa ni mogoče namestiti zaradi nedovoljene programske kode." -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Programa ni mogoče namestiti, ker ni skladen z trenutno nameščeno različico oblaka ownCloud." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Programa ni mogoče namestiti, ker vsebuje oznako potrditve, ki pa ni dovoljena za javne programe." -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Program ni mogoče namestiti zaradi neustrezne različice datoteke info.xml. Ta ni enaka različici programa." -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Programska mapa že obstaja" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Programske mape ni mogoče ustvariti. Ni ustreznih dovoljenj. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Program ni omogočen" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Napaka overjanja" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Žeton je potekel. Stran je treba ponovno naložiti." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Datoteke" @@ -201,8 +200,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Uporabniško ime ali geslo MySQL ni veljavno" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -229,21 +228,21 @@ msgstr "Napačni ukaz je: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Uporabnik MySQL '%s'@'localhost' že obstaja." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Odstrani uporabnika iz podatkovne zbirke MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Uporabnik MySQL '%s'@'%%' že obstaja." +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Odstrani uporabnika iz podatkovne zbirke MySQL" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -270,27 +269,33 @@ msgstr "Nastavi uporabniško ime skrbnika." msgid "Set an admin password." msgstr "Nastavi geslo skrbnika." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Preverite navodila namestitve." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kategorije \"%s\" ni mogoče najti." -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -298,7 +303,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -306,15 +311,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "danes" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "včeraj" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -322,11 +327,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "zadnji mesec" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -334,10 +339,10 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "lansko leto" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "let nazaj" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 5df294c597..5803f81e2f 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-05 22:23-0500\n" -"PO-Revision-Date: 2013-12-05 18:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,6 +19,48 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Šifriranje" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Ni mogoče naložiti seznama iz programskega središča" @@ -115,62 +157,90 @@ msgstr "Hrbtišče programa ne podpira spreminjanja gesla, je pa uspešno posodo msgid "Unable to change password" msgstr "Ni mogoče spremeniti gesla" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Uporabniška dokumentacija" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Posodobi na {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Onemogoči" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Omogoči" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Počakajte ..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Napaka onemogočanja programa" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Napaka omogočanja programa" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Poteka posodabljanje ..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Prišlo je do napake med posodabljanjem programa." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Napaka" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Posodobi" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Posodobljeno" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Izbor slike profila" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Poteka shranjevanje ..." - #: js/users.js:47 msgid "deleted" msgstr "izbrisano" @@ -183,40 +253,40 @@ msgstr "razveljavi" msgid "Unable to remove user" msgstr "Uporabnika ni mogoče odstraniti" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Skupine" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Skrbnik skupine" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Izbriši" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "dodaj skupino" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Napaka ustvarjanja uporabnika" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Slovenščina" @@ -240,18 +310,42 @@ msgstr "Napake in usodne dogodke" msgid "Fatal issues only" msgstr "Le usodne dogodke" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Varnostno opozorilo" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Dostop do %s poteka preko HTTP. Priporočljivo je nastaviti strežnik na privzeto uporabo varne povezave preko protokola HTTPS." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -260,68 +354,68 @@ msgid "" "root." msgstr "Vaša podatkovna mapa in datoteke so najverjetneje dosegljive preko interneta. Datoteka .htaccess ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da podatkovna mapa ni prosto dostopna. To je mogoče zagotoviti tudi tako, da je mapa premaknjena iz neustrezne korenske v podrejeno mapo ." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Opozorilo nastavitve" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Preverite vodnike namestitve." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Manjka modul 'fileinfo'." -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "Nameščena različica PHP je zastarela" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "Nameščena različica PHP je zastarela. Priporočljivo je posodobiti namestitev na različico 5.3.8 ali novejše, saj starejše različice ne podpirajo vseh zmožnosti. Mogoče je, da namestitev ne deluje pravilno." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Jezikovne prilagoditve ne delujejo." -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8." -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Priporočljivo je namestiti zahtevane pakete v sistem za podporo ene izmed navedenih jezikovnih možnosti: %s" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Internetna povezava ne deluje." -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -330,118 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Na voljo ni delujoče internetne povezave. To pomeni, da nekaterih možnosti, kot so priklapljanje zunanje shrambe, obveščanja o posodobitvah in nameščanje programov tretje roke ni podprto. Dostop do datotek z oddaljenih mest in pošiljanje obvestil preko elektronske pošte je verjetno še vedno mogoče. Za omogočanje vseh zmožnosti mora biti vzpostavljena tudi ustrezna internetna povezava." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Izvedi eno nalogo z vsako naloženo stranjo." -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "Datoteka cron.php je vpisana v storitvi webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Souporaba" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Dovoli programom uporabo vmesnika API souporabe" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Dovoli javno pošiljanje datotek v oblak" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Dovoli uporabnikom, da omogočijo drugim uporabnikom, pošiljati datoteke v javno mapo." -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Dovoli obvestila preko elektronske pošte" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Varnost" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vsili povezavo odjemalca z %s preko šifrirane povezave." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Za nastavljanje šifriranja SSL je treba vzpostaviti povezavo z mestom %s preko protokola HTTPS." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Več" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Manj" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Različica" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Programski paket razvija skupnost ownCloud. Izvorna koda je objavljena pod pogoji AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Dodaj program" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Več programov" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Izbor programa" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Obiščite spletno stran programa na apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-z dovoljenjem " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Uporabniška dokumentacija" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Skrbniška dokumentacija" @@ -508,7 +650,7 @@ msgstr "Zaženi čarovnika prvega zagona" msgid "You have used %s of the available %s" msgstr "Uporabljenega je %s od razpoložljivih %s prostora." -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Geslo" @@ -520,151 +662,149 @@ msgstr "Geslo je spremenjeno" msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Polno ime" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Elektronski naslov" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Osebni elektronski naslov" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Slika profila" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Pošlji novo" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Izberi novo iz menija datotek" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Odstrani sliko" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Slika je lahko png ali jpg. Slika naj bo kvadratna, ni pa to pogoj, saj jo bo mogoče obrezati." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Podoba je podana v izvornem računu." -#: templates/personal.php:101 -msgid "Abort" -msgstr "Prekini" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Izberi kot sliko profila" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Jezik" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Sodelujte pri prevajanju" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Uporabite naslov za dostop do datotek rpeko sistema WebDAV." -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Šifriranje" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke." -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Prijavno geslo" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Odšifriraj vse datoteke" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Prijavno ime" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Ustvari" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Obnovitev skrbniškega gesla" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Privzeta shramba" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Neomejeno" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Drugo" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Uporabniško ime" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Shramba" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "Spremeni polno ime" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "nastavi novo geslo" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Privzeto" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 276ce0e77e..3c37c8b83b 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,43 +88,43 @@ msgstr "Uspešno končano." msgid "Error" msgstr "Napaka" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Nastavitev je ustrezna" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Nastavitev ni ustrezna" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Nastavitev je nepopolna" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Izberi skupine" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Izbor razredov predmeta" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Izbor atributov" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Preizkus povezave je uspešno končan." -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Preizkus povezave je spodletel." -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ali res želite izbrisati trenutne nastavitve strežnika?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Potrdi brisanje" @@ -146,11 +146,11 @@ msgstr[1] "%s najdena uporabnika" msgstr[2] "%s najdeni uporabniki" msgstr[3] "%s najdenih uporabnikov" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Neveljaven gostitelj" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Želene zmožnosti ni mogoče najti" @@ -168,8 +168,8 @@ msgstr "Pomoč" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Omeji dostop %s do skupin glede na kriterij:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -204,8 +204,8 @@ msgid "groups found" msgstr "najdenih skupin" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Kateri atribut naj bo uporabljen kot prijavno ime:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -272,8 +272,8 @@ msgstr "Osnovno enolično ime za uporabnike in skupine lahko določite v zavihku #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Omeji dostop do %s uporabnikom, za katere velja kriterij:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -415,41 +415,51 @@ msgstr "Skupinski atributi iskanja" msgid "Group-Member association" msgstr "Povezava član-skupina" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Posebni atributi" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Polje količinske omejitve" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Privzeta količinska omejitev" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "v bajtih" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Polje elektronske pošte" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Pravila poimenovanja uporabniške osebne mape" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Pustite prazno za uporabniško ime (privzeto), sicer navedite atribut LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Programsko uporabniško ime" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -465,15 +475,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Privzeto je notranje uporabniško ime ustvarjeno na osnovi atributa UUID. To omogoča določitev uporabniškega imena kot enoličnega, zato znakov ni treba pretvarjati. Notranje ime je omejeno na standardne znake: [ a-zA-Z0-9_.@- ]. Morebitni drugi znaki so zamenjani z ustreznim ASCII znakom, ali pa so enostavno izpuščeni. V primeru sporov je prišteta ali odšteta številčna vrednost. Notranje uporabniško ime je uporabljeno za določanje uporabnika in je privzeto ime uporabnikove domače mape. Hkrati je tudi del oddaljenega naslova URL, na primer za storitve *DAV. S to nastavitvijo je prepisan privzet način delovanja. Pri različicah ownCloud, nižjih od 5.0, je podoben učinek mogoče doseči z vpisom prikaznega imena oziroma z neizpolnjenim (praznim) poljem te vrednosti. Spremembe bodo uveljavljene le za nove preslikane (dodane) uporabnike LDAP." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Programski atribut uporabniškega imena:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Prezri zaznavo UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -484,19 +494,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Privzeto je atribut UUID samodejno zaznan. Uporabljen je za določevanje uporabnikov LDAP in skupin. Notranje uporabniško ime je določeno prav na atributu UUID, če ni določeno drugače. To nastavitev je mogoče prepisati in poslati poljuben atribut. Zagotoviti je treba le, da je ta pridobljen kot enolični podatek za uporabnika ali skupino. Prazno polje določa privzeti način. Spremembe bodo vplivale na novo preslikane (dodane) uporabnike LDAP in skupine." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Atribut UUID za uporabnike:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Atribut UUID za skupine:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Uporabniška preslikava uporabniškega imena na LDAP" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -510,10 +520,10 @@ msgid "" "experimental stage." msgstr "Uporabniška imena so uporabljena za shranjevanje in dodeljevanje (meta) podatkov. Za natančno določanje in prepoznavanje uporabnikov je uporabljen sistem notranjega uporabniškega imena vsakega uporabnika LDAP. Ta možnost zahteva preslikavo uporabniškega imena v uporabnika LDAP in preslikano na njegov UUID. Sistem predpomni enolična imena za zmanjšanje odvisnosti LDAP, vendar pa ta podatek ni uporabljen za določevanje uporabnika. Če se enolično ime spremeni, se spremeni notranje uporabniško ime. Čiščenje preslikav pušča ostanke podatkov in vpliva na vse nastavitve LDAP! V delovnem okolju zato spreminjanje preslikav ni priporočljivo, možnost pa je na voljo za preizkušanje." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Izbriši preslikavo uporabniškega imena na LDAP" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Izbriši preslikavo skupine na LDAP" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 428cc6415b..e0b2b6fe65 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s ndau »%s« me ju" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -74,135 +69,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "E djelë" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "E hënë" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "E martë" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "E mërkurë" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "E enjte" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "E premte" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "E shtunë" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Janar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Shkurt" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mars" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Prill" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maj" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Qershor" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Korrik" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Gusht" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Shtator" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Tetor" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Nëntor" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Dhjetor" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Parametra" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut më parë" msgstr[1] "%n minuta më parë" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n orë më parë" msgstr[1] "%n orë më parë" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "sot" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "dje" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ditë më parë" msgstr[1] "%n ditë më parë" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n muaj më parë" msgstr[1] "%n muaj më parë" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "vite më parë" @@ -270,6 +269,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Ndarë" @@ -278,12 +297,12 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Veprim i gabuar" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -295,123 +314,123 @@ msgstr "Veprim i gabuar gjatë heqjes së ndarjes" msgid "Error while changing permissions" msgstr "Veprim i gabuar gjatë ndryshimit të lejeve" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Ndarë me ju dhe me grupin {group} nga {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Ndarë me ju nga {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Mbro me kod" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Kodi" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Lejo Ngarkimin Publik" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Dërgo email me lidhjen" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Dërgo" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Cakto datën e përfundimit" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Data e përfundimit" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Nda me email:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grupi" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "krijo" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "azhurno" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "elimino" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "nda" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email-i u dërgua" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -458,11 +477,17 @@ msgstr "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem A u siguruat që email-i/përdoruesi juaj ishte i msgid "You will receive a link to reset your password via Email." msgstr "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Përdoruesi" @@ -527,7 +552,7 @@ msgstr "Personale" msgid "Users" msgstr "Përdoruesit" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "App" @@ -637,49 +662,47 @@ msgstr "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, msgid "Create an admin account" msgstr "Krijo një llogari administruesi" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Të përparuara" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Emri i dosjes" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Konfiguro database-in" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "do të përdoret" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Përdoruesi i database-it" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Kodi i database-it" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Emri i database-it" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Tablespace-i i database-it" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Pozicioni (host) i database-it" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Mbaro setup-in" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -695,7 +718,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s është i disponueshëm. Merrni më shumë informacione mbi azhurnimin." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Dalje" @@ -721,27 +744,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Ke humbur kodin?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "kujto" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Hyrje" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Hyrje alternative" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 782e93a6b9..ec729b702f 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ard1t , 2014 # Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,36 +29,48 @@ msgstr "E pa mundur zhvendosja e %s - ekziston nje skedar me te njetin emer" msgid "Could not move %s" msgstr "Nuk mund të zhvendoset %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Emri i skedarit nuk mund të jetë bosh." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -65,236 +78,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "E pa mundur të vendoset dosja e ngarkimit" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Shenjë e gabuar" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Asnjë skedar nuk u dërgua. Gabim i pa njohur" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Skedari u ngarkua me sukses" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Skedari i ngarkuar tejkalon limitin hapsirës së lejuar në php.ini" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Skedari i ngarkuar tejlakon vlerën MAX_FILE_SIZE të përcaktuar në formën HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Skedari është ngakruar vetëm pjesërisht" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Asnjë skedar nuk është ngarkuar" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Mungon dosja e përkohshme" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Dështoi shkrimi në disk" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Hapsira e arkivimit e pamjaftueshme" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Dosje e pavlefshme" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Skedarë" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Nuk ka hapsirë të nevojshme" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Ngarkimi u anullua" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" -msgstr "" +msgstr "URL-i nuk mund të jetë bosh" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} është ekzistues " -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" -msgstr "" +msgstr "I pamundur krijimi i kartelës" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Ndaj" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Fshi përfundimisht" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Riemëro" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Në vijim" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "u zëvendësua {new_name} me {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "anullo" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" msgstr[1] "%n skedarë" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} dhe {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Po ngarkoj %n skedar" msgstr[1] "Po ngarkoj %n skedarë" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' nuk është skedar i vlefshem." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Hapsira juaj e arkivimit është plot, skedarët nuk mund të përditësohen ose sinkronizohen!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Hapsira juaj e arkivimit është pothuajse në fund ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Shkarkimi juaj është duke u përgatitur. Kjo mund të kërkojë kohë nëse skedarët janë të mëdhenj." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" -msgstr "" +msgstr "Gabim lëvizjen dokumentave" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Gabim" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Emri" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Madhësia" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Ndryshuar" @@ -302,12 +310,12 @@ msgstr "Ndryshuar" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "Nuk është i mundur riemërtimi i %s" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Ngarko" @@ -343,69 +351,69 @@ msgstr "Maksimumi hyrës i skedarëve ZIP" msgid "Save" msgstr "Ruaj" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "E re" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Skedar tekst" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" -msgstr "" +msgstr "Dosje e're" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Dosje" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Nga lidhja" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Skedarë të fshirë " -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anullo ngarkimin" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Këtu nuk ka asgje. Ngarko dicka" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Shkarko" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Fshi" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Ngarkimi shumë i madh" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Skedarët që po mundoheni të ngarkoni e tejkalojnë madhësinë maksimale të lejuar nga serveri." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Skanerizimi i skedarit në proces. Ju lutem prisni." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Skanimi aktual" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index ef46b2cd31..fe70cc4dd2 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Duke ruajtur..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 62b645b85d..4744e08c44 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Përdoruesit" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Elimino" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index cd5a5fbb8a..492388cd80 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ard1t , 2014 # Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,9 +19,13 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "Kjo pjesë është e mbrojtur me fjalëkalim" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." @@ -54,32 +59,16 @@ msgstr "ndarja është çaktivizuar" msgid "For more info, please ask the person who sent this link." msgstr "Për më shumë informacione, ju lutem pyesni personin që iu dërgoi këtë lidhje." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s ndau me ju dosjen %s" - -#: templates/public.php:21 -#, php-format -msgid "%s shared the file %s with you" -msgstr "%s ndau me ju skedarin %s" - -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Shkarko" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Ngarko" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Anulo ngarkimin" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Shikimi paraprak nuk është i mundur për" - -#: templates/public.php:99 -msgid "Direct link" +msgid "shared by %s" msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "Lidhje direkte" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 64b4a4e742..edca1350fb 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nuk munda ta eliminoj përfundimisht %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Nuk munda ta rivendos %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Veprim i gabuar" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "rivendosur" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Këtu nuk ka asgjë. Koshi juaj është bosh!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Emri" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Rivendos" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Eliminuar" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Elimino" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Skedarë të eliminuar" diff --git a/l10n/sq/files_versions.po b/l10n/sq/files_versions.po index e4c86ec1c7..72ddcf8499 100644 --- a/l10n/sq/files_versions.po +++ b/l10n/sq/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ard1t , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-01-17 14:10+0000\n" +"Last-Translator: ard1t \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,24 +21,24 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Nuk mund të ktheje: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" -msgstr "" +msgstr "Versioni" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Dështoi në ktheje {skedar} të rishikimit {kohëstampe}." -#: js/versions.js:79 +#: js/versions.js:87 msgid "More versions..." -msgstr "" +msgstr "Versione m'shumë..." -#: js/versions.js:116 +#: js/versions.js:125 msgid "No other versions available" -msgstr "" +msgstr "Nuk ka versione të tjera në dispozicion" -#: js/versions.js:149 +#: js/versions.js:155 msgid "Restore" msgstr "Rivendos" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 70e3092552..2e0c7c6714 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Ndihmë" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personale" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Parametra" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Përdoruesit" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Programi nuk është i aktivizuar." -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Skedarët" @@ -199,8 +198,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm." +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -227,21 +226,21 @@ msgstr "Komanda e gabuar ishte: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Përdoruesi MySQL '%s'@'localhost' ekziston." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Eliminoni këtë përdorues nga MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Përdoruesi MySQL '%s'@'%%' ekziston" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Eliminoni këtë përdorues nga MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -268,66 +267,72 @@ msgstr "Cakto emrin e administratorit." msgid "Set an admin password." msgstr "Cakto kodin e administratorit." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kategoria \"%s\" nuk u gjet" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekonda më parë" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuta më parë" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n orë më parë" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "sot" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "dje" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n ditë më parë" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "muajin e shkuar" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n muaj më parë" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "vitin e shkuar" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 3eb24bfb8c..3e2eb7daef 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "E pamundur të shkarkohet lista nga App Store" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Dokumentacion përdoruesi" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Përditësim për {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Çaktivizo" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktivizo" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Ju lutem prisni..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Duke përditësuar..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Gabim gjatë përditësimit të app" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Gabim" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Përditësim" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "I përditësuar" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Duke ruajtur..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "anullo veprimin" msgid "Unable to remove user" msgstr "E pamundur të fshiet përdoruesi" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupet" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Grupi Admin" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Fshi" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "shto grup" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Duhet të jepni një emër të vlefshëm përdoruesi" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Gabim gjatë krijimit të përdoruesit" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Duhet të jepni një fjalëkalim te vlefshëm" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Shqip" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Njoftim për sigurinë" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Lajmërim konfigurimi" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web Serveri juaj nuk është konfigurar sic duhet në mënyre që të lejojë sinkronizimin e skedare pasi ndërfaqja WevDAV duket të jetë e demtuar." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Mungon moduli 'fileinfo'" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Moduli PHP 'fileinfo' mungon. Ju këshillojmë me këmbngulje të aktivizoni këtë modul për të arritur rezultate më të mirame identifikimin e tipeve te ndryshme MIME." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Locale nuk është funksional" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Lidhja me internetin nuk është funksionale" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Ndarje" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Aktivizo API për ndarjet" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Lejoni aplikacionet të përdorin share API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Lejo lidhjet" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Lejoni përdoruesit të ndajnë elementët publikisht nëpermjet lidhjeve" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Lejo ngarkimin publik" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Lejo përdoruesit të mundësojnë të tjerët që të ngarkojnë materiale në dosjen e tyre publike" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Lejo ri-ndarjen" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Lejoni përdoruesit të ndjanë dhe ata elementë të ndarë më parë ngë të tjerë" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Lejo përdoruesit të ndajnë me cilindo" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Lejoni përdoruesit të ndajnë vetëm me përdorues të të njëjtit grup" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Siguria" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Detyro HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Historik aktiviteti" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Niveli i Historikut" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Më tepër" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" -msgstr "" +msgstr "M'pak" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Versioni" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Zhvilluar nga Komuniteti OwnCloud, gjithashtu source code është licensuar me anë të AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Shtoni apliakcionin tuaj" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Apliakcione të tjera" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Zgjidhni një Aplikacion" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Shihni faqen e aplikacionit tek apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licensuar nga " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Dokumentacion përdoruesi" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Dokumentacion administratori" @@ -506,7 +648,7 @@ msgstr "Rishfaq përsëri fazat për hapjen e herës së parë" msgid "You have used %s of the available %s" msgstr "Ju keni përdorur %s nga %s të mundshme " -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Fjalëkalim" @@ -518,151 +660,149 @@ msgstr "fjalëkalimi juaj u ndryshua" msgid "Unable to change your password" msgstr "Nuk është e mundur të ndryshohet fjalëkalimi" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Fjalëkalimi aktual" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Fjalëkalimi i ri" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Ndrysho fjalëkalimin" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Adresa juaj email" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Jepni një adresë email për të aktivizuar rigjetjen e fjalëkalimit" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Gjuha" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Ndihmoni në përkthim" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Emri i Përdoruesit" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Krijo" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Rigjetja e fjalëkalimit të Admin" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Jepni fjalëkalimin e rigjetjes për të rigjetur skedarët e përdoruesit gjatë ndryshimit të fjalëkalimit" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Vendruajtje e paracaktuar/Default Storage" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "E pakufizuar" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Tjetër" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Përdoruesi" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Vendruajtja/Storage" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "vendos fjalëkalim të ri" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Paracaktuar" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 89b59666e1..e800cb6379 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "Sukses" msgid "Error" msgstr "Gabim" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Prova e lidhjes përfundoi me sukses" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Prova e lidhjes dështoi" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Jeni vërtetë të sigurt të fshini konfigurimet aktuale të serverit?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Konfirmoni Fshirjen" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "Ndihmë" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "Ju mund të specifikoni Bazen DN për përdorues dhe grupe në butonin ' #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "Atributet e kërkimit të grupit" msgid "Group-Member association" msgstr "Pjestar Grup-Përdorues " -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Atribute të veçanta" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Hapsira e Kuotës" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Kuota e paracaktuar" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "në byte" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Hapsira e Postës Elektronike" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Rregulli i emërimit të dosjes së përdoruesit" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lëreni bosh për emrin e përdoruesit (I Paracaktuar). Ose, përcaktoni një atribut LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Emër i brëndshëm i përdoruesit" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Atributet e emrit të përdoruesit të brëndshëm" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Mbivendosni gjetjen e UUID" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Emri përdoruesit-LAPD përcaktues përdoruesi" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Fshini Emër përdoruesi-LAPD Përcaktues përdoruesi" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Fshini Emër Grupi-LADP Përcaktues grupi" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a30a77a7c9..6e587a8646 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,139 +67,143 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Недеља" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Понедељак" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Уторак" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Среда" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Четвртак" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Петак" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Субота" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Јануар" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Фебруар" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Март" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Април" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Мај" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Јун" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Јул" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Август" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Септембар" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Октобар" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Новембар" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Децембар" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Поставке" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "данас" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "јуче" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "месеци раније" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "прошле године" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "година раније" @@ -273,6 +272,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -281,12 +300,12 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -298,123 +317,123 @@ msgstr "Грешка код искључења дељења" msgid "Error while changing permissions" msgstr "Грешка код промене дозвола" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Дељено са вама и са групом {group}. Поделио {owner}." -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Поделио са вама {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Заштићено лозинком" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Лозинка" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Пошаљи" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Постави датум истека" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Датум истека" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Подели поштом:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "група" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "може да мења" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "права приступа" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "направи" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "ажурирај" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "обриши" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "подели" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Порука је послата" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Упозорење" @@ -461,11 +480,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Овом везом ресетујте своју лозинку: {link}" @@ -485,8 +510,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Добићете везу за ресетовање лозинке путем е-поште." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Корисничко име" @@ -530,7 +555,7 @@ msgstr "Лично" msgid "Users" msgstr "Корисници" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Апликације" @@ -640,49 +665,47 @@ msgstr "" msgid "Create an admin account" msgstr "Направи административни налог" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Напредно" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Подешавање базе" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "ће бити коришћен" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Заврши подешавање" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -698,7 +721,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Одјава" @@ -724,27 +747,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Изгубили сте лозинку?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "упамти" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Пријава" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 5aee2a258b..f6f5429ef9 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "Не могу да преместим %s – датотека с ови msgid "Could not move %s" msgstr "Не могу да преместим %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Име датотеке не може бити празно." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,239 +76,234 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "неисправна фасцикла." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Датотеке" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Нема довољно простора" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Дели" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "опозови" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "Датотека „.“ је неисправног имена." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване." -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Грешка" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Име" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Величина" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Измењено" @@ -304,12 +311,12 @@ msgstr "Измењено" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Отпреми" @@ -345,69 +352,69 @@ msgstr "Највећа величина ZIP датотека" msgid "Save" msgstr "Сачувај" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Нова" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "текстуална датотека" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "фасцикла" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Са везе" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Обрисане датотеке" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Овде нема ничег. Отпремите нешто!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Преузми" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Обриши" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Датотека је превелика" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Датотеке које желите да отпремите прелазе ограничење у величини." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Скенирам датотеке…" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Тренутно скенирање" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 4eb2ca4e3d..b072157e73 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Чување у току..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 97c2ec3dbc..2077f942d6 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Корисници" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Обриши" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index cc5d524fb0..8a40c7c4bb 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Преузми" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Отпреми" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Прекини отпремање" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index e0b12d92e3..6f92e62285 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Грешка" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Овде нема ништа. Корпа за отпатке је празна." -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Име" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Врати" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Обрисано" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Обриши" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 1e2a625e31..d2832922e6 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Помоћ" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Лично" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Поставке" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Корисници" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Администратор" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "веб сервиси под контролом" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Апликација није омогућена" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Грешка при провери идентитета" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Жетон је истекао. Поново учитајте страницу." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Датотеке" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,70 +267,76 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Погледајте водиче за инсталацију." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не могу да пронађем категорију „%s“." -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "пре неколико секунди" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "данас" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "јуче" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "прошлог месеца" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "прошле године" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index fae3f55113..7ff09f8221 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Шифровање" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Грешка приликом учитавања списка из Складишта Програма" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Корисничка документација" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Ажурирај на {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Искључи" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Омогући" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Сачекајте…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Ажурирам…" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Грешка при ажурирању апликације" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Грешка" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Ажурирај" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Ажурирано" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Чување у току..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "опозови" msgid "Unable to remove user" msgstr "Не могу да уклоним корисника" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Групе" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Управник групе" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Обриши" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "додај групу" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Морате унети исправно корисничко име" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Грешка при прављењу корисника" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Сигурносно упозорење" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Упозорење о подешавању" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Недостаје модул „fileinfo“" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Локализација не ради" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Веза с интернетом не ради" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Изврши један задатак са сваком учитаном страницом" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Дељење" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Омогући API Share" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Дозвољава апликацијама да користе API Share" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Дозволи везе" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Дозволи корисницима да деле ставке с другима путем веза" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Дозволи поновно дељење" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Дозволи корисницима да поновно деле ставке с другима" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Дозволи корисницима да деле са било ким" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Бележење" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Више" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Мање" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Верзија" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Развијају Оунклауд (ownCloud) заједница, изворни код је издат под АГПЛ лиценцом." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Додајте ваш програм" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Више програма" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Изаберите програм" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Погледајте страницу са програмима на apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-лиценцирао " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Корисничка документација" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Администраторска документација" @@ -506,7 +648,7 @@ msgstr "Поново прикажи чаробњак за прво покрет msgid "You have used %s of the available %s" msgstr "Искористили сте %s од дозвољених %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Лозинка" @@ -518,151 +660,149 @@ msgstr "Лозинка је промењена" msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Ун" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Језик" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Шифровање" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Корисничко име" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Направи" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Подразумевано складиште" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Неограничено" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Друго" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Корисничко име" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Складиште" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "постави нову лозинку" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Подразумевано" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index e4b50474c1..8863ccfbcc 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Грешка" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -164,7 +164,7 @@ msgstr "Помоћ" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -200,7 +200,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -268,7 +268,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -411,41 +411,51 @@ msgstr "" msgid "Group-Member association" msgstr "Придруживање чланова у групу" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "у бајтовима" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 14e62f885d..54f7622c92 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,139 +68,143 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Nedelja" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Ponedeljak" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Utorak" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Sreda" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Četvrtak" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Petak" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Subota" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januar" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februar" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mart" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maj" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Jun" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Jul" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Avgust" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Septembar" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktobar" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Novembar" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Decembar" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "Pre par sekundi" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "Danas" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "juče" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "prošlog meseca" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "pre nekoliko meseci" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "prošle godine" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "pre nekoliko godina" @@ -274,6 +273,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Deljeno" @@ -282,12 +301,12 @@ msgstr "Deljeno" msgid "Share" msgstr "Podeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Greška pri deljenju" @@ -299,123 +318,123 @@ msgstr "Greška u uklanjanju deljenja" msgid "Error while changing permissions" msgstr "Greška u promeni dozvola" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} podelio sa Vama i grupom {group} " -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Sa vama podelio {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Zaštita lozinkom" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Lozinka" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Pošalji link e-mailom" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Pošalji" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Datum isteka" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Deli putem e-maila" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Nema pronađenih ljudi" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Dalje deljenje nije dozvoljeno" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Deljeno u {item} sa {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Ukljoni deljenje" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "dozvoljene izmene" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "napravi" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "ažuriranje" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "brisanje" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "deljenje" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Zaštćeno lozinkom" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email poslat" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -462,11 +481,17 @@ msgstr "Ažuriranje nije uspelo. Molimo obavestite admin account" msgstr "Napravi administrativni nalog" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Napredno" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Fascikla podataka" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Podešavanje baze" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "će biti korišćen" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "tablespace baze" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Završi podešavanje" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -699,7 +722,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Odjava" @@ -725,27 +748,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Izgubili ste lozinku?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "upamti" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 04a77944eb..98fa063278 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,239 +76,234 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Fajlovi" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Podeli" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" -msgstr "" +msgstr "Preimenij" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Greška" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Ime" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Veličina" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Zadnja izmena" @@ -304,12 +311,12 @@ msgstr "Zadnja izmena" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Pošalji" @@ -345,69 +352,69 @@ msgstr "" msgid "Save" msgstr "Snimi" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Preuzmi" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Obriši" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 08e33ab99d..11e2fec48d 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index d2e140796d..70156cba68 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "Korisnici" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Obriši" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 5b0b5a4f17..41dbd79a9a 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Preuzmi" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Pošalji" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 54363eaf89..930dd474cc 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Greška" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Ime" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Obriši" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 2a2686d0fb..b63e0ffab3 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Pomoć" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Lično" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Podešavanja" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Korisnici" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Adninistracija" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Greška pri autentifikaciji" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Fajlovi" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,70 +267,76 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "Pre par sekundi" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "Danas" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "juče" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "prošlog meseca" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "prošle godine" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "pre nekoliko godina" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index e0cefa221d..8e4ae079b6 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Greška" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupe" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Obriši" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Bezbednosno upozorenje" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Izaberite program" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Lozinka" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-mail" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Jezik" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Napravi" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Drugo" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Korisničko ime" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 425b935c3c..91af033379 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "Greška" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -164,7 +164,7 @@ msgstr "Pomoć" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -200,7 +200,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -268,7 +268,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -411,41 +411,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/su/core.po b/l10n/su/core.po new file mode 100644 index 0000000000..113cf81cfa --- /dev/null +++ b/l10n/su/core.po @@ -0,0 +1,793 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/share.php:112 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "" + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:458 +msgid "Settings" +msgstr "" + +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 +msgid "seconds ago" +msgstr "" + +#: js/js.js:993 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" + +#: js/js.js:994 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" + +#: js/js.js:995 +msgid "today" +msgstr "" + +#: js/js.js:996 +msgid "yesterday" +msgstr "" + +#: js/js.js:997 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" + +#: js/js.js:998 +msgid "last month" +msgstr "" + +#: js/js.js:999 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" + +#: js/js.js:1000 +msgid "months ago" +msgstr "" + +#: js/js.js:1001 +msgid "last year" +msgstr "" + +#: js/js.js:1002 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:755 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:363 +msgid "group" +msgstr "" + +#: js/share.js:335 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:379 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:401 +msgid "Unshare" +msgstr "" + +#: js/share.js:409 +msgid "notify by email" +msgstr "" + +#: js/share.js:412 +msgid "can edit" +msgstr "" + +#: js/share.js:414 +msgid "access control" +msgstr "" + +#: js/share.js:417 +msgid "create" +msgstr "" + +#: js/share.js:420 +msgid "update" +msgstr "" + +#: js/share.js:423 +msgid "delete" +msgstr "" + +#: js/share.js:426 +msgid "share" +msgstr "" + +#: js/share.js:698 +msgid "Password protected" +msgstr "" + +#: js/share.js:711 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:723 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:742 +msgid "Sending ..." +msgstr "" + +#: js/share.js:753 +msgid "Email sent" +msgstr "" + +#: js/share.js:777 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/su/files.po b/l10n/su/files.po new file mode 100644 index 0000000000..7ac8a61757 --- /dev/null +++ b/l10n/su/files.po @@ -0,0 +1,417 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:57 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:62 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:591 +msgid "undo" +msgstr "" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:379 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error moving file" +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error" +msgstr "" + +#: js/files.js:672 templates/index.php:68 +msgid "Name" +msgstr "" + +#: js/files.js:673 templates/index.php:80 +msgid "Size" +msgstr "" + +#: js/files.js:674 templates/index.php:82 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:111 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:23 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:6 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "New text file" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:13 +msgid "New folder" +msgstr "" + +#: templates/index.php:14 +msgid "Folder" +msgstr "" + +#: templates/index.php:17 +msgid "From link" +msgstr "" + +#: templates/index.php:41 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:52 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:57 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:74 +msgid "Download" +msgstr "" + +#: templates/index.php:85 templates/index.php:86 +msgid "Delete" +msgstr "" + +#: templates/index.php:98 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:100 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:105 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:108 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/su/files_encryption.po b/l10n/su/files_encryption.po new file mode 100644 index 0000000000..43e3808a37 --- /dev/null +++ b/l10n/su/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/su/files_external.po b/l10n/su/files_external.po new file mode 100644 index 0000000000..ad5375c9f4 --- /dev/null +++ b/l10n/su/files_external.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:516 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:519 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:155 templates/settings.php:156 +msgid "Delete" +msgstr "" + +#: templates/settings.php:127 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:147 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:165 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/su/files_sharing.po b/l10n/su/files_sharing.po new file mode 100644 index 0000000000..868f619bef --- /dev/null +++ b/l10n/su/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/su/files_trashbin.po b/l10n/su/files_trashbin.po new file mode 100644 index 0000000000..a2c4e0bb72 --- /dev/null +++ b/l10n/su/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:852 lib/trashbin.php:854 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/su/files_versions.po b/l10n/su/files_versions.po new file mode 100644 index 0000000000..7b3c1daa71 --- /dev/null +++ b/l10n/su/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-02-08 16:07+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:87 +msgid "More versions..." +msgstr "" + +#: js/versions.js:125 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:155 +msgid "Restore" +msgstr "" diff --git a/l10n/su/lib.po b/l10n/su/lib.po new file mode 100644 index 0000000000..15649f4f65 --- /dev/null +++ b/l10n/su/lib.po @@ -0,0 +1,334 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:63 private/json.php:88 +msgid "Authentication error" +msgstr "" + +#: private/json.php:52 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:24 +#: private/setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:89 +#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 +#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:90 +#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 +#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:198 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:199 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:133 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:134 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" + +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" + +#: private/template/functions.php:136 +msgid "today" +msgstr "" + +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" + +#: private/template/functions.php:141 +msgid "last month" +msgstr "" + +#: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "" + +#: private/template/functions.php:145 +msgid "years ago" +msgstr "" diff --git a/l10n/su/settings.po b/l10n/su/settings.po new file mode 100644 index 0000000000..edce687ab0 --- /dev/null +++ b/l10n/su/settings.po @@ -0,0 +1,808 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:54 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:244 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:49 personal.php:50 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:60 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:71 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:74 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:75 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:86 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:89 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:100 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:103 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:114 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:119 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:123 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:127 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:139 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:142 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:156 +msgid "Cron" +msgstr "" + +#: templates/admin.php:163 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:171 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:179 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:184 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:190 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:191 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:198 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:199 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:207 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:208 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:216 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:217 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:224 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:234 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:242 +msgid "Security" +msgstr "" + +#: templates/admin.php:255 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:257 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:263 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 +msgid "Log" +msgstr "" + +#: templates/admin.php:358 +msgid "Log level" +msgstr "" + +#: templates/admin.php:390 +msgid "More" +msgstr "" + +#: templates/admin.php:391 +msgid "Less" +msgstr "" + +#: templates/admin.php:397 templates/personal.php:181 +msgid "Version" +msgstr "" + +#: templates/admin.php:401 templates/personal.php:184 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:37 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:43 +msgid "Current password" +msgstr "" + +#: templates/personal.php:46 +msgid "New password" +msgstr "" + +#: templates/personal.php:50 +msgid "Change password" +msgstr "" + +#: templates/personal.php:64 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:81 +msgid "Email" +msgstr "" + +#: templates/personal.php:83 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:101 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:112 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:120 templates/personal.php:121 +msgid "Language" +msgstr "" + +#: templates/personal.php:140 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:147 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:149 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:161 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:167 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:172 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/su/user_ldap.po b/l10n/su/user_ldap.po new file mode 100644 index 0000000000..aa4721f182 --- /dev/null +++ b/l10n/su/user_ldap.po @@ -0,0 +1,521 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:963 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:44 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:45 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:46 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:46 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:52 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:53 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:54 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:55 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:56 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:59 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/su/user_webdavauth.po b/l10n/su/user_webdavauth.po new file mode 100644 index 0000000000..1a336d817e --- /dev/null +++ b/l10n/su/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-02-08 16:08+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: su\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 8d95db7552..914558fec1 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,12 +24,7 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s delade »%s« med dig" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Gick inte att skicka e-post till följande användare: %s" @@ -79,135 +74,139 @@ msgstr "Ingen temporär profilbild finns tillgänglig, försök igen" msgid "No crop data provided" msgstr "Ingen beskärdata har angivits" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Söndag" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Måndag" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Tisdag" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Onsdag" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Torsdag" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Fredag" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Lördag" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Januari" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Februari" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mars" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "April" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Maj" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Juni" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Juli" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Augusti" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "September" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Oktober" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "November" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "December" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Inställningar" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "i dag" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "i går" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "förra månaden" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "månader sedan" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "förra året" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "år sedan" @@ -275,6 +274,26 @@ msgstr "({count} valda)" msgid "Error loading file exists template" msgstr "Fel uppstod filmall existerar" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Delad" @@ -283,12 +302,12 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Fel" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Fel vid delning" @@ -300,123 +319,123 @@ msgstr "Fel när delning skulle avslutas" msgid "Error while changing permissions" msgstr "Fel vid ändring av rättigheter" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Delad med dig och gruppen {group} av {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Delad med dig av {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Dela med användare eller grupp..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Dela länk" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Lösenord" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Tillåt publik uppladdning" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "E-posta länk till person" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Skicka" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Sätt utgångsdatum" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Utgångsdatum" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Dela via e-post:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "Grupp" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "informera via e-post" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "kan redigera" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "skapa" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "uppdatera" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "radera" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "dela" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-post skickat" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Varning" @@ -463,11 +482,17 @@ msgstr "Uppdateringen misslyckades. Rapportera detta problem till Är du helt säker på att din e-postadress/an msgid "You will receive a link to reset your password via Email." msgstr "Du får en länk att återställa ditt lösenord via e-post." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Användarnamn" @@ -532,7 +557,7 @@ msgstr "Personligt" msgid "Users" msgstr "Användare" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Program" @@ -642,49 +667,47 @@ msgstr "För information hur du korrekt konfigurerar din servern, se ownCloud admin account" msgstr "Skapa ett administratörskonto" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Avancerad" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Datamapp" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Konfigurera databasen" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "kommer att användas" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Avsluta installation" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Avslutar ..." @@ -700,7 +723,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s är tillgänglig. Få mer information om hur du går tillväga för att uppdatera." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Logga ut" @@ -726,28 +749,28 @@ msgstr "Servern misslyckades med autentisering!" msgid "Please contact your administrator." msgstr "Kontakta din administratör." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Glömt ditt lösenord?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "kom ihåg" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Logga in" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternativa inloggningar" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Hej där,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 19f5324e9c..ce010effa3 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.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-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,36 +35,48 @@ msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" msgid "Could not move %s" msgstr "Kan inte flytta %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnamn kan inte vara tomt." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Filnamnet får ej innehålla \"/\". Välj ett annat namn." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Namnet %s används redan i katalogen %s. Välj ett annat namn." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Inte en giltig källa" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "Fel under nerladdning från %s till %s" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Fel under skapande utav filen" @@ -72,236 +84,231 @@ msgstr "Fel under skapande utav filen" msgid "Folder name cannot be empty." msgstr "Katalognamn kan ej vara tomt." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Katalog namnet får ej innehålla \"/\". Välj ett annat namn." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Fel under skapande utav en katalog" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Kan inte sätta mapp för uppladdning." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Ogiltig token" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överskrider MAX_FILE_SIZE direktivet som har angetts i HTML formuläret" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Felaktig mapp." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Filer" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Kan inte ladda upp {filename} eftersom den antingen är en mapp eller har 0 bytes." -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Inte tillräckligt med utrymme tillgängligt" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Gick inte att hämta resultat från server." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL kan ej vara tomt" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hemma katalogen 'Delat' är ett reserverat filnamn" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Kunde ej skapa fil" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Kunde ej skapa katalog" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Dela" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Kan ej byta filnamn" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "ångra" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Kunde inte ta bort filen." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} och {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laddar upp %n fil" msgstr[1] "Laddar upp %n filer" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' är ett ogiltigt filnamn." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ogiltig privat nyckel i krypteringsprogrammet. Vänligen uppdatera lösenordet till din privata nyckel under dina personliga inställningar för att återfå tillgång till dina krypterade filer." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Fel uppstod vid flyttning av fil" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Fel" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Namn" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Storlek" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Ändrad" @@ -309,12 +316,12 @@ msgstr "Ändrad" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s kunde inte namnändras" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Ladda upp" @@ -350,69 +357,69 @@ msgstr "Största tillåtna storlek för ZIP-filer" msgid "Save" msgstr "Spara" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Ny" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Textfil" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Ny mapp" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Mapp" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Från länk" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Raderade filer" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Du har ej tillåtelse att ladda upp eller skapa filer här" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Radera" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "För stor uppladdning" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 170e14d7fe..ef12db2aaf 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,18 +87,18 @@ msgid "" "administrator" msgstr "Oväntat fel, kolla dina system inställningar eller kontakta din administratör" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Krav som saknas" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad." -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Följande användare har inte aktiverat kryptering:" @@ -106,9 +106,9 @@ msgstr "Följande användare har inte aktiverat kryptering:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Sparar..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index db436300c6..469fd35ede 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Åtkomst beviljad" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Fel vid konfigurering av Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Bevilja åtkomst" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Ange en giltig Dropbox nyckel och hemlighet." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Fel vid konfigurering av Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." -#: lib/config.php:465 +#: lib/config.php:516 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 "Varning: Stöd för FTP i PHP är inte aktiverat eller installerat. Montering av FTP-delningar är inte möjligt. Kontakta din systemadministratör för att få det installerat." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Användare" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Radera" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Aktivera extern lagring för användare" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Tillåt användare att montera egen extern lagring" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL rotcertifikat" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Importera rotcertifikat" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 1f268c83f9..69aa695f8f 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: Gustav Smedberg \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,6 +20,10 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Den här delningen är lösenordsskyddad" @@ -56,32 +60,16 @@ msgstr "delning är inaktiverat" msgid "For more info, please ask the person who sent this link." msgstr "För mer information, kontakta den person som skickade den här länken." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s delade mappen %s med dig" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s delade filen %s med dig" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Ladda ner" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Ladda upp" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Avbryt uppladdning" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Ingen förhandsgranskning tillgänglig för" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Direkt länk" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index b0e25cc1df..0ca2e12ae3 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,44 +19,48 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kunde inte radera %s permanent" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Kunde inte återställa %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Fel" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "återställd" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Ingenting här. Din papperskorg är tom!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Namn" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Återskapa" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Raderad" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Radera" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Raderade filer" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 54927d685c..7086943fd4 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,38 +22,38 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "Appen \"%s\" kan inte installeras eftersom att den inte är kompatibel med denna version av ownCloud." -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "Inget appnamn angivet" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Hjälp" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Personligt" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Inställningar" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Användare" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Admin" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." @@ -66,15 +66,10 @@ msgstr "Okänd filtyp" msgid "Invalid image" msgstr "Ogiltig bild" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "webbtjänster under din kontroll" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "Kan inte öppna \"%s\"" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." @@ -97,74 +92,78 @@ msgid "" "administrator." msgstr "Ladda ner filerna i mindre bitar, separat eller fråga din administratör." -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Ingen källa angiven vid installation av app " -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Ingen href angiven vid installation av app från http" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Ingen sökväg angiven vid installation av app från lokal fil" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "Arkiv av typen %s stöds ej" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Kunde inte öppna arkivet när appen skulle installeras" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Appen har ingen info.xml fil" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Appen kan inte installeras eftersom att den innehåller otillåten kod" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "Appen kan inte installeras eftersom att den inte är kompatibel med denna version av ownCloud" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Appen kan inte installeras eftersom att den innehåller etiketten true vilket inte är tillåtet för icke inkluderade appar" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Appen kan inte installeras eftersom versionen i info.xml inte är samma som rapporteras från app store" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Appens mapp finns redan" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Kan inte skapa appens mapp. Var god åtgärda rättigheterna. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Applikationen är inte aktiverad" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Fel vid autentisering" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Ogiltig token. Ladda om sidan." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Filer" @@ -204,8 +203,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Du måste antingen ange ett befintligt konto eller administratör." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL-användarnamnet och/eller lösenordet är felaktigt" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -232,21 +231,21 @@ msgstr "Det felaktiga kommandot var: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL-användaren '%s'@'localhost' existerar redan." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Radera denna användare från MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQl-användare '%s'@'%%' existerar redan" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Radera denna användare från MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -273,66 +272,72 @@ msgstr "Ange ett användarnamn för administratören." msgid "Set an admin password." msgstr "Ange ett administratörslösenord." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Var god kontrollera installationsguiden." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunde inte hitta kategorin \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "sekunder sedan" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "i dag" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "förra månaden" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "förra året" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index eb3d26c3c0..9807a040d3 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,6 +26,48 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Kryptering" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Kan inte ladda listan från App Store" @@ -122,62 +164,90 @@ msgstr "Gränssnittet stödjer inte byte av lösenord, men användarnas krypteri msgid "Unable to change password" msgstr "Kunde inte ändra lösenord" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Användardokumentation" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Uppdatera till {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Deaktivera" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Aktivera" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Var god vänta..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Fel vid inaktivering av app" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Fel vid aktivering av app" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Uppdaterar..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Fel uppstod vid uppdatering av appen" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Fel" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Uppdatera" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Välj en profilbild" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekrypterar filer... Vänligen vänta, detta kan ta en stund." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Sparar..." - #: js/users.js:47 msgid "deleted" msgstr "raderad" @@ -190,40 +260,40 @@ msgstr "ångra" msgid "Unable to remove user" msgstr "Kan inte ta bort användare" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Grupper" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Gruppadministratör" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Radera" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "lägg till grupp" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Fel vid skapande av användare" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Varning: Hem katalogen för varje användare \"{användare}\" finns redan" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -247,18 +317,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Säkerhetsvarning" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -267,68 +361,68 @@ msgid "" "root." msgstr "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Installationsvarning" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Vänligen dubbelkolla igenom installationsguiden." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Modulen \"fileinfo\" saknas" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Locale fungerar inte" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Internetförbindelsen fungerar inte" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -337,118 +431,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Använd systemets cron service att ropa på cron.php filen varje 15 minuter." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Dela" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Tillåt offentlig uppladdning" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillåt användare att aktivera\nTillåt användare att göra det möjligt för andra att ladda upp till sina offentligt delade mappar" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Tillåt vidaredelning" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dem" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Tillåt e-post notifikation" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Tillåt användare att skicka e-port notifikationer för delade filer" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Logg" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Mer" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Mindre" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Utvecklad av ownCloud Community, källkoden är licenserad under AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Lägg till din applikation" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Fler Appar" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Välj en App" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Se programsida på apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licensierad av " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Användardokumentation" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Administratörsdokumentation" @@ -515,7 +657,7 @@ msgstr "Visa Första uppstarts-guiden igen" msgid "You have used %s of the available %s" msgstr "Du har använt %s av tillgängliga %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Lösenord" @@ -527,151 +669,149 @@ msgstr "Ditt lösenord har ändrats" msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Hela namnet" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-post" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Fyll i en e-postadress för att aktivera återställning av lösenord" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profilbild" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Ladda upp ny" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Välj ny från filer" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Radera bild" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "Antingen png eller jpg. Helst fyrkantig, men du kommer att kunna beskära den." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "Avbryt" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Välj som profilbild" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Språk" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Använd denna adress till nå dina Filer via WebDAV" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Kryptering" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Inloggningslösenord" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Dekryptera alla filer" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Inloggningsnamn" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Skapa" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Admin återställningslösenord" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Enter the recovery password in order to recover the users files during password change" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Förvald lagring" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Obegränsad" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Annat" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Användarnamn" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Lagring" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "ändra hela namnet" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "ange nytt lösenord" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Förvald" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 9ccf06aa4b..9b0801478b 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -8,15 +8,16 @@ # Jan Busk, 2013 # Jonas Erlandsson , 2013 # kallemooo , 2013 +# lagre, 2014 # Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,43 +94,43 @@ msgstr "Lyckat" msgid "Error" msgstr "Fel" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Konfigurationen är OK" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Felaktig konfiguration" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Konfigurationen är ej komplett" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Välj grupper" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Välj Objekt-klasser" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Välj attribut" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Anslutningstestet lyckades" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Anslutningstestet misslyckades" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Vill du verkligen radera den nuvarande serverinställningen?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Bekräfta radering" @@ -147,11 +148,11 @@ msgid_plural "%s users found" msgstr[0] "%s användare hittad" msgstr[1] "%s användare hittade" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Felaktig Host" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "Det gick inte hitta den önskade funktionen" @@ -169,8 +170,8 @@ msgstr "Hjälp" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "Begränsa åtkomsten till %s till grupper som möter följande kriterie:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -186,13 +187,13 @@ msgstr "endast ifrån de här grupperna:" #: templates/part.wizard-loginfilter.php:32 #: templates/part.wizard-userfilter.php:25 msgid "Edit raw filter instead" -msgstr "" +msgstr "Redigera rått filter istället" #: templates/part.wizard-groupfilter.php:30 #: templates/part.wizard-loginfilter.php:37 #: templates/part.wizard-userfilter.php:30 msgid "Raw LDAP filter" -msgstr "" +msgstr "Rått LDAP-filter" #: templates/part.wizard-groupfilter.php:31 #, php-format @@ -205,8 +206,8 @@ msgid "groups found" msgstr "grupper hittade" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Vilket attribut ska användas som login namn:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -273,8 +274,8 @@ msgstr "Du kan ange start DN för användare och grupper under fliken Avancerat" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "Begränsa åtkomsten till %s till användare som möter följande kriterie:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -416,41 +417,51 @@ msgstr "Gruppsökningsattribut" msgid "Group-Member association" msgstr "Attribut för gruppmedlemmar" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Specialattribut" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kvotfält" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Datakvot standard" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "i bytes" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-postfält" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Namnregel för hemkatalog" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Internt Användarnamn" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -466,15 +477,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Som standard skapas det interna användarnamnet från UUID-attributet. Det säkerställer att användarnamnet är unikt och tecken inte behöver konverteras. Det interna användarnamnet har restriktionerna att endast följande tecken är tillåtna: [ a-zA-Z0-9_.@- ]. Andra tecken blir ersatta av deras motsvarighet i ASCII eller utelämnas helt. En siffra kommer att läggas till eller ökas på vid en kollision. Det interna användarnamnet används för att identifiera användaren internt. Det är även förvalt som användarens användarnamn i ownCloud. Det är även en port för fjärråtkomst, t.ex. för alla *DAV-tjänster. Med denna inställning kan det förvalda beteendet åsidosättas. För att uppnå ett liknande beteende som innan ownCloud 5, ange attributet för användarens visningsnamn i detta fält. Lämna det tomt för förvalt beteende. Ändringarna kommer endast att påverka nyligen mappade (tillagda) LDAP-användare" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Internt Användarnamn Attribut:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "Åsidosätt UUID detektion" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -485,19 +496,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "UUID Attribut för Användare:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "UUID Attribut för Grupper:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Användarnamn-LDAP User Mapping" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -511,10 +522,10 @@ msgid "" "experimental stage." msgstr "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Rensa Användarnamn-LDAP User Mapping" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Rensa Gruppnamn-LDAP Group Mapping" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 0c54b43c28..0cd2466a5d 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index c62ef36290..7686df53f0 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 268e020ef0..d431247af8 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 7958c592cf..49157af4bc 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 443e8a546a..768ae9c285 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-21 13:01-0400\n" -"PO-Revision-Date: 2013-10-21 17:02+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index c05cce48de..3dd0ee0259 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index ea6aa2ed1c..09812f7f63 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index c4d98fec5d..a578c0f623 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index 998150bf16..578d7e4aa0 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 925e3c1f42..57dc02c8a4 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "ஞாயிற்றுக்கிழமை" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "திங்கட்கிழமை" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "செவ்வாய்க்கிழமை" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "புதன்கிழமை" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "வியாழக்கிழமை" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "வெள்ளிக்கிழமை" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "சனிக்கிழமை" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "தை" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "மாசி" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "பங்குனி" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "சித்திரை" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "வைகாசி" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "ஆனி" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "ஆடி" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "ஆவணி" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "புரட்டாசி" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "ஐப்பசி" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "கார்த்திகை" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "மார்கழி" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "இன்று" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "வழு" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -293,123 +312,123 @@ msgstr "பகிராமல் உள்ளப்போதான வழு" msgid "Error while changing permissions" msgstr "அனுமதிகள் மாறும்போதான வழு" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "உங்களுடனும் குழுவுக்கிடையிலும் {குழு} பகிரப்பட்டுள்ளது {உரிமையாளர்}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "உங்களுடன் பகிரப்பட்டுள்ளது {உரிமையாளர்}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "கடவுச்சொல்லை பாதுகாத்தல்" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "கடவுச்சொல்" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "காலாவதி தேதியை குறிப்பிடுக" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "காலவதியாகும் திகதி" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "மின்னஞ்சலினூடான பகிர்வு: " -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "குழு" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "நீக்குக" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "எச்சரிக்கை" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "உங்கள் கடவுச்சொல்லை மீளமைக்க பின்வரும் இணைப்பை பயன்படுத்தவும் : {இணைப்பு}" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். " -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "பயனாளர் பெயர்" @@ -525,7 +550,7 @@ msgstr "தனிப்பட்ட" msgid "Users" msgstr "பயனாளர்" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "செயலிகள்" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr " நிர்வாக கணக்கொன்றை உருவாக்குக" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "உயர்ந்த" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "தரவு கோப்புறை" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "தரவுத்தளத்தை தகவமைக்க" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "பயன்படுத்தப்படும்" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "விடுபதிகை செய்க" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "உங்கள் கடவுச்சொல்லை தொலைத்துவிட்டீர்களா?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "ஞாபகப்படுத்துக" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "புகுபதிகை" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 2677f36e59..fc33ea09f3 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "கோப்புகள்" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "பகிர்வு" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "வழு" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "பெயர்" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "அளவு" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "மாற்றப்பட்டது" @@ -301,12 +308,12 @@ msgstr "மாற்றப்பட்டது" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "பதிவேற்றுக" @@ -342,69 +349,69 @@ msgstr "ZIP கோப்புகளுக்கான ஆகக்கூடி msgid "Save" msgstr "சேமிக்க " -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "புதிய" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "கோப்பு உரை" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "கோப்புறை" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "இணைப்பிலிருந்து" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "நீக்குக" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்புகளானது இந்த சேவையகத்தில் கோப்பு பதிவேற்றக்கூடிய ஆகக்கூடிய அளவிலும் கூடியது." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 3916599a56..6f5ef1e912 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "சேமிக்கப்படுகிறது..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index cffd95fe90..a11995dfd6 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "அனுமதி வழங்கப்பட்டது" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Dropbox சேமிப்பை தகவமைப்பதில் வழு" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "அனுமதியை வழங்கல்" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "தயவுசெய்து ஒரு செல்லுபடியான Dropbox செயலி சாவி மற்றும் இரகசியத்தை வழங்குக. " -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Google இயக்க சேமிப்பகத்தை தகமைப்பதில் வழு" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "பயனாளர்" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "நீக்குக" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "பயனாளர் வெளி சேமிப்பை இயலுமைப்படுத்துக" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "பயனாளர் அவர்களுடைய சொந்த வெளியக சேமிப்பை ஏற்ற அனுமதிக்க" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL வேர் சான்றிதழ்கள்" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "வேர் சான்றிதழை இறக்குமதி செய்க" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index f575323658..c9e8d25dbf 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "பதிவிறக்குக" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "பதிவேற்றுக" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "பதிவேற்றலை இரத்து செய்க" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 357812b351..db48899f2b 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "வழு" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "பெயர்" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "நீக்குக" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 0a623df524..fbe3d5f915 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "உதவி" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "தனிப்பட்ட" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "அமைப்புகள்" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "பயனாளர்" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "நிர்வாகம்" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "செயலி இயலுமைப்படுத்தப்படவில்லை" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "கோப்புகள்" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "இன்று" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "நேற்று" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "கடந்த மாதம்" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "கடந்த வருடம்" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 2bfc1b80e9..54830eb4bd 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "மறைக்குறியீடு" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "செயலி சேமிப்பிலிருந்து பட்டியலை ஏற்றமுடியாதுள்ளது" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "இயலுமைப்ப" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "இயலுமைப்படுத்துக" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "வழு" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "இற்றைப்படுத்தல்" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "சேமிக்கப்படுகிறது..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "முன் செயல் நீக்கம் " msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "குழுக்கள்" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "குழு நிர்வாகி" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "நீக்குக" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "_மொழி_பெயர்_" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "பாதுகாப்பு எச்சரிக்கை" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Developed by the ownCloud community, the source code is licensed under the AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "உங்களுடைய செயலியை சேர்க்க" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "மேலதிக செயலிகள்" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "செயலி ஒன்றை தெரிவுசெய்க" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "apps.owncloud.com இல் செயலி பக்கத்தை பார்க்க" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-அனுமதி பெற்ற " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "" @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "கடவுச்சொல்" @@ -518,151 +660,149 @@ msgstr "உங்களுடைய கடவுச்சொல் மாற் msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "மொழி" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "மறைக்குறியீடு" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "உருவாக்குக" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "மற்றவை" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "பயனாளர் பெயர்" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index d30912db7e..2968949fe8 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "வழு" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "உதவி" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "நீங்கள் பயனாளர்களுக்கும் #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "குழு உறுப்பினர் சங்கம்" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "bytes களில் " -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "பயனாளர் பெயரிற்கு வெற்றிடமாக விடவும் (பொது இருப்பு). இல்லாவிடின் LDAP/AD பண்புக்கூறை குறிப்பிடவும்." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/te/core.po b/l10n/te/core.po index 4ba4480ce1..741fc7dd6d 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# వీవెన్ వీరపనేని , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +18,7 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +68,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "ఆదివారం" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "సోమవారం" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "మంగళవారం" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "బుధవారం" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "గురువారం" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "శుక్రవారం" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "శనివారం" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "జనవరి" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "ఫిబ్రవరి" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "మార్చి" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "ఏప్రిల్" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "మే" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "జూన్" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "జూలై" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "ఆగస్ట్" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "సెప్టెంబర్" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "అక్టోబర్" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "నవంబర్" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "డిసెంబర్" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n నిమిషం క్రితం" +msgstr[1] "%n నిమిషాల క్రితం" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n గంట క్రితం" +msgstr[1] "%n గంటల క్రితం" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "ఈరోజు" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n రోజు క్రితం" +msgstr[1] "%n రోజుల క్రితం" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n నెల క్రితం" +msgstr[1] "%n నెలల క్రితం" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -254,7 +254,7 @@ msgstr "రద్దుచేయి" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "కొనసాగించు" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" @@ -268,6 +268,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +296,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "పొరపాటు" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,125 +313,125 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "సంకేతపదం" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "పంపించు" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "కాలం చెల్లు తేదీ" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "తొలగించు" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" -msgstr "" +msgstr "హెచ్చరిక" #: js/tags.js:4 msgid "The object type is not specified." @@ -456,11 +476,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +506,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "వాడుకరి పేరు" @@ -519,13 +545,13 @@ msgstr "" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "వ్యక్తిగతం" #: strings.php:6 msgid "Users" msgstr "వాడుకరులు" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +661,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +717,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "నిష్క్రమించు" @@ -719,27 +743,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "మీ సంకేతపదం పోయిందా?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/te/files.po b/l10n/te/files.po index f1746363e6..e2845bb8c9 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "పొరపాటు" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "పేరు" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "భద్రపరచు" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "కొత్త సంచయం" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "సంచయం" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "తొలగించు" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index b9488099d4..c9545f4e68 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,18 +81,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -100,8 +100,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 8cd62f867f..80198b3524 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "వాడుకరులు" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "తొలగించు" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index b03f8b8576..a636a2615e 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index a8ea979cc3..4f95953300 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "పొరపాటు" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "పేరు" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "తొలగించు" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 3490c68acb..f1cbfbcfc2 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "సహాయం" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" -msgstr "" +msgstr "వ్యక్తిగతం" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "అమరికలు" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "వాడుకరులు" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n నిమిషాల క్రితం" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n గంటల క్రితం" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "ఈరోజు" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "నిన్న" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n రోజుల క్రితం" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "పోయిన నెల" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n నెలల క్రితం" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 475d990c39..27f692f159 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "పొరపాటు" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "తొలగించు" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "సంకేతపదం" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "ఈమెయిలు" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "మీ ఈమెయిలు చిరునామా" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "భాష" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "వాడుకరి పేరు" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 8aa5f5df8b..e728d77914 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "పొరపాటు" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "సహాయం" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -285,7 +285,7 @@ msgstr "" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "కొనసాగించు" #: templates/settings.php:11 msgid "" @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 3bd1bd9070..9b461c37a9 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,12 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -73,135 +68,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:872 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:873 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:876 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:877 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:878 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:879 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:880 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:881 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:882 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -269,6 +268,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -277,12 +296,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -294,123 +313,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -457,11 +476,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -481,8 +506,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -526,7 +551,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -636,49 +661,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -694,7 +717,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -720,27 +743,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5396110aed..7e343f8cc0 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,35 +28,47 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,235 +76,230 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -300,12 +307,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -341,69 +348,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 31232e16fb..cf0dc5a071 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -78,18 +78,18 @@ msgid "" "Unknown error please check your system settings or contact your administrator" msgstr "" -#: hooks/hooks.php:62 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:63 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now, " "the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:281 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -97,8 +97,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index b8ac9956fa..d83e9debc2 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,40 +17,44 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:467 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:471 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:474 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index d0daf4154b..198027c19b 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,10 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index eadcdd9d3e..133c4f88f6 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,21 +17,25 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 8ba48805ba..c9d875b49b 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -30,14 +30,14 @@ msgstr "" msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: js/versions.js:86 +#: js/versions.js:87 msgid "More versions..." msgstr "" -#: js/versions.js:123 +#: js/versions.js:125 msgid "No other versions available" msgstr "" -#: js/versions.js:154 +#: js/versions.js:155 msgid "Restore" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 29ab50202b..67dfe13a96 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,44 +8,44 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "" @@ -62,105 +62,104 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - -#: private/files.php:226 +#: private/files.php:231 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:227 +#: private/files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:228 private/files.php:256 +#: private/files.php:233 private/files.php:261 msgid "Back to Files" msgstr "" -#: private/files.php:253 +#: private/files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:254 +#: private/files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -200,7 +199,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -228,20 +227,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -269,66 +268,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index fd5e0fded5..fdfad679d3 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,44 +8,44 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: app.php:245 +#: app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version " "of ownCloud." msgstr "" -#: app.php:257 +#: app.php:248 msgid "No app name specified" msgstr "" -#: app.php:362 +#: app.php:353 msgid "Help" msgstr "" -#: app.php:375 +#: app.php:366 msgid "Personal" msgstr "" -#: app.php:386 +#: app.php:377 msgid "Settings" msgstr "" -#: app.php:398 +#: app.php:389 msgid "Users" msgstr "" -#: app.php:411 +#: app.php:402 msgid "Admin" msgstr "" @@ -62,105 +62,104 @@ msgstr "" msgid "Invalid image" msgstr "" -#: defaults.php:34 +#: defaults.php:35 msgid "web services under your control" msgstr "" -#: files.php:66 files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - -#: files.php:226 +#: files.php:231 msgid "ZIP download is turned off." msgstr "" -#: files.php:227 +#: files.php:232 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:228 files.php:256 +#: files.php:233 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:253 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:254 +#: files.php:259 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." msgstr "" -#: installer.php:63 +#: installer.php:64 msgid "No source specified when installing app" msgstr "" -#: installer.php:70 +#: installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: installer.php:75 +#: installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: installer.php:89 +#: installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: installer.php:103 +#: installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: installer.php:125 +#: installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: installer.php:131 +#: installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: installer.php:140 +#: installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: installer.php:146 +#: installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: installer.php:159 +#: installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: installer.php:169 +#: installer.php:170 msgid "App directory already exists" msgstr "" -#: installer.php:182 +#: installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: json.php:28 +#: json.php:29 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:62 json.php:73 +#: json.php:40 json.php:63 json.php:88 msgid "Authentication error" msgstr "" -#: json.php:51 +#: json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: json.php:75 +msgid "Unknown user" +msgstr "" + #: search/provider/file.php:18 search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:144 @@ -221,20 +220,20 @@ msgstr "" #: setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: setup/oci.php:34 @@ -262,66 +261,71 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:195 +#: setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:196 +#: setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: tags.php:194 +#: share/mailnotifications.php:73 share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: template/functions.php:130 +#: template/functions.php:133 msgid "seconds ago" msgstr "" -#: template/functions.php:131 +#: template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:132 +#: template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:133 +#: template/functions.php:136 msgid "today" msgstr "" -#: template/functions.php:134 +#: template/functions.php:137 msgid "yesterday" msgstr "" -#: template/functions.php:136 +#: template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:138 +#: template/functions.php:141 msgid "last month" msgstr "" -#: template/functions.php:139 +#: template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: template/functions.php:141 +#: template/functions.php:144 msgid "last year" msgstr "" -#: template/functions.php:142 +#: template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index a25543919a..d13ee0350a 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,48 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -112,60 +154,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -180,40 +250,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -237,18 +307,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server " "to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -257,68 +351,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -327,117 +421,161 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "" -"-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "" +"-licensed by " msgstr "" #: templates/help.php:6 @@ -504,7 +646,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -516,151 +658,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 5e79d17a11..3ff5c9d67e 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -141,11 +141,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -163,7 +163,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -199,7 +199,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,40 +409,50 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It " "makes sure that the username is unique and characters do not need to be " @@ -458,15 +468,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute " "is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -477,19 +487,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -503,10 +513,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index acf94225f5..d40c29466b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-08 01:55-0500\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 0539d2cd29..0d50b994b9 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "วันอาทิตย์" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "วันจันทร์" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "วันอังคาร" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "วันพุธ" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "วันพฤหัสบดี" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "วันศุกร์" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "วันเสาร์" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "มกราคม" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "กุมภาพันธ์" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "มีนาคม" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "เมษายน" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "พฤษภาคม" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "มิถุนายน" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "กรกฏาคม" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "สิงหาคม" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "กันยายน" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "ตุลาคม" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "พฤศจิกายน" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "ธันวาคม" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "วันนี้" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "แชร์แล้ว" @@ -271,12 +290,12 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -288,123 +307,123 @@ msgstr "เกิดข้อผิดพลาดในการยกเลิ msgid "Error while changing permissions" msgstr "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "ได้แชร์ให้กับคุณ และกลุ่ม {group} โดย {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "ถูกแชร์ให้กับคุณโดย {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "รหัสผ่าน" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "ส่งลิงก์ให้ทางอีเมล" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "ส่ง" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "กำหนดวันที่หมดอายุ" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "วันที่หมดอายุ" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "แชร์ผ่านทางอีเมล" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "กลุ่มผู้ใช้งาน" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "สร้าง" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "อัพเดท" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "ลบ" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "แชร์" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "คำเตือน" @@ -451,11 +470,17 @@ msgstr "การอัพเดทไม่เป็นผลสำเร็จ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -520,7 +545,7 @@ msgstr "ส่วนตัว" msgid "Users" msgstr "ผู้ใช้งาน" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "แอปฯ" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "สร้าง บัญชีผู้ดูแลระบบ" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "ขั้นสูง" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "โฟลเดอร์เก็บข้อมูล" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "กำหนดค่าฐานข้อมูล" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "จะถูกใช้" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Database host" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "ออกจากระบบ" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "ลืมรหัสผ่าน?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "จำรหัสผ่าน" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "เข้าสู่ระบบ" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index f0b7289c8d..9f6d9d7744 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ท msgid "Could not move %s" msgstr "ไม่สามารถย้าย %s ได้" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "ชื่อไฟล์ไม่สามารถเว้นว่างได้" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในรูปแบบของ HTML" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "ไฟล์" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "มีพื้นที่เหลือไม่เพียงพอ" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "แชร์" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง" +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือผสานไฟล์ต่างๆได้อีกต่อไป" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "ชื่อ" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "ขนาด" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "แก้ไขแล้ว" @@ -298,12 +305,12 @@ msgstr "แก้ไขแล้ว" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "อัพโหลด" @@ -339,69 +346,69 @@ msgstr "ขนาดไฟล์ ZIP สูงสุด" msgid "Save" msgstr "บันทึก" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "อัพโหลดไฟล์ใหม่" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "ไฟล์ข้อความ" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" -msgstr "" +msgstr "โฟลเดอร์ใหม่" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "แฟ้มเอกสาร" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "จากลิงก์" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "ลบ" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index 0626159891..737d2545c5 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "กำลังบันทึกข้อมูล..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index eef3790b5b..52bb6ec1dc 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "การเข้าถึงได้รับอนุญาตแล้ว" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าพื้นที่จัดเก็บข้อมูล Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "อนุญาตให้เข้าถึงได้" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "กรุณากรอกรหัส app key ของ Dropbox และรหัสลับ" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:516 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:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "ผู้ใช้งาน" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "ลบ" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "เปิดให้มีการใช้พื้นที่จัดเก็บข้อมูลของผู้ใช้งานจากภายนอกได้" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "อนุญาตให้ผู้ใช้งานสามารถชี้ตำแหน่งไปที่พื้นที่จัดเก็บข้อมูลภายนอกของตนเองได้" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "นำเข้าข้อมูลใบรับรองความปลอดภัยจาก Root" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 25147a511c..9c25ad99e9 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "ดาวน์โหลด" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "อัพโหลด" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "ยกเลิกการอัพโหลด" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 658dfef49d..8c22662af7 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "ข้อผิดพลาด" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "ชื่อ" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "คืนค่า" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "ลบแล้ว" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "ลบ" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "ไฟล์ที่ลบทิ้ง" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 62f6738438..2257d7e995 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "ช่วยเหลือ" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "ส่วนตัว" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "ตั้งค่า" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "ผู้ใช้งาน" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "ผู้ดูแล" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "รหัสยืนยันความถูกต้องหมดอายุแล้ว กรุณาโหลดหน้าเว็บใหม่อีกครั้ง" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ไฟล์" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "ไม่พบหมวดหมู่ \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "วันนี้" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "เมื่อวานนี้" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "เดือนที่แล้ว" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "ปีที่แล้ว" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 6713c82ea4..2637a9c2b7 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "การเข้ารหัส" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "ไม่สามารถโหลดรายการจาก App Store ได้" @@ -113,61 +155,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "เอกสารคู่มือการใช้งานสำหรับผู้ใช้งาน" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "อัพเดทไปเป็นรุ่น {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "ปิดใช้งาน" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "เปิดใช้งาน" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "กรุณารอสักครู่..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "กำลังอัพเดทข้อมูล..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "อัพเดท" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "กำลังบันทึกข้อมูล..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -181,40 +251,40 @@ msgstr "เลิกทำ" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "กลุ่ม" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "ผู้ดูแลกลุ่ม" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "ลบ" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "ภาษาไทย" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "คำเตือนเกี่ยวกับความปลอดภัย" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "การแชร์ข้อมูล" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "มาก" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "น้อย" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "พัฒนาโดย the ชุมชนผู้ใช้งาน ownCloud, the ซอร์สโค้ดอยู่ภายใต้สัญญาอนุญาตของ AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "เพิ่มแอปของคุณ" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "แอปฯอื่นเพิ่มเติม" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "เลือก App" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-ลิขสิทธิ์การใช้งานโดย " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "เอกสารคู่มือการใช้งานสำหรับผู้ใช้งาน" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "เอกสารคู่มือการใช้งานสำหรับผู้ดูแลระบบ" @@ -506,7 +648,7 @@ msgstr "แสดงหน้าจอวิซาร์ดนำทางคร msgid "You have used %s of the available %s" msgstr "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "รหัสผ่าน" @@ -518,151 +660,149 @@ msgstr "รหัสผ่านของคุณถูกเปลี่ยน msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "อีเมล" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "รูปภาพโปรไฟล์" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "การเข้ารหัส" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "ชื่อที่ใช้สำหรับเข้าสู่ระบบ" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "สร้าง" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "พื้นที่จำกัดข้อมูลเริ่มต้น" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "ไม่จำกัดจำนวน" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "อื่นๆ" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "ชื่อผู้ใช้งาน" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "พื้นที่จัดเก็บข้อมูล" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "ตั้งค่ารหัสผ่านใหม่" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "ค่าเริ่มต้น" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 084d3ca8bd..8b38a9a73d 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "เสร็จสิ้น" msgid "Error" msgstr "ข้อผิดพลาด" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "เลือกกลุ่ม" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "ทดสอบการเชื่อมต่อสำเร็จ" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "ทดสอบการเชื่อมต่อล้มเหลว" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "คุณแน่ใจแล้วหรือว่าต้องการลบการกำหนดค่าเซิร์ฟเวอร์ปัจจุบันทิ้งไป?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "ยืนยันการลบทิ้ง" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "ช่วยเหลือ" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "คุณสามารถระบุ DN หลักสำหรั #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "คุณลักษณะการค้นหาแบบกลุ่ msgid "Group-Member association" msgstr "ความสัมพันธ์ของสมาชิกในกลุ่ม" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "คุณลักษณะพิเศษ" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "ในหน่วยไบต์" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "เว้นว่างไว้สำหรับ ชื่อผู้ใช้ (ค่าเริ่มต้น) หรือไม่กรุณาระบุคุณลักษณะของ LDAP/AD" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 8a80ed98df..8982edb1b8 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-05 01:55-0500\n" -"PO-Revision-Date: 2014-01-04 20:50+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,7 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s sizinle »%s« paylaşımında bulundu" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Şu kullanıcılara posta gönderilemedi: %s" @@ -76,135 +71,139 @@ msgstr "Kullanılabilir geçici profil resmi yok, tekrar deneyin" msgid "No crop data provided" msgstr "Kesme verisi sağlanmamış" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Pazar" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Pazartesi" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Salı" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Çarşamba" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Perşembe" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Cuma" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Cumartesi" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Ocak" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Şubat" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Mart" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Nisan" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Mayıs" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Haziran" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Temmuz" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Ağustos" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Eylül" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Ekim" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Kasım" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Aralık" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "bugün" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "dün" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "geçen ay" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "ay önce" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "geçen yıl" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "yıl önce" @@ -272,6 +271,26 @@ msgstr "({count} seçildi)" msgid "Error loading file exists template" msgstr "Dosya mevcut şablonu yüklenirken hata" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Paylaşılan" @@ -280,12 +299,12 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Hata" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -297,123 +316,123 @@ msgstr "Paylaşım iptal edilirken hata" msgid "Error while changing permissions" msgstr "İzinleri değiştirirken hata oluştu" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} tarafından sizinle ve {group} ile paylaştırılmış" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} tarafından sizinle paylaşıldı" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Kullanıcı veya grup ile paylaş.." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Paylaşma bağlantısı" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Parola koruması" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Parola" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Genel Gönderime İzin Ver" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Bağlantıyı e-posta ile gönder" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Gönder" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Son kullanma tarihini ayarla" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Son kullanım tarihi" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "E-posta ile paylaş" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "grup" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "{item} içinde {user} ile paylaşılanlar" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "e-posta ile bildir" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "oluştur" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "güncelle" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "sil" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "paylaş" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Parola korumalı" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "E-posta gönderildi" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Uyarı" @@ -460,11 +479,17 @@ msgstr "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin E-posta ve/veya kullanıcı adınızın doğru o msgid "You will receive a link to reset your password via Email." msgstr "Parolanızı sıfırlamak için bir bağlantıyı e-posta olarak alacaksınız." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Kullanıcı Adı" @@ -529,7 +554,7 @@ msgstr "Kişisel" msgid "Users" msgstr "Kullanıcılar" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Uygulamalar" @@ -639,49 +664,47 @@ msgstr "Sunucunuzu nasıl ayarlayacağınıza dair bilgi için, lütfen admin account" msgstr "Bir yönetici hesabı oluşturun" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Gelişmiş" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Kurulumu tamamla" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Tamamlanıyor .." @@ -697,7 +720,7 @@ msgstr "Uygulama, doğru çalışabilmesi için JavaScript'in etkinleştirilmesi msgid "%s is available. Get more information on how to update." msgstr "%s mevcut. Güncelleştirme hakkında daha fazla bilgi alın." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Çıkış yap" @@ -723,28 +746,28 @@ msgstr "Sunucu taraflı yetkilendirme başarısız!" msgid "Please contact your administrator." msgstr "Lütfen sistem yöneticisi ile iletişime geçin." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "hatırla" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Giriş yap" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Alternatif Girişler" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Merhaba,

%s sizinle »%s« paylaşımında bulundu.
Paylaşımı gör!

İyi günler!" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 966906608b..f1b712ec51 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 16:40+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,36 +31,48 @@ msgstr "%s taşınamadı - Bu isimde dosya zaten var" msgid "Could not move %s" msgstr "%s taşınamadı" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Dosya adı boş olamaz." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "Dosya adı \"/\" içermemelidir. Lütfen farklı bir isim seçin." +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim seçin." -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "Geçerli bir kaynak değil" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Sunucunun adresleri açma izi yok, lütfen sunucu yapılandırmasını denetleyin" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "%s, %s içine indirilirken hata" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "Dosya oluşturulurken hata" @@ -68,236 +80,231 @@ msgstr "Dosya oluşturulurken hata" msgid "Folder name cannot be empty." msgstr "Klasör adı boş olamaz." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "Klasör adı \"/\" içermemelidir. Lütfen farklı bir isim seçin." - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "Klasör oluşturulurken hata" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Yükleme dizini tanımlanamadı." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "Geçersiz Simge" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Dosya başarıyla yüklendi, hata oluşmadı" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenecek dosyanın boyutu HTML formunda belirtilen MAX_FILE_SIZE limitini aşıyor" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "Yükleme başarısız. Yüklenen dosya bulunamadı" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Geçersiz dizin." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Dosyalar" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Yeterli disk alanı yok" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "Sunucudan sonuç alınamadı." -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL boş olamaz" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Dosya oluşturulamadı" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Klasör oluşturulamadı" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "Adres getirilirken hata" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Paylaş" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Dosya adlandırılamadı" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "geri al" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "Dosya silinirken hata." -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} ve {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" msgstr[1] "%n dosya yükleniyor" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' geçersiz bir dosya adı." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek." -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin." -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Dosya taşıma hatası" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Hata" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "İsim" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Boyut" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Değiştirilme" @@ -305,12 +312,12 @@ msgstr "Değiştirilme" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "Geçersiz dizin adı. 'Shared' ismi ayrılmıştır." -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s yeniden adlandırılamadı" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Yükle" @@ -346,69 +353,69 @@ msgstr "ZIP dosyaları için en fazla girdi boyutu" msgid "Save" msgstr "Kaydet" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Yeni" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "Yeni metin dosyası" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Metin dosyası" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Yeni klasör" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Klasör" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Silinmiş dosyalar" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "Buraya dosya yükleme veya oluşturma izniniz yok" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Bir şeyler yükleyin!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "İndir" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Sil" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Yükleme çok büyük" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 6195623c1a..0b56d0ae30 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-02 17:27-0500\n" -"PO-Revision-Date: 2013-11-30 01:40+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -82,18 +82,18 @@ msgid "" "administrator" msgstr "Bilinmeyen hata. Lütfen sistem ayarlarınızı denetleyin veya yöneticiniz ile iletişime geçin" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "Gereklilikler eksik." -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "PHP 5.3.3 veya daha sürümü ile birlikte OpenSSL ve OpenSSL PHP uzantısının birlikte etkin olduğunu ve doğru bir şekilde yapılandırıldığından emin olun. Şimdilik şifreleme uygulaması devre dışı bırakıldı" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "Aşağıdaki kullanıcılar şifreleme için ayarlanmadılar:" @@ -101,9 +101,9 @@ msgstr "Aşağıdaki kullanıcılar şifreleme için ayarlanmadılar:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "İlk şifreleme başladı... Bu biraz zaman alabilir. Lütfen bekleyin." -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Kaydediliyor..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 849b546954..c2e5200a79 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Giriş kabul edildi" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Dropbox depo yapılandırma hatası" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Erişim sağlandı" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Lütfen Dropbox app key ve secret temin ediniz" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Google Drive depo yapılandırma hatası" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Uyarı: \"smbclient\" kurulu değil. CIFS/SMB paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın." -#: lib/config.php:465 +#: lib/config.php:516 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 "Uyarı: PHP içerisinde FTP desteği etkin veya yüklü değil. FTP paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Kullanıcılar" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Sil" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Kullanıcılar için Harici Depolamayı Etkinleştir" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Kullanıcıların kendi harici depolamalarını bağlamalarına izin ver" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL kök sertifikaları" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Kök Sertifikalarını İçe Aktar" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index f8e734d644..51d03a2357 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.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-13 19:00+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Bu paylaşım parola korumalı" @@ -54,32 +58,16 @@ msgstr "paylaşım devre dışı" msgid "For more info, please ask the person who sent this link." msgstr "Daha fazla bilgi için bu bağlantıyı aldığınız kişi ile iletişime geçin." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s, %s klasörünü sizinle paylaştı" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s, %s dosyasını sizinle paylaştı" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "İndir" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Yükle" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Yüklemeyi iptal et" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Kullanılabilir önizleme yok" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Doğrudan bağlantı" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 261cd7d30c..848bc4f59d 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,44 +19,48 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s alıcı olarak silinemedi" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "%s eri yüklenemedi" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Hata" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "geri yüklendi" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Burada hiçbir şey yok. Çöp kutunuz tamamen boş!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "İsim" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Geri yükle" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Silindi" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Sil" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Silinen Dosyalar" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 3237785ad4..ad6e58a177 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 16:40+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,34 +21,34 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz." -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "Uygulama adı belirtimedli" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "Yardım" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "Kişisel" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "Ayarlar" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" msgstr "Kullanıcılar" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "Yönetici" @@ -65,15 +65,10 @@ msgstr "Bilinmeyen dosya türü" msgid "Invalid image" msgstr "Geçersiz resim" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "kontrolünüzün altındaki web hizmetleri" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "\"%s\" açılamıyor" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP indirmeleri kapatıldı." @@ -96,74 +91,78 @@ msgid "" "administrator." msgstr "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. " -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "Uygulama kurulurken bir kaynak belirtilmedi" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "Uygulama kuruluyorken http'de href belirtilmedi" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "Uygulama yerel dosyadan kurulurken dosya yolu belirtilmedi" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "%s arşiv türü desteklenmiyor" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "Uygulama kuruluyorken arşiv dosyası açılamadı" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "Uygulama info.xml dosyası sağlamıyor" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "Uygulama, izin verilmeyen kodlar barındırdığından kurulamıyor." -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "ownCloud sürümünüz ile uyumsuz olduğu için uygulama kurulamıyor." -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "Uygulama kurulamıyor. Çünkü \"birlikte gelmeyen\" uygulamalar için true etiketi içeriyor" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "Uygulama kurulamıyor çünkü info.xml/version ile uygulama markette belirtilen sürüm aynı değil" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "Uygulama dizini zaten mevcut" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "Uygulama dizini oluşturulamıyor. Lütfen izinleri düzeltin. %s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Uygulama etkinleştirilmedi" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Kimlik doğrulama hatası" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Jetonun süresi geçti. Lütfen sayfayı yenileyin." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Dosyalar" @@ -203,8 +202,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Bir konto veya kullanici birlemek ihtiyacin. " #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL kullanıcı adı ve/veya parolası geçerli değil" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -231,21 +230,21 @@ msgstr "Komut rahasiz ''%s''. " #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL kullanici '%s @local host zatan var. " +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Bu kullanici MySQLden list disari koymak. " +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL kullanici '%s @ % % zaten var (zaten yazili)" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Bu kullanıcıyı MySQL veritabanından kaldır" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -272,66 +271,72 @@ msgstr "Bir adi kullanici vermek. " msgid "Set an admin password." msgstr "Parola yonetici birlemek. " -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "\"%s\" kategorisi bulunamadı" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "saniye önce" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n dakika önce" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n saat önce" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "bugün" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "dün" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n gün önce" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "geçen ay" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n ay önce" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "geçen yıl" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 80560004a5..2fea422d81 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-06 01:55-0500\n" -"PO-Revision-Date: 2014-01-05 16:40+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,6 +21,48 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Şifreleme" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "App Store'dan liste yüklenemiyor" @@ -72,7 +114,7 @@ msgstr "Geçersiz istek" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "Yöneticiler kendilerini yönetici grubundan kaldıramaz" +msgstr "Yöneticiler kendilerini admin grubundan kaldıramaz" #: ajax/togglegroups.php:30 #, php-format @@ -117,65 +159,93 @@ msgstr "Arka uç parola değişimini desteklemiyor ancak kullanıcı şifreleme msgid "Unable to change password" msgstr "Parola değiştirilemiyor" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Kullanıcı Belgelendirmesi" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "{appversion} Güncelle" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Devre dışı bırak" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Etkinleştir" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Lütfen bekleyin...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "Uygulama devre dışı bırakılırken hata" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "Uygulama etkinleştirilirken hata" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Güncelleniyor...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Uygulama güncellenirken hata" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Hata" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Güncelleme" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "Bir profil fotoğrafı seçin" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir." -#: js/personal.js:287 -msgid "Saving..." -msgstr "Kaydediliyor..." - #: js/users.js:47 msgid "deleted" -msgstr "silindi" +msgstr "silinen:" #: js/users.js:47 msgid "undo" @@ -185,40 +255,40 @@ msgstr "geri al" msgid "Unable to remove user" msgstr "Kullanıcı kaldırılamıyor" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Gruplar" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" -msgstr "Yönetici Grubu " +msgstr "Grup Yöneticisi" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Sil" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "grup ekle" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Kullanıcı oluşturulurken hata" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Uyarı: \"{user}\" kullanıcısı için zaten bir Ev dizini mevcut" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "Türkçe" @@ -242,18 +312,42 @@ msgstr "Hatalar ve ölümcül konular" msgid "Fatal issues only" msgstr "Sadece ölümcül konular" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Güvenlik Uyarısı" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz." -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -262,68 +356,68 @@ msgid "" "root." msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Kurulum Uyarısı" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını tekrar kontrol edin." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Modül 'fileinfo' kayıp" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "PHP sürümünüz eski" -#: templates/admin.php:82 +#: templates/admin.php:103 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 "PHP sürümünüz eski. Eski sürümlerde sorun olduğundan 5.3.8 veya daha yeni bir sürüme güncellemenizi şiddetle tavsiye ederiz. Bu kurulumun da doğru çalışmaması da olasıdır." -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Locale çalışmıyor." -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir." -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s." -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "İnternet bağlantısı çalışmıyor" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -332,118 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir." -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan." -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Paylaşım API'sini etkinleştir" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Bağlantılara izin ver" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "Herkes tarafından yüklemeye izin ver" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Kullanıcıların her şeyi paylaşmalarına izin ver" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "Posta bilgilendirmesine izin ver" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s'a HTTPS ile bağlanın." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Günlük" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Az" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "ownCloud topluluğu tarafından geliştirilmiş olup, kaynak kodu, AGPL altında lisanslanmıştır." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Uygulamanızı Ekleyin" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Daha Fazla Uygulama" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Bir Uygulama Seçin" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın " -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-lisanslayan " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Kullanıcı Belgelendirmesi" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Yönetici Belgelendirmesi" @@ -510,7 +652,7 @@ msgstr "İlk Çalıştırma Sihirbazını yeniden göster" msgid "You have used %s of the available %s" msgstr "Kullandığınız: %s. Kullanılabilir alan: %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Parola" @@ -522,151 +664,149 @@ msgstr "Şifreniz değiştirildi" msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "Tam Adı" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "E-posta" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "E-posta adresiniz" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Parola kurtarmayı etkinleştirmek için bir e-posta adresi girin" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "Profil resmi" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "Yeni yükle" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "Dosyalardan seç" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "Resmi kaldır" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "PNG veya JPG. Genellikle karedir ancak kesebileceksiniz." -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "Görüntü resminiz, özgün hesabınız tarafından sağlanıyor." -#: templates/personal.php:101 -msgid "Abort" -msgstr "İptal Et" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "Profil resmi olarak seç" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Dil" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "Dosyalarınıza WebDAV aracılığıyla erişmek için bu adresi kullanın" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Şifreleme" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "Şifreleme uygulaması artık etkin değil, tüm dosyalarınızın şifrelemesini kaldırın" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "Oturum açma parolası" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "Tüm dosyaların şifresini çöz" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Giriş Adı" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Oluştur" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "Yönetici Kurtarma Parolası" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için bir kurtarma paroalsı girin" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Varsayılan Depolama" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Limitsiz" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Diğer" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Kullanıcı Adı" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Depolama" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "tam adı değiştir" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "yeni parola belirle" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Varsayılan" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 1a6e57acd8..7fef4b7b71 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,43 +89,43 @@ msgstr "Başarılı" msgid "Error" msgstr "Hata" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "Yapılandırma tamam" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "Yapılandırma geçersiz" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "Yapılandırma tamamlanmamış" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Grupları seç" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "Nesne sınıflarını seç" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "Nitelikleri seç" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Bağlantı testi başarılı oldu" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Bağlantı testi başarısız oldu" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Şu anki sunucu yapılandırmasını silmek istediğinizden emin misiniz?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Silmeyi onayla" @@ -143,11 +143,11 @@ msgid_plural "%s users found" msgstr[0] "%s kullanıcı bulundu" msgstr[1] "%s kullanıcı bulundu" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "Geçersiz Makine" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "İstenen özellik bulunamadı" @@ -165,8 +165,8 @@ msgstr "Yardım" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" -msgstr "%s erişimini, şu kriterle eşleşen gruplara sınırla:" +msgid "Groups meeting these criteria are available in %s:" +msgstr "" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -201,8 +201,8 @@ msgid "groups found" msgstr "grup bulundu" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" -msgstr "Oturum ismi olarak hangi nitelik kullanılmalı:" +msgid "Users login with this attribute:" +msgstr "" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -269,8 +269,8 @@ msgstr "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek e #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" -msgstr "%s erişimini, şu kriterle eşleşen kullanıcılara sınırla:" +msgid "Limit %s access to users meeting these criteria:" +msgstr "" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -412,41 +412,51 @@ msgstr "Kategorii Arama Grubu" msgid "Group-Member association" msgstr "Grup-Üye işbirliği" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Özel Öznitelikler" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Kota Alanı" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Öntanımlı Kota" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "byte cinsinden" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "E-posta Alanı" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Kullanıcı Ana Dizini İsimlendirme Kuralı" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Kullanıcı adı bölümünü boş bırakın (varsayılan). " -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "Dahili Kullanıcı Adı" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -462,15 +472,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "Öntanımlı olarak UUID niteliğinden dahili bir kullanıcı adı oluşturulacak. Bu, kullanıcı adının benzersiz ve karakterlerinin dönüştürme gereksinimini ortadan kaldırır. Dahili kullanıcı adı, sadece bu karakterlerin izin verildiği kısıtlamaya sahip: [ a-zA-Z0-9_.@- ]. Diğer karakterler ise ASCII karşılıkları ile yer değiştirilir veya basitçe yoksayılır. Çakışmalar olduğunda ise bir numara eklenir veya arttırılır. Dahili kullanıcı adı, bir kullanıcıyı dahili olarak tanımlamak için kullanılır. Ayrıca kullanıcı ev klasörü için öntanımlı bir isimdir. Bu ayrıca uzak adreslerin (örneğin tüm *DAV hizmetleri) bir parçasıdır. Bu yar ise, öntanımlı davranışın üzerine yazılabilir. ownCloud 5'ten önce benzer davranışı yapabilmek için aşağıdaki alana bir kullanıcı görünen adı niteliği girin. Öntanımlı davranış için boş bırakın. Değişiklikler, sadece yeni eşleştirilen (eklenen) LDAP kullanıcılarında etkili olacaktır." -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "Dahili Kullanıcı Adı Özniteliği:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "UUID tespitinin üzerine yaz" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -481,19 +491,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "Öntanımlı olarak, UUID niteliği otomatik olarak tespit edilmez. UUID niteliği LDAP kullanıcılarını ve gruplarını şüphesiz biçimde tanımlamak için kullanılır. Ayrıca yukarıda belirtilmemişse, bu UUID'ye bağlı olarak dahili bir kullanıcı adı oluşturulacaktır. Bu ayarın üzerine yazabilir ve istediğiniz bir nitelik belirtebilirsiniz. Ancak istediğiniz niteliğin benzersiz olduğundan ve hem kullanıcı hem de gruplar tarafından getirilebileceğinden emin olmalısınız. Öntanımlı davranış için boş bırakın. Değişiklikler sadece yeni eşleştirilen (eklenen) LDAP kullanıcı ve gruplarında etkili olacaktır." -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "Kullanıcılar için UUID Özniteliği:" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "Gruplar için UUID Özniteliği:" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "Kullanıcı Adı-LDAP Kullanıcısı Eşleştirme" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -507,10 +517,10 @@ msgid "" "experimental stage." msgstr "Kullanıcı adları, (üst) veri depolaması ve ataması için kullanılır. Kullanıcıları kesin olarak tanımlamak ve algılamak için, her LDAP kullanıcısı bir dahili kullanıcı adına sahip olacak. Bu kullanıcı adı ile LDAP kullanıcısı arasında bir eşleşme gerektirir. Oluşturulan kullanıcı adı LDAP kullanıcısının UUID'si ile eşleştirilir. Ek olarak LDAP etkileşimini azaltmak için DN de önbelleğe alınır ancak bu kimlik tanıma için kullanılmaz. Eğer DN değişirse, değişiklikler tespit edilir. Dahili kullanıcı her yerde kullanılır. Eşleştirmeleri temizlemek, her yerde kalıntılar bırakacaktır. Eşleştirmeleri temizlemek yapılandırmaya hassas bir şekilde bağlı değildir, tüm LDAP yapılandırmalarını etkiler! Üretim ortamında eşleştirmeleri asla temizlemeyin, sadece sınama veya deneysel aşamada kullanın." -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "Kullanıcı Adı-LDAP Kullanıcısı Eşleştirmesini Temizle" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "Grup Adı-LDAP Grubu Eşleştirme" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index def46cc5d7..c5ff6cc7c7 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/tzm/files.po b/l10n/tzm/files.po index 86d9e057db..5ca9c96bb2 100644 --- a/l10n/tzm/files.po +++ b/l10n/tzm/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/tzm/files_encryption.po b/l10n/tzm/files_encryption.po index cf815c5e40..4056173547 100644 --- a/l10n/tzm/files_encryption.po +++ b/l10n/tzm/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/tzm/files_external.po b/l10n/tzm/files_external.po index 9c55bb693c..10b190ec86 100644 --- a/l10n/tzm/files_external.po +++ b/l10n/tzm/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-02 11:38+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/tzm/files_sharing.po b/l10n/tzm/files_sharing.po index 5cc2cdcf48..ba2c88b85d 100644 --- a/l10n/tzm/files_sharing.po +++ b/l10n/tzm/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-02 11:38+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/tzm/files_trashbin.po b/l10n/tzm/files_trashbin.po index 4a5d58092e..a872160a5b 100644 --- a/l10n/tzm/files_trashbin.po +++ b/l10n/tzm/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-03 12:38-0500\n" -"PO-Revision-Date: 2013-11-02 11:38+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index 643ca395d1..365568ea67 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index eec7cdcf92..a97c17b474 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/tzm/user_ldap.po b/l10n/tzm/user_ldap.po index ea49db54ae..f4b3363e22 100644 --- a/l10n/tzm/user_ldap.po +++ b/l10n/tzm/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 9de922dadc..79538c635c 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "يەكشەنبە" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "دۈشەنبە" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "چارشەنبە" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "پەيشەنبە" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "جۈمە" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "شەنبە" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "قەھرىتان" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "ھۇت" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "نەۋرۇز" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "ئۇمۇت" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "باھار" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "سەپەر" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "چىللە" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "تومۇز" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "مىزان" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "ئوغۇز" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "ئوغلاق" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "كۆنەك" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "بۈگۈن" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -271,12 +290,12 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "خاتالىق" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -288,123 +307,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "ئىم" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "يوللا" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "گۇرۇپپا" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "ئاگاھلاندۇرۇش" @@ -451,11 +470,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "ئىشلەتكۈچى ئاتى" @@ -520,7 +545,7 @@ msgstr "شەخسىي" msgid "Users" msgstr "ئىشلەتكۈچىلەر" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "ئەپلەر" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "ئالىي" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "تەڭشەك تامام" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "تىزىمدىن چىق" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ug/files.po b/l10n/ug/files.po index d510267975..afcb83ec37 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "%s يۆتكىيەلمەيدۇ" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "ھۆججەتلەر" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "يېتەرلىك بوشلۇق يوق" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "يۈكلەشتىن ۋاز كەچتى." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "ھەمبەھىر" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "خاتالىق" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "ئاتى" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "ئۆزگەرتكەن" @@ -298,12 +305,12 @@ msgstr "ئۆزگەرتكەن" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "يۈكلە" @@ -339,69 +346,69 @@ msgstr "" msgid "Save" msgstr "ساقلا" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "يېڭى" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "تېكىست ھۆججەت" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "يېڭى قىسقۇچ" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "قىسقۇچ" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "ئۆچۈرۈلگەن ھۆججەتلەر" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "بۇ جايدا ھېچنېمە يوق. Upload something!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "چۈشۈر" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "ئۆچۈر" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "يۈكلەندىغىنى بەك چوڭ" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index 81b13d3fef..c781d1dd9f 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,9 +99,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "ساقلاۋاتىدۇ…" +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 013bb4e3bb..f757592a12 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Abduqadir Abliz \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "ئىشلەتكۈچىلەر" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "ئۆچۈر" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 7a99ab9d73..96d546aec2 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -54,32 +58,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "چۈشۈر" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "يۈكلە" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "يۈكلەشتىن ۋاز كەچ" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 47ee287491..4db975b295 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "خاتالىق" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "ئاتى" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "ئۆچۈرۈلدى" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "ئۆچۈر" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 92d05caf93..d3d58129f5 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "ياردەم" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "شەخسىي" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "تەڭشەكلەر" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "ئىشلەتكۈچىلەر" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "سالاھىيەت دەلىللەش خاتالىقى" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "ھۆججەتلەر" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "بۈگۈن" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "تۈنۈگۈن" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index e4fba698bd..deb92ed951 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.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-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "شىفىرلاش" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "ئەپ بازىرىدىن تىزىمنى يۈكلىيەلمىدى" @@ -114,61 +156,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "ئىشلەتكۈچى قوللانمىسى" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "{appversion} غا يېڭىلايدۇ" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "چەكلە" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "قوزغات" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "سەل كۈتۈڭ…" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "يېڭىلاۋاتىدۇ…" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "ئەپنى يېڭىلاۋاتقاندا خاتالىق كۆرۈلدى" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "خاتالىق" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "يېڭىلا" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "يېڭىلاندى" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "ساقلاۋاتىدۇ…" +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -182,40 +252,40 @@ msgstr "يېنىۋال" msgid "Unable to remove user" msgstr "ئىشلەتكۈچىنى چىقىرىۋېتەلمەيدۇ" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "گۇرۇپپا" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "گۇرۇپپا باشقۇرغۇچى" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "ئۆچۈر" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "گۇرۇپپا قوش" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "ئىشلەتكۈچى قۇرۇۋاتقاندا خاتالىق كۆرۈلدى" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "ئۇيغۇرچە" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "بىخەتەرلىك ئاگاھلاندۇرۇش" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "ئاگاھلاندۇرۇش تەڭشەك" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "سىزنىڭ تور مۇلازىمېتىرىڭىز ھۆججەت قەدەمداشلاشقا يول قويىدىغان قىلىپ توغرا تەڭشەلمەپتۇ، چۈنكى WebDAV نىڭ ئېغىزى بۇزۇلغاندەك تۇرىدۇ." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "بۆلەك «ھۆججەت ئۇچۇرى» يوقالغان" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "ھەمبەھىر" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "ئاز" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "ئەپىڭىزنى قوشۇڭ" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "تېخىمۇ كۆپ ئەپلەر" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "بىر ئەپ تاللاڭ" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" -msgstr "ئىشلەتكۈچى قوللانمىسى" +#: templates/apps.php:52 +msgid "-licensed by " +msgstr "" #: templates/help.php:6 msgid "Administrator Documentation" @@ -507,7 +649,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "ئىم" @@ -519,151 +661,149 @@ msgstr "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى" msgid "Unable to change your password" msgstr "ئىمنى ئۆزگەرتكىلى بولمايدۇ." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "نۆۋەتتىكى ئىم" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "يېڭى ئىم" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "ئىم ئۆزگەرت" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "تورخەت" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "تورخەت ئادرېسىڭىز" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "تىل" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "تەرجىمىگە ياردەم" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "شىفىرلاش" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "تىزىمغا كىرىش ئاتى" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "قۇر" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "كۆڭۈلدىكى ساقلىغۇچ" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "چەكسىز" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "باشقا" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "ئىشلەتكۈچى ئاتى" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "ساقلىغۇچ" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "يېڭى ئىم تەڭشە" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "كۆڭۈلدىكى" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 781e2e7cbb..55d29a0790 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "خاتالىق" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "ياردەم" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index dd19baeb3b..019383243d 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,12 +18,7 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s розподілено »%s« з тобою" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Неможливо надіслати пошту наступним користувачам: %s " @@ -73,139 +68,143 @@ msgstr "Немає доступного тимчасового профілю д msgid "No crop data provided" msgstr "Немає інформації щодо обрізки даних" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Неділя" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Понеділок" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Вівторок" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Середа" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Четвер" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "П'ятниця" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Субота" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Січень" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Лютий" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Березень" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Квітень" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Травень" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Червень" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Липень" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Серпень" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Вересень" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Жовтень" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Листопад" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Грудень" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Налаштування" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n хвилину тому" msgstr[1] "%n хвилини тому" msgstr[2] "%n хвилин тому" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n годину тому" msgstr[1] "%n години тому" msgstr[2] "%n годин тому" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "сьогодні" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "вчора" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день тому" msgstr[1] "%n дні тому" msgstr[2] "%n днів тому" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "минулого місяця" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n місяць тому" msgstr[1] "%n місяці тому" msgstr[2] "%n місяців тому" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "місяці тому" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "минулого року" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "роки тому" @@ -274,6 +273,26 @@ msgstr "({count} вибрано)" msgid "Error loading file exists template" msgstr "Помилка при завантаженні файлу існуючого шаблону" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "Опубліковано" @@ -282,12 +301,12 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Помилка" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -299,123 +318,123 @@ msgstr "Помилка під час відміни публікації" msgid "Error while changing permissions" msgstr "Помилка при зміні повноважень" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr " {owner} опублікував для Вас та для групи {group}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} опублікував для Вас" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "Поділитися з користувачем або групою ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "Опублікувати посилання" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Пароль" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "Дозволити Публічне Завантаження" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Ел. пошта належить Пану" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Надіслати" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Встановити термін дії" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Термін дії" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Опублікувати через Ел. пошту:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "група" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "повідомити по Email" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "може редагувати" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "контроль доступу" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "створити" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "оновити" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "видалити" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "опублікувати" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Ел. пошта надіслана" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Попередження" @@ -462,11 +481,17 @@ msgstr "Оновлення виконалось неуспішно. Будь л msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud." -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "%s пароль скинуто" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "Використовуйте наступне посилання для скидання пароля: {link}" @@ -486,8 +511,8 @@ msgstr "Запит завершився невдало !
Ви перекон msgid "You will receive a link to reset your password via Email." msgstr "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Ім'я користувача" @@ -531,7 +556,7 @@ msgstr "Особисте" msgid "Users" msgstr "Користувачі" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Додатки" @@ -641,49 +666,47 @@ msgstr "Для отримання інформації, як правильно msgid "Create an admin account" msgstr "Створити обліковий запис адміністратора" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Додатково" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Каталог даних" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Налаштування бази даних" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "буде використано" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Завершити налаштування" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "Завершується ..." @@ -699,7 +722,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s доступний. Отримай більше інформації про те, як оновити." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Вихід" @@ -725,28 +748,28 @@ msgstr "Помилка аутентифікації на боці Сервера msgid "Please contact your administrator." msgstr "Будь ласка, зверніться до вашого Адміністратора." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Забули пароль?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "запам'ятати" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Вхід" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Альтернативні Логіни" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "Агов,

просто щоб ви знали, що %s поділився »%s« з вами.
Подивіться на це !

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 61871c27be..3af141409f 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,36 +28,48 @@ msgstr "Не вдалося перемістити %s - Файл з таким msgid "Could not move %s" msgstr "Не вдалося перемістити %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr " Ім'я файлу не може бути порожнім." #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -65,239 +77,234 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "Ім'я теки не може бути порожнім." -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "Не вдалося встановити каталог завантаження." -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "Невірний каталог." -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "Файли" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Місця більше немає" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL не може бути порожнім" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "Не вдалося створити файл" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "Не вдалося створити теку" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "Поділитися" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "Неможливо перейменувати файл" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "відмінити" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n тека" msgstr[1] "%n тека" msgstr[2] "%n теки" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файлів" msgstr[2] "%n файли" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' це невірне ім'я файлу." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше сховище переповнене, файли більше не можуть бути оновлені або синхронізовані !" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше сховище майже повне ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "Помилка переміщення файлу" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Помилка" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Ім'я" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Розмір" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Змінено" @@ -305,12 +312,12 @@ msgstr "Змінено" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s не може бути перейменований" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Вивантажити" @@ -346,69 +353,69 @@ msgstr "Максимальний розмір завантажуємого ZIP msgid "Save" msgstr "Зберегти" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "Створити" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Текстовий файл" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Нова тека" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Тека" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "З посилання" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "Видалено файлів" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Тут нічого немає. Відвантажте що-небудь!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Завантажити" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Видалити" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Файл занадто великий" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Файли скануються, зачекайте, будь-ласка." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Поточне сканування" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 6f9b8b6f19..0df9952e26 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,18 +81,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -100,9 +100,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Зберігаю..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 09086c8728..397ecc48c4 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: Soul Kim \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Доступ дозволено" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Помилка при налаштуванні сховища Dropbox" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Дозволити доступ" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Будь ласка, надайте дійсний ключ та пароль Dropbox." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:516 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:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Користувачі" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Видалити" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Активувати користувацькі зовнішні сховища" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Дозволити користувачам монтувати власні зовнішні сховища" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL корневі сертифікати" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Імпортувати корневі сертифікати" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 2f9913608f..07b5137392 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-28 14:30+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "Цей ресурс обміну захищений паролем" @@ -54,32 +58,16 @@ msgstr "обмін заборонений" msgid "For more info, please ask the person who sent this link." msgstr "Для отримання додаткової інформації, будь ласка, зверніться до особи, яка надіслала це посилання." -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s опублікував каталог %s для Вас" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s опублікував файл %s для Вас" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Завантажити" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Вивантажити" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Перервати завантаження" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Попередній перегляд недоступний для" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "Пряме посилання" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 786eb3db30..b0a532eb49 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "Неможливо видалити %s назавжди" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Неможливо відновити %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Помилка" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "відновлено" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Нічого немає. Ваший кошик для сміття пустий!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Ім'я" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Відновити" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Видалено" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Видалити" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "Видалено Файлів" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 09e55936d2..5e2b171cc3 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Допомога" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Особисте" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Налаштування" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Користувачі" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Адмін" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "Невідомий тип файлу" msgid "Invalid image" msgstr "Невірне зображення" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Додаток не увімкнений" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Помилка автентифікації" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Строк дії токена скінчився. Будь ласка, перезавантажте сторінку." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Файли" @@ -199,8 +198,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "Вам потрібно ввести або існуючий обліковий запис або administrator." #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL ім'я користувача та/або пароль не дійсні" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -227,21 +226,21 @@ msgstr "Команда, що викликала проблему: \"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Користувач MySQL '%s'@'localhost' вже існує." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "Видалити цього користувача з MySQL" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "Користувач MySQL '%s'@'%%' вже існує" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "Видалити цього користувача з MySQL." +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -268,70 +267,76 @@ msgstr "Встановіть ім'я адміністратора." msgid "Set an admin password." msgstr "Встановіть пароль адміністратора." -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "Будь ласка, перевірте інструкції по встановленню." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не вдалося знайти категорію \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "секунди тому" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n хвилин тому" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n годин тому" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "сьогодні" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "вчора" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n днів тому" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "минулого місяця" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n місяців тому" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "минулого року" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index f941a9e46c..cc30ec0b2b 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.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-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Шифрування" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Не вдалося завантажити список з App Store" @@ -114,61 +156,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Документація Користувача" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Оновити до {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Вимкнути" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Включити" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Зачекайте, будь ласка..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Оновлюється..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Помилка при оновленні програми" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Помилка" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Оновити" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Оновлено" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Зберігаю..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -182,40 +252,40 @@ msgstr "відмінити" msgid "Unable to remove user" msgstr "Неможливо видалити користувача" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Групи" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Адміністратор групи" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Видалити" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "додати групу" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "Помилка при створенні користувача" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Попередження про небезпеку" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "Попередження при Налаштуванні" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' відсутній" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "Локалізація не працює" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "Інтернет-з'єднання не працює" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Виконати одне завдання для кожної завантаженої сторінки " -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Спільний доступ" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Увімкнути API спільного доступу" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Дозволити програмам використовувати API спільного доступу" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Дозволити посилання" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Дозволити перевідкривати спільний доступ" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Дозволити користувачам відкривати спільний доступ для всіх" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "Безпека" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Протокол" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "Більше" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "Менше" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Версія" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Розроблено ownCloud громадою, вихідний код має ліцензію AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Додати свою програму" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Більше програм" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Вибрати додаток" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Перегляньте сторінку програм на apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-licensed by " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Документація Користувача" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Документація Адміністратора" @@ -507,7 +649,7 @@ msgstr "Показувати Майстер Налаштувань знову" msgid "You have used %s of the available %s" msgstr "Ви використали %s із доступних %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Пароль" @@ -519,151 +661,149 @@ msgstr "Ваш пароль змінено" msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Введіть адресу електронної пошти для відновлення паролю" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Мова" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Шифрування" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Ім'я Логіну" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Створити" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "сховище за замовчуванням" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Необмежено" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Інше" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Ім'я користувача" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Сховище" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "встановити новий пароль" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "За замовчуванням" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 4077c9fcbf..01d0aa6fcc 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "Успіх" msgid "Error" msgstr "Помилка" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Оберіть групи" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "Перевірка з'єднання пройшла успішно" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "Перевірка з'єднання завершилась неуспішно" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "Ви дійсно бажаєте видалити поточну конфігурацію сервера ?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "Підтвердіть Видалення" @@ -142,11 +142,11 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -164,7 +164,7 @@ msgstr "Допомога" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -200,7 +200,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -268,7 +268,7 @@ msgstr "Ви можете задати Базовий DN для користув #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -411,41 +411,51 @@ msgstr "Пошукові Атрибути Групи" msgid "Group-Member association" msgstr "Асоціація Група-Член" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Спеціальні Атрибути" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "Поле Квоти" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "Квота за замовчанням" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "в байтах" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "Поле Ел. пошти" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "Правило іменування домашньої теки користувача" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Залиште порожнім для імені користувача (за замовчанням). Інакше, вкажіть атрибут LDAP/AD." -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -461,15 +471,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -480,19 +490,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -506,10 +516,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ur/core.po b/l10n/ur/core.po index 862ab145c3..af1797fff0 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:872 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:873 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:874 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:876 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:877 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:878 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:879 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:880 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:881 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:882 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -293,123 +312,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -525,7 +550,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ur/files.po b/l10n/ur/files.po index ecfa869763..3469a8e0a9 100644 --- a/l10n/ur/files.po +++ b/l10n/ur/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ur/files_encryption.po b/l10n/ur/files_encryption.po index 3e4b7ec4a7..f8e7504486 100644 --- a/l10n/ur/files_encryption.po +++ b/l10n/ur/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:62 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:63 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:281 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/ur/files_external.po b/l10n/ur/files_external.po index 480a799b4e..7d2c65defb 100644 --- a/l10n/ur/files_external.po +++ b/l10n/ur/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: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:467 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:471 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:474 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ur/files_sharing.po b/l10n/ur/files_sharing.po index 1dd85cf47f..fa231b4c39 100644 --- a/l10n/ur/files_sharing.po +++ b/l10n/ur/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ur/files_trashbin.po b/l10n/ur/files_trashbin.po index d1b08db59f..01c3eab2d4 100644 --- a/l10n/ur/files_trashbin.po +++ b/l10n/ur/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,21 +17,25 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:63 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:43 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:45 js/trash.js:88 js/trash.js:142 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:905 lib/trashbin.php:907 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po index ba1af659a1..eff2c9afe6 100644 --- a/l10n/ur/lib.po +++ b/l10n/ur/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,34 +17,34 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:245 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:257 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:362 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:375 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:386 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:398 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:411 +#: private/app.php:402 msgid "Admin" msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index f068880aa5..5a27872899 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:454 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:455 js/users.js:461 js/users.js:476 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:460 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:484 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ur/user_ldap.po b/l10n/ur/user_ldap.po index 8d5790eea9..52d4b1c41d 100644 --- a/l10n/ur/user_ldap.po +++ b/l10n/ur/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-01-07 01:55-0500\n" -"PO-Revision-Date: 2014-01-06 23:45+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index c91328a17a..60e317724f 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,135 +67,139 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "جنوری" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "فرورئ" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "مارچ" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "اپریل" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "مئی" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "جون" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "جولائی" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "اگست" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "ستمبر" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "اکتوبر" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "نومبر" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "دسمبر" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -268,6 +267,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -276,12 +295,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "ایرر" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -293,123 +312,123 @@ msgstr "شئیرنگ ختم کرنے کے دوران ایرر" msgid "Error while changing permissions" msgstr "اختیارات کو تبدیل کرنے کے دوران ایرر" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "پاسورڈ سے محفوظ کریں" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "پاسورڈ" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "تاریخ معیاد سیٹ کریں" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "تاریخ معیاد" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "ختم کریں" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "شئیر کریں" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -456,11 +475,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "اپنا پاسورڈ ری سیٹ کرنے کے لیے اس لنک پر کلک کریں۔ {link}" @@ -480,8 +505,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "یوزر نیم" @@ -525,7 +550,7 @@ msgstr "ذاتی" msgid "Users" msgstr "یوزرز" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "ایپز" @@ -635,49 +660,47 @@ msgstr "" msgid "Create an admin account" msgstr "ایک ایڈمن اکاؤنٹ بنائیں" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "ایڈوانسڈ" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "ڈیٹا فولڈر" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "ڈیٹا بیس کونفگر کریں" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "استعمال ہو گا" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "ڈیٹابیس یوزر" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "ڈیٹابیس پاسورڈ" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "ڈیٹابیس کا نام" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "ڈیٹابیس ٹیبل سپیس" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "ڈیٹابیس ہوسٹ" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "سیٹ اپ ختم کریں" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -693,7 +716,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "لاگ آؤٹ" @@ -719,27 +742,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "کیا آپ پاسورڈ بھول گئے ہیں؟" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "یاد رکھیں" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "لاگ ان" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 53afc26e54..4adcb1d0ec 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,236 +76,231 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "ایرر" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -301,12 +308,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -342,69 +349,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index c233b6408d..7530d0584f 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index 267556951c..097c73271c 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:434 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:437 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "یوزرز" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 7f9353d72e..923108eaea 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 3673a0eda0..0d58e5738a 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -6,10 +6,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-10-10 22:26-0400\n" -"PO-Revision-Date: 2013-10-11 02:27+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "ایرر" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:9 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:23 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:26 templates/index.php:28 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:34 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:37 templates/index.php:38 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 68279cb5bf..91edc05d6a 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "مدد" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "ذاتی" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "سیٹینگز" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "یوزرز" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "ایڈمن" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,66 +267,72 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 616f657a6f..d84664887b 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "ایرر" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "پاسورڈ" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "نیا پاسورڈ" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "یوزر نیم" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index b42df7fedf..9210c2d915 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "ایرر" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -140,11 +140,11 @@ msgid_plural "%s users found" msgstr[0] "" msgstr[1] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "مدد" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/uz/core.po b/l10n/uz/core.po index 88fdaf0459..796041e223 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-07 22:26-0500\n" -"PO-Revision-Date: 2013-12-08 03:26+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "" -#: js/js.js:387 +#: js/js.js:458 msgid "Settings" msgstr "" -#: js/js.js:858 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:859 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:860 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:861 +#: js/js.js:995 msgid "today" msgstr "" -#: js/js.js:862 +#: js/js.js:996 msgid "yesterday" msgstr "" -#: js/js.js:863 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:864 +#: js/js.js:998 msgid "last month" msgstr "" -#: js/js.js:865 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:866 +#: js/js.js:1000 msgid "months ago" msgstr "" -#: js/js.js:867 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:868 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "" @@ -271,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "" @@ -288,123 +307,123 @@ msgstr "" msgid "Error while changing permissions" msgstr "" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -451,11 +470,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "" @@ -520,7 +545,7 @@ msgstr "" msgid "Users" msgstr "" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "" -#: templates/installation.php:67 -msgid "Advanced" +#: templates/installation.php:70 +msgid "Storage & database" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/uz/files.po b/l10n/uz/files.po index 4e49c02a55..6be022eb5d 100644 --- a/l10n/uz/files.po +++ b/l10n/uz/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-19 01:55-0500\n" -"PO-Revision-Date: 2013-12-19 06:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -298,12 +305,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "" @@ -339,69 +346,69 @@ msgstr "" msgid "Save" msgstr "" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/uz/files_encryption.po b/l10n/uz/files_encryption.po index 5b96117b26..12d51b25dd 100644 --- a/l10n/uz/files_encryption.po +++ b/l10n/uz/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/uz/files_external.po b/l10n/uz/files_external.po index 1df26fb07d..f0b9b80128 100644 --- a/l10n/uz/files_external.po +++ b/l10n/uz/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-09 01:44-0500\n" -"PO-Revision-Date: 2013-11-07 08:41+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/uz/files_sharing.po b/l10n/uz/files_sharing.po index 2215fc5052..fd65efd753 100644 --- a/l10n/uz/files_sharing.po +++ b/l10n/uz/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-09 01:44-0500\n" -"PO-Revision-Date: 2013-11-07 08:41+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -55,30 +59,14 @@ msgstr "" #: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:20 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:28 templates/public.php:94 -msgid "Download" -msgstr "" - -#: templates/public.php:45 templates/public.php:48 -msgid "Upload" -msgstr "" - -#: templates/public.php:58 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:91 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:98 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/uz/files_trashbin.po b/l10n/uz/files_trashbin.po index f1f40775ea..63c93aa279 100644 --- a/l10n/uz/files_trashbin.po +++ b/l10n/uz/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-09 01:44-0500\n" -"PO-Revision-Date: 2013-11-07 08:41+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "" -#: lib/trashbin.php:814 lib/trashbin.php:816 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index 185fc1265c..1c2263d3a0 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-17 06:45-0500\n" -"PO-Revision-Date: 2013-12-17 11:45+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index 85917efc0b..541c41420b 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/uz/user_ldap.po b/l10n/uz/user_ldap.po index bad631e44a..e93eae4a9d 100644 --- a/l10n/uz/user_ldap.po +++ b/l10n/uz/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-27 12:08-0500\n" -"PO-Revision-Date: 2013-11-27 17:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,17 +25,17 @@ msgstr "" msgid "Failed to delete the server configuration" msgstr "" -#: ajax/testConfiguration.php:37 +#: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" msgstr "" -#: ajax/testConfiguration.php:40 +#: ajax/testConfiguration.php:42 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." msgstr "" -#: ajax/testConfiguration.php:44 +#: ajax/testConfiguration.php:46 msgid "" "The configuration is invalid. Please have a look at the logs for further " "details." @@ -86,43 +86,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:777 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:786 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:795 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:812 js/settings.js:821 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:815 js/settings.js:824 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:818 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:845 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:852 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:861 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:862 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:779 lib/wizard.php:791 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:952 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 0c0eabbd17..1fdd43a5c6 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -3,14 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Nguyễn Tài , 2014 +# namphongbody , 2014 +# Sơn Nguyễn , 2014 # xtdv , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,186 +21,185 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "Không thể gửi thư cho người dùng: %s" #: ajax/update.php:11 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Bật chế độ bảo trì" #: ajax/update.php:14 msgid "Turned off maintenance mode" -msgstr "" +msgstr "Tắt chế độ bảo trì" #: ajax/update.php:17 msgid "Updated database" -msgstr "" +msgstr "Cơ sở dữ liệu đã được cập nhật" #: ajax/update.php:20 msgid "Updating filecache, this may take really long..." -msgstr "" +msgstr "Đang cập nhật tập tin bộ nhớ cache, việc này có thể mất nhiều thời gian..." #: ajax/update.php:23 msgid "Updated filecache" -msgstr "" +msgstr "Đã cập nhật tập tin bộ nhớ cache" #: ajax/update.php:26 #, php-format msgid "... %d%% done ..." -msgstr "" +msgstr "... %d%% hoàn thành ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Không có hình ảnh hoặc tập tin được cung cấp" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Không biết kiểu tập tin" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Hình ảnh không hợp lệ" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Ảnh cá nhân tạm thời không có giá trị, hãy thử lại" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "Không có dữ liệu nguồn được cung cấp" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "Chủ nhật" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "Thứ 2" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "Thứ 3" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "Thứ 4" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "Thứ 5" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "Thứ " -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "Thứ 7" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "Tháng 1" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "Tháng 2" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "Tháng 3" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "Tháng 4" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "Tháng 5" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "Tháng 6" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "Tháng 7" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "Tháng 8" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "Tháng 9" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "Tháng 10" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "Tháng 11" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "Tháng 12" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n phút trước" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n giờ trước" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "hôm nay" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n ngày trước" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "tháng trước" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n tháng trước" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "tháng trước" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "năm trước" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "năm trước" @@ -207,7 +209,7 @@ msgstr "Chọn" #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "Lỗi khi tải mẫu tập tin picker: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -223,26 +225,26 @@ msgstr "Đồng ý" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "Lỗi khi tải mẫu thông điệp: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" +msgstr[0] "{count} tập tin xung đột" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "Một tập tin xung đột" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Bạn muốn tiếp tục với những tập tin nào?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "Nếu bạn chọn cả hai phiên bản, tập tin được sao chép sẽ được đánh thêm số vào tên của nó." #: js/oc-dialogs.js:376 msgid "Cancel" @@ -250,18 +252,38 @@ msgstr "Hủy" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "Tiếp tục" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(Tất cả các lựa chọn)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "({count} được chọn)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" +msgstr "Lỗi khi tải tập tin mẫu đã tồn tại" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" msgstr "" #: js/share.js:51 js/share.js:66 js/share.js:106 @@ -272,12 +294,12 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "Lỗi" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -289,123 +311,123 @@ msgstr "Lỗi trong quá trình gỡ chia sẻ" msgid "Error while changing permissions" msgstr "Lỗi trong quá trình phân quyền" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "Đã được chia sẽ với bạn và nhóm {group} bởi {owner}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "Đã được chia sẽ bởi {owner}" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" -msgstr "" +msgstr "Chia sẻ với người dùng hoặc nhóm" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "Chia sẻ liên kết" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "Mật khẩu" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" -msgstr "" +msgstr "Cho phép công khai tập tin tải lên" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "Liên kết email tới cá nhân" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "Gởi" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "Đặt ngày kết thúc" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "Ngày kết thúc" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "Chia sẻ thông qua email" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "nhóm" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" -msgstr "" +msgstr "Thông báo qua email" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "tạo" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "cập nhật" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "xóa" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "chia sẻ" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email đã được gửi" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "Cảnh báo" @@ -415,7 +437,7 @@ msgstr "Loại đối tượng không được chỉ định." #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Nhập mới" #: js/tags.js:27 msgid "Delete" @@ -427,19 +449,19 @@ msgstr "Thêm" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Sửa thẻ" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "Lỗi khi tải mẫu hội thoại: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "Không có thẻ nào được chọn để xóa" #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Vui lòng tải lại trang." #: js/update.js:17 msgid "" @@ -452,9 +474,15 @@ msgstr "Cập nhật không thành công . Vui lòng thông báo đến Bạn có chắc là email/tên đăng nhậ msgid "You will receive a link to reset your password via Email." msgstr "Vui lòng kiểm tra Email để khôi phục lại mật khẩu." -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "Tên đăng nhập" @@ -487,15 +515,15 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Tập tin của bạn được mã hóa. Nếu bạn chưa kích hoạt khoá phục hồi, sẽ không có cách nào để lấy lại được dữ liệu sau khi thiết lập lại mật khẩu. Nếu bạn không biết phải làm gì, xin vui lòng liên hệ với quản trị viên trước khi tiếp tục. Bạn có muốn tiếp tục?" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Vâng, tôi muốn thiết lập lại mật khẩu ngay." #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Khởi động lại" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -521,7 +549,7 @@ msgstr "Cá nhân" msgid "Users" msgstr "Người dùng" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "Ứng dụng" @@ -535,23 +563,23 @@ msgstr "Giúp đỡ" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Lỗi khi tải thẻ" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Thẻ đã tồn tại" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "Lỗi khi xóa (nhiều)thẻ" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "Lỗi gắn thẻ" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "Lỗi không gắn thẻ" #: tags/controller.php:97 msgid "Error favoriting" @@ -577,16 +605,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "Xin chào,\n\nbáo cho bạn biết rằng %s đã chia sẽ %s với bạn.\nXem nó: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Chia sẻ này sẽ hết hiệu lực vào %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Chúc mừng!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -600,7 +628,7 @@ msgstr "Phiên bản PHP của bạn có lỗ hổng NULL Byte attack (CVE-2006- #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Vui lòng cập nhật bản cài đặt PHP để sử dụng %s một cách an toàn." #: templates/installation.php:33 msgid "" @@ -625,71 +653,69 @@ msgstr "Thư mục và file dữ liệu của bạn có thể được truy cậ msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Để biết thêm thông tin và cách cấu hình đúng vui lòng xem thêm tài l." #: templates/installation.php:48 msgid "Create an admin account" msgstr "Tạo một tài khoản quản trị" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "Nâng cao" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "Thư mục dữ liệu" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "Cấu hình cơ sở dữ liệu" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "được sử dụng" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "Database host" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "Cài đặt hoàn tất" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" -msgstr "" +msgstr "Đang hoàn thành ..." #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "Ứng dụng này yêu cầu JavaScript để hoạt động. Vui lòng kích hoạt JavaScript và tải lại giao diện này." #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s còn trống. Xem thêm thông tin cách cập nhật." -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "Đăng xuất" @@ -709,52 +735,52 @@ msgstr "Vui lòng thay đổi mật khẩu của bạn để đảm bảo tài k #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Xác thực phía máy chủ không thành công!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Vui lòng liên hệ với quản trị viên." -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "Bạn quên mật khẩu ?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "ghi nhớ" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "Đăng nhập" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "Đăng nhập khác" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "OwnCloud trong trường hợp này đang ở chế độ người dùng duy nhất." #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "Điều này có nghĩa chỉ có người quản trị có thể sử dụng trong trường hợp này." #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "Liên hệ với người quản trị nếu lỗi này vẫn tồn tại hoặc xuất hiện bất ngờ." #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Cảm ơn sự kiên nhẫn của bạn." #: templates/update.admin.php:3 #, php-format @@ -764,8 +790,8 @@ msgstr "Cập nhật ownCloud lên phiên bản %s, có thể sẽ mất thời #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "Phiên bản ownCloud này hiện đang được cập nhật, có thể sẽ mất một ít thời gian." #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "Xin vui lòng tải lại trang này để tiếp tục sử dụng ownCloud." diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 992a497b72..75cce95e79 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -3,14 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Nguyễn Tài , 2014 +# namphongbody , 2014 +# Sơn Nguyễn , 2014 # xtdv , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,270 +31,277 @@ msgstr "Không thể di chuyển %s - Đã có tên tập tin này trên hệ th msgid "Could not move %s" msgstr "Không thể di chuyển %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "Tên file không được rỗng" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format -msgid "" -"The name %s is already used in the folder %s. Please choose a different " -"name." +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:81 -msgid "Not a valid source" -msgstr "" - -#: ajax/newfile.php:86 -msgid "" -"Server is not allowed to open URLs, please check the server configuration" -msgstr "" - -#: ajax/newfile.php:103 -#, php-format -msgid "Error while downloading %s to %s" -msgstr "" - -#: ajax/newfile.php:140 -msgid "Error when creating the file" -msgstr "" - -#: ajax/newfolder.php:21 -msgid "Folder name cannot be empty." -msgstr "" - -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 -msgid "Error when creating the folder" -msgstr "" - -#: ajax/upload.php:18 ajax/upload.php:50 -msgid "Unable to set upload directory." -msgstr "" - -#: ajax/upload.php:27 -msgid "Invalid Token" -msgstr "" - -#: ajax/upload.php:64 -msgid "No file was uploaded. Unknown error" -msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" - -#: ajax/upload.php:71 -msgid "There is no error, the file uploaded with success" -msgstr "Không có lỗi, các tập tin đã được tải lên thành công" - -#: ajax/upload.php:72 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " - -#: ajax/upload.php:74 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML" - -#: ajax/upload.php:75 -msgid "The uploaded file was only partially uploaded" -msgstr "Các tập tin được tải lên chỉ tải lên được một phần" - -#: ajax/upload.php:76 -msgid "No file was uploaded" -msgstr "Chưa có file nào được tải lên" - -#: ajax/upload.php:77 -msgid "Missing a temporary folder" -msgstr "Không tìm thấy thư mục tạm" - -#: ajax/upload.php:78 -msgid "Failed to write to disk" -msgstr "Không thể ghi " - -#: ajax/upload.php:96 -msgid "Not enough storage available" -msgstr "Không đủ không gian lưu trữ" - -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 -msgid "Upload failed. Could not find uploaded file" -msgstr "" - -#: ajax/upload.php:172 -msgid "Invalid directory." -msgstr "Thư mục không hợp lệ" - -#: appinfo/app.php:11 -msgid "Files" -msgstr "Tập tin" - -#: js/file-upload.js:228 -msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" - -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "Không đủ chỗ trống cần thiết" - -#: js/file-upload.js:306 -msgid "Upload cancelled." -msgstr "Hủy tải lên" - -#: js/file-upload.js:344 -msgid "Could not get result from server." -msgstr "" - -#: js/file-upload.js:436 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." - -#: js/file-upload.js:523 -msgid "URL cannot be empty" -msgstr "" - -#: js/file-upload.js:527 js/filelist.js:377 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:529 js/filelist.js:379 -msgid "{new_name} already exists" -msgstr "{new_name} đã tồn tại" - -#: js/file-upload.js:595 -msgid "Could not create file" -msgstr "" - -#: js/file-upload.js:611 -msgid "Could not create folder" -msgstr "" - -#: js/file-upload.js:661 -msgid "Error fetching URL" -msgstr "" - -#: js/fileactions.js:125 -msgid "Share" -msgstr "Chia sẻ" - -#: js/fileactions.js:137 -msgid "Delete permanently" -msgstr "Xóa vĩnh vễn" - -#: js/fileactions.js:194 -msgid "Rename" -msgstr "Sửa tên" - -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 -msgid "Pending" -msgstr "Đang chờ" - -#: js/filelist.js:405 -msgid "Could not rename file" -msgstr "" - -#: js/filelist.js:539 -msgid "replaced {new_name} with {old_name}" -msgstr "đã thay thế {new_name} bằng {old_name}" - -#: js/filelist.js:539 -msgid "undo" -msgstr "lùi lại" - -#: js/filelist.js:591 -msgid "Error deleting file." -msgstr "" - -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "" - -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "" - -#: js/filelist.js:617 -msgid "{dirs} and {files}" -msgstr "" - -#: js/filelist.js:828 js/filelist.js:866 -msgid "Uploading %n file" -msgid_plural "Uploading %n files" -msgstr[0] "" - -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' là một tên file không hợp lệ" - -#: js/files.js:81 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: js/files.js:93 +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "Tên %s đã được sử dụng trong thư mục %s. Hãy chọn tên khác." + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "Nguồn không hợp lệ" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "Server cấm mở URLs, vui lòng kiểm tra lại cấu hình server" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "Lỗi trong trong quá trình tải %s từ %s" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "Lỗi khi tạo file" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "Tên thư mục không thể để trống" + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "Lỗi khi tạo thư mục" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "Không thể thiết lập thư mục tải lên." + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "Xác thực không hợp lệ" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "Không có lỗi, các tập tin đã được tải lên thành công" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML" + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "Các tập tin được tải lên chỉ tải lên được một phần" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "Chưa có file nào được tải lên" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "Không tìm thấy thư mục tạm" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "Không thể ghi " + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "Không đủ không gian lưu trữ" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "Tải lên thất bại. Không thể tìm thấy tập tin được tải lên" + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "Tải lên thất bại. Không thể có được thông tin tập tin." + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "Thư mục không hợp lệ" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "Tập tin" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "không thể tải {filename} lên do nó là một thư mục hoặc có kích thước bằng 0 byte" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "Hủy tải lên" + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "Không thể nhận được kết quả từ máy chủ." + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "URL không thể để trống" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "{new_name} đã tồn tại" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "Không thể tạo file" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "Không thể tạo thư mục" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "Chia sẻ" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "Xóa vĩnh vễn" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "Sửa tên" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "Đang chờ" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "Không thể đổi tên file" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "đã thay thế {new_name} bằng {old_name}" + +#: js/filelist.js:591 +msgid "undo" +msgstr "lùi lại" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "Lỗi xóa file," + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n thư mục" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n tập tin" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "{dirs} và {files}" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "Đang tải lên %n tập tin" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Your storage is full, files can not be updated or synced anymore!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Ứng dụng mã hóa đã được kích hoạt nhưng bạn chưa khởi tạo khóa. Vui lòng đăng xuất ra và đăng nhập lại" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "Mã hóa đã bị vô hiệu nhưng những tập tin của bạn vẫn được mã hóa. Vui lòng vào phần thiết lập cá nhân để giải mã chúng." -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" -msgstr "" +msgstr "Lỗi di chuyển tập tin" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "Lỗi" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "Tên" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "Thay đổi" @@ -299,12 +309,12 @@ msgstr "Thay đổi" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s không thể đổi tên" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "Tải lên" @@ -340,69 +350,69 @@ msgstr "Kích thước tối đa cho các tập tin ZIP" msgid "Save" msgstr "Lưu" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" -msgstr "Mới" +msgstr "Tạo mới" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" -msgstr "" +msgstr "File text mới" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "Tập tin văn bản" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "Tạo thư mục" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "Thư mục" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "File đã bị xóa" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "Bạn không có quyền upload hoặc tạo files ở đây" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "Tải về" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "Xóa" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ ." -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index e6960f65bb..9494193386 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Tuấn Kiệt Hồ , 2013 +# Nguyễn Tài , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,21 +21,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Khóa khôi phục kích hoạt thành công" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Không thể kích hoạt khóa khôi phục. Vui lòng kiểm tra mật khẩu khóa khôi phục!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Vô hiệu hóa khóa khôi phục thành công" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Không thể vô hiệu hóa khóa khôi phục. Vui lòng kiểm tra mật khẩu khóa khôi phục!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -46,13 +47,13 @@ msgstr "Không thể đổi mật khẩu. Có lẽ do mật khẩu cũ không đ #: ajax/updatePrivateKeyPassword.php:52 msgid "Private key password successfully updated." -msgstr "" +msgstr "Cập nhật thành công mật khẩu khóa cá nhân" #: ajax/updatePrivateKeyPassword.php:54 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Không thể cập nhật mật khẩu khóa cá nhân. Có thể mật khẩu cũ không đúng" #: files/error.php:12 msgid "" @@ -81,18 +82,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -100,9 +101,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "Đang lưu..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -110,7 +111,7 @@ msgstr "" #: templates/invalid_private_key.php:8 msgid "personal settings" -msgstr "" +msgstr "Thiết lập cá nhân" #: templates/settings-admin.php:4 templates/settings-personal.php:3 msgid "Encryption" @@ -159,44 +160,44 @@ msgstr "Đổi Mật khẩu" #: templates/settings-personal.php:9 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Mật khẩu khóa cá nhân không còn phù hợp với mật khẩu đăng nhập:" #: templates/settings-personal.php:12 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Thiết lập mật khẩu khóa cá nhân cũ đến mật khẩu đăng nhập hiện tại." #: templates/settings-personal.php:14 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Nếu bạn không nhớ mật khẩu cũ, bạn có thể yêu cầu quản trị viên khôi phục tập tin của bạn." #: templates/settings-personal.php:22 msgid "Old log-in password" -msgstr "" +msgstr "Mật khẩu đăng nhập cũ" #: templates/settings-personal.php:28 msgid "Current log-in password" -msgstr "" +msgstr "Mật khẩu đăng nhập hiện tại" #: templates/settings-personal.php:33 msgid "Update Private Key Password" -msgstr "" +msgstr "Cập nhật mật khẩu khóa cá nhân" #: templates/settings-personal.php:42 msgid "Enable password recovery:" -msgstr "" +msgstr "Kích hoạt khôi phục mật khẩu:" #: templates/settings-personal.php:44 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Tùy chọn này sẽ cho phép bạn tái truy cập đến các tập tin mã hóa trong trường hợp mất mật khẩu" #: templates/settings-personal.php:60 msgid "File recovery settings updated" -msgstr "" +msgstr "Đã cập nhật thiết lập khôi phục tập tin " #: templates/settings-personal.php:61 msgid "Could not update file recovery" -msgstr "" +msgstr "Không thể cập nhật khôi phục tập tin" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index fed63a6861..983d24f383 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: xtdv \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "Đã cấp quyền truy cập" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "Lỗi cấu hình lưu trữ Dropbox " -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "Cấp quyền truy cập" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã bí mật." -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "Lỗi cấu hình lưu trữ Google Drive" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó." -#: lib/config.php:465 +#: lib/config.php:516 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 "Cảnh báo: FTP trong PHP chưa được cài đặt hoặc chưa được mở. Mount FTP shares là không thể. Xin hãy yêu cầu quản trị hệ thống của bạn cài đặt nó." -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "Người dùng" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "Xóa" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "Kích hoạt tính năng lưu trữ ngoài" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "Cho phép người dùng kết nối với lưu trữ riêng bên ngoài của họ" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "Chứng chỉ SSL root" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "Nhập Root Certificate" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index b89ea054cf..3f4ffb0ed2 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s đã chia sẻ thư mục %s với bạn" +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s đã chia sẻ tập tin %s với bạn" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "Tải về" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "Tải lên" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "Hủy upload" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "Không có xem trước cho" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 92e604b2a5..5d59c2d685 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sơn Nguyễn , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +18,48 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" -msgstr "Không thể óa %s vĩnh viễn" +msgstr "Không thể xóa %s vĩnh viễn" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "Không thể khôi phục %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "Lỗi" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" -msgstr "" +msgstr "khôi phục" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "Không có gì ở đây. Thùng rác của bạn rỗng!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "Tên" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "Khôi phục" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "Đã xóa" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "Xóa" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "File đã xóa" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index 502dfac96b..9de7752b07 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sơn Nguyễn , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-01-18 04:20+0000\n" +"Last-Translator: Sơn Nguyễn \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +23,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "Không thể khôi phục: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "Phiên bản" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Thất bại khi trở lại {file} khi sử đổi {timestamp}." -#: js/versions.js:79 +#: js/versions.js:87 msgid "More versions..." -msgstr "" +msgstr "Nhiều phiên bản ..." -#: js/versions.js:116 +#: js/versions.js:125 msgid "No other versions available" -msgstr "" +msgstr "Không có các phiên bản khác có sẵn" -#: js/versions.js:149 +#: js/versions.js:155 msgid "Restore" msgstr "Khôi phục" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index b91c21cfaa..5cbee6eaed 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,59 +17,54 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "Giúp đỡ" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "Cá nhân" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "Cài đặt" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "Người dùng" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "Quản trị" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Không biết kiểu tập tin" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Hình ảnh không hợp lệ" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "Ứng dụng không được BẬT" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "Lỗi xác thực" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Mã Token đã hết hạn. Hãy tải lại trang." +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "Tập tin" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "không thể tìm thấy mục \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "vài giây trước" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" +msgstr[0] "%n phút trước" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" +msgstr[0] "%n giờ trước" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "hôm nay" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "hôm qua" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" -msgstr[0] "" +msgstr[0] "%n ngày trước" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "tháng trước" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" -msgstr[0] "" +msgstr[0] "%n tháng trước" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "năm trước" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 53de10b99c..6dedc7cf96 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sơn Nguyễn , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +18,48 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "Mã hóa" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "Không thể tải danh sách ứng dụng từ App Store" @@ -28,11 +71,11 @@ msgstr "Lỗi xác thực" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Họ và tên đã được thay đổi." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Họ và tên không thể đổi " #: ajax/creategroup.php:10 msgid "Group already exists" @@ -113,61 +156,89 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "Tài liệu người sử dụng" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "Cập nhật lên {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "Tắt" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "Bật" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "Xin hãy đợi..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "Đang cập nhật..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "Lỗi khi cập nhật ứng dụng" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "Lỗi" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "Cập nhật" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "Đã cập nhật" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." -msgstr "Đang lưu..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" #: js/users.js:47 msgid "deleted" @@ -179,42 +250,42 @@ msgstr "lùi lại" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Không thể xóa người " -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "Nhóm" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "Nhóm quản trị" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "Xóa" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__Ngôn ngữ___" @@ -238,88 +309,112 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "Cảnh bảo bảo mật" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " "configure your webserver in a way that the data directory is no longer " "accessible or you move the data directory outside the webserver document " "root." -msgstr "" +msgstr "Thư mục và các tập tin của bạn có thể được truy cập từ Internet. Tập tin .htaccess không làm việc. Chúng tôi đề nghị bạn cấu hình ebserver ,phân quyền lại thư mục dữ liệu và cấp quyền truy cập hoặc di chuyển thư mục dữ liệu bên ngoài tài liệu gốc máy chủ web." -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "Thực thi tác vụ mỗi khi trang được tải" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "Chia sẻ" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "Cho phép các ứng dụng sử dụng chia sẻ API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "Cho phép người dùng chia sẻ với bất cứ ai" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "Log" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "hơn" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "ít" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "Được phát triển bởi cộng đồng ownCloud, mã nguồn đã được cấp phép theo chuẩn AGPL." -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "Thêm ứng dụng của bạn" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "Nhiều ứng dụng hơn" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "Chọn một ứng dụng" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "Xem nhiều ứng dụng hơn tại apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-Giấy phép được cấp bởi " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "Tài liệu người sử dụng" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "Tài liệu quản trị" @@ -506,7 +649,7 @@ msgstr "Hiện lại việc chạy đồ thuật khởi đầu" msgid "You have used %s of the available %s" msgstr "Bạn đã sử dụng %s có sẵn %s " -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "Mật khẩu" @@ -518,151 +661,149 @@ msgstr "Mật khẩu của bạn đã được thay đổi." msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "Mật khẩu mới" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "Họ và tên" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "Email" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" -msgstr "" +msgstr "Tải lên" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" -msgstr "" +msgstr "Xóa " -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" -msgstr "" +msgstr "Chọn hình ảnh như hồ sơ cá nhân" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "Mã hóa" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "Tên đăng nhập" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "Tạo" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "Bộ nhớ mặc định" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "Không giới hạn" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "Khác" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "Tên đăng nhập" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "Bộ nhớ" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "Đổi họ và t" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "đặt mật khẩu mới" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "Mặc định" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index a5bce417eb..49f7b2589d 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "Thành công" msgid "Error" msgstr "Lỗi" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "Chọn nhóm" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "Giúp đỡ" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "Bạn có thể chỉ định DN cơ bản cho người dùng và các n #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -283,7 +283,7 @@ msgstr "Trở lại" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "Tiếp tục" #: templates/settings.php:11 msgid "" @@ -407,41 +407,51 @@ msgstr "Group Search Attributes" msgid "Group-Member association" msgstr "Nhóm thành viên Cộng đồng" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "Special Attributes" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "Theo Byte" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "Để trống tên người dùng (mặc định). Nếu không chỉ định thuộc tính LDAP/AD" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/vi/user_webdavauth.po b/l10n/vi/user_webdavauth.po index a4491d6020..4303137877 100644 --- a/l10n/vi/user_webdavauth.po +++ b/l10n/vi/user_webdavauth.po @@ -4,14 +4,14 @@ # # Translators: # saosangm , 2013 -# Sơn Nguyễn , 2012 +# Sơn Nguyễn , 2012,2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-01-21 08:20+0000\n" +"Last-Translator: Sơn Nguyễn \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,11 +25,11 @@ msgstr "Xác thực WebDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Địa chỉ :" #: templates/settings.php:7 msgid "" "The user credentials will be sent to this address. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "Các thông tin người dùng sẽ được gửi đến địa chỉ này. Plugin này sẽ kiểm tra các phản hồi và các statuscodes HTTP 401 và 403 không hợp lệ, và tất cả những phản h khác như thông tin hợp lệ." diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index e5bde42b8b..df9900e1f5 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -4,16 +4,17 @@ # # Translators: # hanfeng , 2013 +# smartree , 2014 # Xuetian Weng , 2013 -# zhangmin , 2013 -# zhangmin , 2013 +# min zhang , 2013 +# min zhang , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,15 +22,10 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s 向您分享了 »%s«" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " -msgstr "" +msgstr "发送失败,用户如下: %s " #: ajax/update.php:11 msgid "Turned on maintenance mode" @@ -58,7 +54,7 @@ msgstr "...已完成 %d%% ..." #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "没有提供图片或文件" #: avatar/controller.php:81 msgid "Unknown filetype" @@ -70,137 +66,141 @@ msgstr "无效的图像" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "没有临时概览页图片可用,请重试" #: avatar/controller.php:135 msgid "No crop data provided" -msgstr "" +msgstr "没有提供相应数据" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "星期日" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "星期一" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "星期二" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "星期三" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "星期四" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "星期五" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "星期六" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "一月" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "二月" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "三月" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "四月" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "五月" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "六月" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "七月" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "八月" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "九月" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "十月" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "十一月" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "十二月" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "设置" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "秒前" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "今天" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "昨天" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "上月" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "月前" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "去年" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "年前" @@ -210,7 +210,7 @@ msgstr "选择(&C)..." #: js/oc-dialogs.js:146 msgid "Error loading file picker template: {error}" -msgstr "" +msgstr "加载文件分拣模板出错: {error}" #: js/oc-dialogs.js:172 msgid "Yes" @@ -226,26 +226,26 @@ msgstr "好" #: js/oc-dialogs.js:219 msgid "Error loading message template: {error}" -msgstr "" +msgstr "加载消息模板出错: {error}" #: js/oc-dialogs.js:347 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" +msgstr[0] "{count} 个文件冲突" #: js/oc-dialogs.js:361 msgid "One file conflict" -msgstr "" +msgstr "1个文件冲突" #: js/oc-dialogs.js:367 msgid "Which files do you want to keep?" -msgstr "" +msgstr "想要保留哪一个文件呢?" #: js/oc-dialogs.js:368 msgid "" "If you select both versions, the copied file will have a number added to its" " name." -msgstr "" +msgstr "如果同时选择了连个版本,复制的文件名将会添加上一个数字。" #: js/oc-dialogs.js:376 msgid "Cancel" @@ -253,18 +253,38 @@ msgstr "取消" #: js/oc-dialogs.js:386 msgid "Continue" -msgstr "" +msgstr "继续" #: js/oc-dialogs.js:433 js/oc-dialogs.js:446 msgid "(all selected)" -msgstr "" +msgstr "(选中全部)" #: js/oc-dialogs.js:436 js/oc-dialogs.js:449 msgid "({count} selected)" -msgstr "" +msgstr "(选择了{count}个)" #: js/oc-dialogs.js:457 msgid "Error loading file exists template" +msgstr "加载文件存在性模板失败" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" msgstr "" #: js/share.js:51 js/share.js:66 js/share.js:106 @@ -275,12 +295,12 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "错误" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "共享时出错" @@ -292,123 +312,123 @@ msgstr "取消共享时出错" msgid "Error while changing permissions" msgstr "修改权限时出错" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} 共享给您及 {group} 组" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} 与您共享" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" -msgstr "" +msgstr "分享给其他用户或组 ..." -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "分享链接" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "密码保护" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "密码" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "允许公开上传" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "发送链接到个人" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "发送" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "设置过期日期" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "过期日期" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "通过Email共享" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "未找到此人" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "组" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "在 {item} 与 {user} 共享。" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "取消共享" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" -msgstr "" +msgstr "以邮件通知" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "可以修改" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "访问控制" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "创建" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "更新" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "删除" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "共享" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "邮件已发送" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "警告" @@ -418,7 +438,7 @@ msgstr "未指定对象类型。" #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "输入新..." #: js/tags.js:27 msgid "Delete" @@ -430,19 +450,19 @@ msgstr "增加" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "编辑标签" #: js/tags.js:57 msgid "Error loading dialog template: {error}" -msgstr "" +msgstr "加载对话框模板出错: {error}" #: js/tags.js:261 msgid "No tags selected for deletion." -msgstr "" +msgstr "请选择要删除的标签。" #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "请重新加载页面。" #: js/update.js:17 msgid "" @@ -455,11 +475,17 @@ msgstr "更新不成功。请汇报将此问题汇报给 您确定您的邮箱/用户名是正确的?" msgid "You will receive a link to reset your password via Email." msgstr "您将会收到包含可以重置密码链接的邮件。" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "用户名" @@ -524,7 +550,7 @@ msgstr "个人" msgid "Users" msgstr "用户" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "应用" @@ -538,31 +564,31 @@ msgstr "帮助" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "加载标签出错" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "标签已存在" #: tags/controller.php:64 msgid "Error deleting tag(s)" -msgstr "" +msgstr "删除标签(s)时出错" #: tags/controller.php:75 msgid "Error tagging" -msgstr "" +msgstr "添加标签时出错" #: tags/controller.php:86 msgid "Error untagging" -msgstr "" +msgstr "移除标签时出错" #: tags/controller.php:97 msgid "Error favoriting" -msgstr "" +msgstr "收藏时出错" #: tags/controller.php:108 msgid "Error unfavoriting" -msgstr "" +msgstr "删除收藏时出错" #: templates/403.php:12 msgid "Access forbidden" @@ -580,16 +606,16 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "" +msgstr "嗨、你好,\n\n只想让你知道 %s 分享了 %s 给你。\n现在查看: %s\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "此分享将在 %s 过期。" #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "干杯!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 @@ -634,65 +660,63 @@ msgstr "关于如何配置服务器,请参见 admin account" msgstr "创建管理员账号" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "高级" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "数据目录" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "安装完成" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" -msgstr "" +msgstr "正在结束 ..." #: templates/layout.user.php:40 msgid "" "This application requires JavaScript to be enabled for correct operation. " "Please enable " "JavaScript and re-load this interface." -msgstr "" +msgstr "此程序需要启用JavaScript才能正常运行。请启用JavaScript 并重新加载此接口。" #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s 可用。获取更多关于如何升级的信息。" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "注销" @@ -712,52 +736,52 @@ msgstr "请修改您的密码,以保护您的账户安全。" #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "服务端验证失败!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "请联系你的管理员。" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "记住" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "登录" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "其他登录方式" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." -msgstr "" +msgstr "当前ownCloud实例运行在单用户模式下。" #: templates/singleuser.user.php:4 msgid "This means only administrators can use the instance." -msgstr "" +msgstr "这意味着只有管理员才能在实例上操作。" #: templates/singleuser.user.php:5 templates/update.user.php:5 msgid "" "Contact your system administrator if this message persists or appeared " "unexpectedly." -msgstr "" +msgstr "如果这个消息一直存在或不停出现,请联系你的系统管理员。" #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "感谢让你久等了。" #: templates/update.admin.php:3 #, php-format @@ -767,8 +791,8 @@ msgstr "更新 ownCloud 到版本 %s,这可能需要一些时间。" #: templates/update.user.php:3 msgid "" "This ownCloud instance is currently being updated, which may take a while." -msgstr "" +msgstr "当前ownCloud实例正在更新,可能需要一段时间。" #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "" +msgstr "请稍后重新加载这个页面,以继续使用ownCloud。" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 102239c828..b47edf076c 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Martin Liu , 2014 # Mengz You , 2013 -# zhangmin , 2013 -# zhangmin , 2013 +# min zhang , 2013 +# min zhang , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,283 +31,290 @@ msgstr "无法移动 %s - 同名文件已存在" msgid "Could not move %s" msgstr "无法移动 %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "文件名不能为空。" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 #, php-format -msgid "" -"The name %s is already used in the folder %s. Please choose a different " -"name." +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:81 -msgid "Not a valid source" -msgstr "" - -#: ajax/newfile.php:86 -msgid "" -"Server is not allowed to open URLs, please check the server configuration" -msgstr "" - -#: ajax/newfile.php:103 -#, php-format -msgid "Error while downloading %s to %s" -msgstr "" - -#: ajax/newfile.php:140 -msgid "Error when creating the file" -msgstr "" - -#: ajax/newfolder.php:21 -msgid "Folder name cannot be empty." -msgstr "" - -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 -msgid "Error when creating the folder" -msgstr "" - -#: ajax/upload.php:18 ajax/upload.php:50 -msgid "Unable to set upload directory." -msgstr "无法设置上传文件夹。" - -#: ajax/upload.php:27 -msgid "Invalid Token" -msgstr "无效密匙" - -#: ajax/upload.php:64 -msgid "No file was uploaded. Unknown error" -msgstr "没有文件被上传。未知错误" - -#: ajax/upload.php:71 -msgid "There is no error, the file uploaded with success" -msgstr "文件上传成功,没有错误发生" - -#: ajax/upload.php:72 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" - -#: ajax/upload.php:74 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" - -#: ajax/upload.php:75 -msgid "The uploaded file was only partially uploaded" -msgstr "已上传文件只上传了部分(不完整)" - -#: ajax/upload.php:76 -msgid "No file was uploaded" -msgstr "没有文件被上传" - -#: ajax/upload.php:77 -msgid "Missing a temporary folder" -msgstr "缺少临时目录" - -#: ajax/upload.php:78 -msgid "Failed to write to disk" -msgstr "写入磁盘失败" - -#: ajax/upload.php:96 -msgid "Not enough storage available" -msgstr "没有足够的存储空间" - -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 -msgid "Upload failed. Could not find uploaded file" -msgstr "" - -#: ajax/upload.php:172 -msgid "Invalid directory." -msgstr "无效文件夹。" - -#: appinfo/app.php:11 -msgid "Files" -msgstr "文件" - -#: js/file-upload.js:228 -msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "" - -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "没有足够可用空间" - -#: js/file-upload.js:306 -msgid "Upload cancelled." -msgstr "上传已取消" - -#: js/file-upload.js:344 -msgid "Could not get result from server." -msgstr "" - -#: js/file-upload.js:436 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" - -#: js/file-upload.js:523 -msgid "URL cannot be empty" -msgstr "" - -#: js/file-upload.js:527 js/filelist.js:377 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:529 js/filelist.js:379 -msgid "{new_name} already exists" -msgstr "{new_name} 已存在" - -#: js/file-upload.js:595 -msgid "Could not create file" -msgstr "" - -#: js/file-upload.js:611 -msgid "Could not create folder" -msgstr "" - -#: js/file-upload.js:661 -msgid "Error fetching URL" -msgstr "" - -#: js/fileactions.js:125 -msgid "Share" -msgstr "分享" - -#: js/fileactions.js:137 -msgid "Delete permanently" -msgstr "永久删除" - -#: js/fileactions.js:194 -msgid "Rename" -msgstr "重命名" - -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 -msgid "Pending" -msgstr "等待" - -#: js/filelist.js:405 -msgid "Could not rename file" -msgstr "" - -#: js/filelist.js:539 -msgid "replaced {new_name} with {old_name}" -msgstr "已将 {old_name}替换成 {new_name}" - -#: js/filelist.js:539 -msgid "undo" -msgstr "撤销" - -#: js/filelist.js:591 -msgid "Error deleting file." -msgstr "" - -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 文件夹" - -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n个文件" - -#: js/filelist.js:617 -msgid "{dirs} and {files}" -msgstr "" - -#: js/filelist.js:828 js/filelist.js:866 -msgid "Uploading %n file" -msgid_plural "Uploading %n files" -msgstr[0] "" - -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' 是一个无效的文件名。" - -#: js/files.js:81 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: js/files.js:93 +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "文件名 %s 是已经在 %s 中存在的名称。请使用其他名称。" + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "不是一个可用的源" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "服务器没有允许打开URL网址,请检查服务器配置" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "当下载 %s 到 %s 时出错" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "当创建文件是出错" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "文件夹名称不能为空" + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "创建文件夹出错" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "无法设置上传文件夹。" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "无效密匙" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "没有文件被上传。未知错误" + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "文件上传成功,没有错误发生" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "已上传文件只上传了部分(不完整)" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "没有文件被上传" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "缺少临时目录" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "写入磁盘失败" + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "没有足够的存储空间" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "上传失败。不能发现上传的文件" + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "上传失败。不能获取文件信息。" + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "无效文件夹。" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "文件" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "不能上传文件 {filename} ,由于它是一个目录或者为0字节" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "上传已取消" + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "不能从服务器得到结果" + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "URL不能为空" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "主目录里 'Shared' 是系统预留目录名" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "{new_name} 已存在" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "不能创建文件" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "不能创建文件夹" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "获取URL出错" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "分享" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "永久删除" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "重命名" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "等待" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "不能重命名文件" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "已将 {old_name}替换成 {new_name}" + +#: js/filelist.js:591 +msgid "undo" +msgstr "撤销" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "删除文件出错。" + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n 文件夹" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n个文件" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "{dirs} 和 {files}" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "上传 %n 个文件" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "您的存储空间已满,文件将无法更新或同步!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的存储空间即将用完 ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "加密应用被启用了,但是你的加密密钥没有初始化,请重新登出登录系统一次。" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "无效的私有密钥。请到您的个人配置里去更新私有密钥,来恢复对加密文件的访问。" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." -msgstr "" +msgstr "加密是被禁用的,但是您的文件还是被加密了。请到您的个人配置里设置文件加密选项。" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" -msgstr "" +msgstr "移动文件错误" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "错误" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "名称" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "大小" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "修改日期" #: lib/app.php:60 msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" +msgstr "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "%s 不能被重命名" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "上传" @@ -342,69 +350,69 @@ msgstr "ZIP 文件的最大输入大小" msgid "Save" msgstr "保存" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "新建" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" -msgstr "" +msgstr "创建文本文件" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "文本文件" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "添加文件夹" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "文件夹" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "来自链接" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "已删除文件" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "取消上传" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "您没有权限来上传湖州哦和创建文件" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "这里还什么都没有。上传些东西吧!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "下载" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "删除" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "上传文件过大" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您正尝试上传的文件超过了此服务器可以上传的最大容量限制" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "文件正在被扫描,请稍候。" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "当前扫描" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index bd66314a7c..ebd97ad4d8 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,18 +83,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -102,9 +102,9 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "保存中" +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 935872a3fc..09e54dc720 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "权限已授予。" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "配置Dropbox存储时出错" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "授权" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "请提供有效的Dropbox应用key和secret" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "配置Google Drive存储时出错" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:516 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 "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "用户" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "删除" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "启用用户外部存储" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "允许用户挂载自有外部存储" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL根证书" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "导入根证书" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 94907e444c..3eb9563a06 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Martin Liu , 2014 # waterone , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,9 +19,13 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "这是一个密码保护的共享" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." @@ -54,32 +59,16 @@ msgstr "共享已禁用" msgid "For more info, please ask the person who sent this link." msgstr "欲知详情,请联系发给你链接的人。" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s与您共享了%s文件夹" - -#: templates/public.php:21 -#, php-format -msgid "%s shared the file %s with you" -msgstr "%s与您共享了%s文件" - -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "下载" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "上传" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "取消上传" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "没有预览" - -#: templates/public.php:99 -msgid "Direct link" +msgid "shared by %s" msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "直接链接" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 07256e5e8c..4eeeb5d1f8 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "无法彻底删除文件%s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "无法恢复%s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "错误" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "已恢复" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "这里没有东西. 你的回收站是空的!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "名称" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "恢复" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "已删除" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "删除" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "已删除文件" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index e94009a873..fa2d9750d7 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Hawy , 2014 +# Martin Liu , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-02-26 09:42+0000\n" +"Last-Translator: Hawy \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,22 +24,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "无法恢复: %s" -#: js/versions.js:7 +#: js/versions.js:14 msgid "Versions" msgstr "版本" -#: js/versions.js:53 +#: js/versions.js:60 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "无法恢复 {file} 到 {timestamp} 的版本。" -#: js/versions.js:79 +#: js/versions.js:87 msgid "More versions..." -msgstr "" +msgstr "更多版本..." -#: js/versions.js:116 +#: js/versions.js:125 msgid "No other versions available" -msgstr "" +msgstr "无其他版本可用" -#: js/versions.js:149 +#: js/versions.js:155 msgid "Restore" msgstr "恢复" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 8dd911abea..891ace82c5 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -4,15 +4,17 @@ # # Translators: # Charlie Mak , 2013 +# peishi fang , 2014 +# Martin Liu , 2014 # modokwang , 2013 # Xuetian Weng , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,41 +22,41 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "帮助" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "个人" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "设置" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "用户" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "管理" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "\"%s\" 升级失败。" #: private/avatar.php:66 msgid "Unknown filetype" @@ -64,15 +66,10 @@ msgstr "未知的文件类型" msgid "Invalid image" msgstr "无效的图像" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "您控制的web服务" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" @@ -95,74 +92,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "应用未提供 info.xml 文件" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" -msgstr "" +msgstr "应用程序目录已存在" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "无法创建应用程序文件夹。请修正权限。%s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "应用程序未启用" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "认证出错" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token 过期,请刷新页面。" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "文件" @@ -202,8 +203,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "你需要输入一个数据库中已有的账户或管理员账户。" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL 数据库用户名和/或密码无效" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -230,21 +231,21 @@ msgstr "冲突命令为:\"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL 用户 '%s'@'localhost' 已存在。" +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL 用户 '%s'@'%%' 已存在" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "建议从 MySQL 数据库中丢弃 Drop 此用户。" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -271,62 +272,68 @@ msgstr "请设置一个管理员用户名。" msgid "Set an admin password." msgstr "请设置一个管理员密码。" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "请认真检查安装指南." -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "无法找到分类 \"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "秒前" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "今天" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "昨天" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "上月" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "去年" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 75e9691e0d..4d3417f744 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -3,18 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Martin Liu , 2014 +# mozillazg , 2014 # m13253 , 2013 # waterone , 2013 # modokwang , 2013 # Xuetian Weng , 2013 -# zhangmin , 2013 +# min zhang , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,6 +24,48 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "加密" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "无法从应用商店载入列表" @@ -33,11 +77,11 @@ msgstr "认证出错" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "您的全名已修改。" #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "无法修改全名" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -91,11 +135,11 @@ msgstr "无法更新 app。" #: changepassword/controller.php:20 msgid "Wrong password" -msgstr "" +msgstr "错误密码" #: changepassword/controller.php:42 msgid "No user supplied" -msgstr "" +msgstr "没有满足的用户" #: changepassword/controller.php:74 msgid "" @@ -116,64 +160,92 @@ msgstr "" #: changepassword/controller.php:92 changepassword/controller.php:103 msgid "Unable to change password" +msgstr "不能更改密码" + +#: js/admin.js:73 +msgid "Sending..." msgstr "" -#: js/apps.js:43 +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "用户文档" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "更新至 {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "禁用" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "开启" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "请稍等...." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "禁用 app 时出错" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "启用 app 时出错" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "正在更新...." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "更新 app 时出错" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "错误" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "更新" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "已更新" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "正在解密文件... 请稍等,可能需要一些时间。" -#: js/personal.js:287 -msgid "Saving..." -msgstr "保存中" - #: js/users.js:47 msgid "deleted" msgstr "已经删除" @@ -186,75 +258,99 @@ msgstr "撤销" msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "组" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "组管理员" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "删除" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "添加组" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "创建用户出错" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "必须提供合法的密码" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "警告:用户 \"{user}\" 的家目录已存在" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "简体中文" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "所有(灾难性问题,错误,警告,信息,调试)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "信息,警告,错误和灾难性问题" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "警告,错误和灾难性问题" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "错误和灾难性问题" #: templates/admin.php:12 msgid "Fatal issues only" +msgstr "仅灾难性问题" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -263,68 +359,68 @@ msgid "" "root." msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "设置警告" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "请认真检查安装指南." -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "模块'文件信息'丢失" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果." -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" -msgstr "" +msgstr "您的 PHP 版本不是最新版" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "本地化无法工作" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "因特网连接无法工作" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -333,118 +429,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "每个页面加载后执行一个任务" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "" +msgstr "使用系统 cron 服务每15分钟调用一次 cron.php 文件。" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "共享" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "启用共享API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "允许应用软件使用共享API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接公开共享项目" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "允许公开上传" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "用户可让其他人上传到他的公开共享文件夹" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" -msgstr "" +msgstr "允许邮件通知" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" -msgstr "" +msgstr "允许用户为共享的文件发送邮件通知" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "安全" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "强制客户端通过加密连接连接到%s。" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL." -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "日志" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "更多" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "更少" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "版本" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "由ownCloud社区开发, 源代码AGPL许可证下发布。" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "添加应用" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "更多应用" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "选择一个应用" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "查看在 app.owncloud.com 的应用程序页面" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-核准: " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "用户文档" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "管理员文档" @@ -511,7 +655,7 @@ msgstr "再次显示首次运行向导" msgid "You have used %s of the available %s" msgstr "你已使用 %s,有效空间 %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "密码" @@ -523,151 +667,149 @@ msgstr "密码已修改" msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "新密码" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "全名" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "填写电子邮件地址以启用密码恢复功能" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "联系人图片" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" -msgstr "" +msgstr "上传新的" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" -msgstr "" +msgstr "从文件中选择一个新的" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" -msgstr "" +msgstr "移除图片" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." +msgstr "您的头像由您的原始账户所提供。" + +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "" - -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "语言" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" -msgstr "" +msgstr "使用这个地址 通过 WebDAV 访问您的文件" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "加密" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "登录密码" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "解密所有文件" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "登录名称" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "创建" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "管理恢复密码" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "输入恢复密码来在更改密码的时候恢复用户文件" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "默认存储" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "请输入存储限额 (ex: \"512 MB\" or \"12 GB\")" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "无限" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "其它" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "用户名" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "存储" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "更改全名" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "设置新密码" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "默认" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 593b32a237..0cae454006 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Martin Liu , 2014 # modokwang , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -87,43 +88,43 @@ msgstr "成功" msgid "Error" msgstr "错误" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "选择分组" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "连接测试成功" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "连接测试失败" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的想要删除当前服务器配置吗?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "确认删除" @@ -139,11 +140,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -161,7 +162,7 @@ msgstr "帮助" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -197,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -265,7 +266,7 @@ msgstr "您可以在高级选项卡里为用户和组指定Base DN" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -284,7 +285,7 @@ msgstr "返回" #: templates/part.wizardcontrols.php:8 msgid "Continue" -msgstr "" +msgstr "继续" #: templates/settings.php:11 msgid "" @@ -331,7 +332,7 @@ msgstr "禁用主服务器" #: templates/settings.php:25 msgid "Only connect to the replica server." -msgstr "" +msgstr "只能连接到复制服务器" #: templates/settings.php:26 msgid "Case insensitve LDAP server (Windows)" @@ -408,41 +409,51 @@ msgstr "群组搜索属性" msgid "Group-Member association" msgstr "组成员关联" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "特殊属性" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "配额字段" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "默认配额" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "字节数" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "电邮字段" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "用户主目录命名规则" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "将用户名称留空(默认)。否则指定一个LDAP/AD属性" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "内部用户名" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -458,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "内部用户名属性:" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "超越UUID检测" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -477,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "用户名-LDAP用户映射" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -503,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "清除用户-LDAP用户映射" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "清除组用户-LDAP级映射" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 09b9c5cfc6..f68c469430 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,7 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -72,131 +67,135 @@ msgstr "" msgid "No crop data provided" msgstr "" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "星期日" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "星期一" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "星期二" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "星期三" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "星期四" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "星期五" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "星期六" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "一月" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "二月" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "三月" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "四月" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "五月" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "六月" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "七月" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "八月" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "九月" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "十月" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "十一月" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "十二月" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "設定" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "今日" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "昨日" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "前一月" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "個月之前" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "" @@ -263,6 +262,26 @@ msgstr "" msgid "Error loading file exists template" msgstr "" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "已分享" @@ -271,12 +290,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -288,123 +307,123 @@ msgstr "取消分享時發生錯誤" msgid "Error while changing permissions" msgstr "更改權限時發生錯誤" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner}與你及群組的分享" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner}與你的分享" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "密碼" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "傳送" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "設定分享期限" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "分享期限" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "以電郵分享" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "找不到" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "取消分享" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "新增" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "更新" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "刪除" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "分享" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "郵件已傳" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "" @@ -451,11 +470,17 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "更新成功, 正" -#: lostpassword/controller.php:62 +#: lostpassword/controller.php:70 #, php-format msgid "%s password reset" msgstr "" +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" msgstr "請用以下連結重設你的密碼: {link}" @@ -475,8 +500,8 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "你將收到一封電郵" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "用戶名稱" @@ -520,7 +545,7 @@ msgstr "個人" msgid "Users" msgstr "用戶" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "軟件" @@ -630,49 +655,47 @@ msgstr "" msgid "Create an admin account" msgstr "建立管理員帳戶" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "進階" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "將被使用" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "資料庫帳戶" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "" @@ -688,7 +711,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "登出" @@ -714,27 +737,27 @@ msgstr "" msgid "Please contact your administrator." msgstr "" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "忘記密碼" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "記住" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "登入" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" msgstr "" #: templates/singleuser.user.php:3 diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index cb68c72f40..7382af274b 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,36 +27,48 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." +#, php-format +msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "" @@ -64,233 +76,228 @@ msgstr "" msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "文件" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:239 -msgid "Not enough space available" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "分享" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:72 -msgid "'.' is an invalid file name." +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "錯誤" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "名稱" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "" @@ -298,12 +305,12 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "上傳" @@ -339,69 +346,69 @@ msgstr "" msgid "Save" msgstr "儲存" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "下載" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "刪除" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index 7ae52b08cc..e70443ec44 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:08+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,18 +80,18 @@ msgid "" "administrator" msgstr "" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "" @@ -99,8 +99,8 @@ msgstr "" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." msgstr "" #: templates/invalid_private_key.php:8 diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 5bd454412d..a65b3d8e31 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,40 +17,44 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:465 +#: lib/config.php:516 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -102,22 +106,22 @@ msgid "Users" msgstr "用戶" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "刪除" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" +msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 2fceb799c3..2061b0b7dc 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,10 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "" @@ -53,32 +57,16 @@ msgstr "" msgid "For more info, please ask the person who sent this link." msgstr "" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" +msgid "shared by %s" msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" +msgid "Download %s" msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "下載" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "上傳" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 173849a4d3..48a2e1f28e 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,44 +17,48 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "錯誤" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "名稱" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "刪除" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 752cf5e22c..6219708a09 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,38 +17,38 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "幫助" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "個人" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "設定" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "用戶" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "管理" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -61,15 +61,10 @@ msgstr "" msgid "Invalid image" msgstr "" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "" @@ -92,74 +87,78 @@ msgid "" "administrator." msgstr "" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "文件" @@ -199,7 +198,7 @@ msgid "You need to enter either an existing account or the administrator." msgstr "" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" +msgid "MySQL/MariaDB username and/or password not valid" msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 @@ -227,20 +226,20 @@ msgstr "" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" +msgid "Drop this user from MySQL/MariaDB" msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." +msgid "Drop this user from MySQL/MariaDB." msgstr "" #: private/setup/oci.php:34 @@ -268,62 +267,68 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "今日" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "昨日" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "前一月" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index b11bddc20a..a526451370 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,6 +17,48 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "加密" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "" @@ -113,60 +155,88 @@ msgstr "" msgid "Unable to change password" msgstr "" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "" -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "錯誤" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "" -#: js/personal.js:266 -msgid "Decrypting files... Please wait, this can take some time." +#: js/personal.js:274 +msgid "Very weak password" msgstr "" -#: js/personal.js:287 -msgid "Saving..." +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 +msgid "Decrypting files... Please wait, this can take some time." msgstr "" #: js/users.js:47 @@ -181,40 +251,40 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "群組" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "刪除" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "" @@ -238,18 +308,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 -msgid "Security Warning" +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" msgstr "" #: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -258,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -328,118 +422,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:41 -msgid "-licensed by " +#: templates/apps.php:50 +msgid "See application website" msgstr "" -#: templates/help.php:4 -msgid "User Documentation" +#: templates/apps.php:52 +msgid "-licensed by " msgstr "" #: templates/help.php:6 @@ -506,7 +648,7 @@ msgstr "" msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "密碼" @@ -518,151 +660,149 @@ msgstr "" msgid "Unable to change your password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "新密碼" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "電郵" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" msgstr "" -#: templates/personal.php:86 +#: templates/personal.php:96 msgid "Profile picture" msgstr "" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" +#: templates/personal.php:111 +msgid "Cancel" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "加密" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "用戶名稱" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 8ba0903b18..a99086c970 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,43 +86,43 @@ msgstr "成功" msgid "Error" msgstr "錯誤" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "" @@ -138,11 +138,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -160,7 +160,7 @@ msgstr "幫助" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -196,7 +196,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -264,7 +264,7 @@ msgstr "" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -407,41 +407,51 @@ msgstr "" msgid "Group-Member association" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -457,15 +467,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -476,19 +486,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -502,10 +512,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 6477db46c3..407482e615 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,12 +19,7 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:119 ajax/share.php:198 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%s 與您分享了 %s" - -#: ajax/share.php:169 +#: ajax/share.php:112 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "無法寄送郵件給這些使用者:%s" @@ -74,131 +69,135 @@ msgstr "沒有臨時用的大頭貼,請再試一次" msgid "No crop data provided" msgstr "未設定剪裁" -#: js/config.php:32 +#: js/config.php:36 msgid "Sunday" msgstr "週日" -#: js/config.php:33 +#: js/config.php:37 msgid "Monday" msgstr "週一" -#: js/config.php:34 +#: js/config.php:38 msgid "Tuesday" msgstr "週二" -#: js/config.php:35 +#: js/config.php:39 msgid "Wednesday" msgstr "週三" -#: js/config.php:36 +#: js/config.php:40 msgid "Thursday" msgstr "週四" -#: js/config.php:37 +#: js/config.php:41 msgid "Friday" msgstr "週五" -#: js/config.php:38 +#: js/config.php:42 msgid "Saturday" msgstr "週六" -#: js/config.php:43 +#: js/config.php:47 msgid "January" msgstr "一月" -#: js/config.php:44 +#: js/config.php:48 msgid "February" msgstr "二月" -#: js/config.php:45 +#: js/config.php:49 msgid "March" msgstr "三月" -#: js/config.php:46 +#: js/config.php:50 msgid "April" msgstr "四月" -#: js/config.php:47 +#: js/config.php:51 msgid "May" msgstr "五月" -#: js/config.php:48 +#: js/config.php:52 msgid "June" msgstr "六月" -#: js/config.php:49 +#: js/config.php:53 msgid "July" msgstr "七月" -#: js/config.php:50 +#: js/config.php:54 msgid "August" msgstr "八月" -#: js/config.php:51 +#: js/config.php:55 msgid "September" msgstr "九月" -#: js/config.php:52 +#: js/config.php:56 msgid "October" msgstr "十月" -#: js/config.php:53 +#: js/config.php:57 msgid "November" msgstr "十一月" -#: js/config.php:54 +#: js/config.php:58 msgid "December" msgstr "十二月" -#: js/js.js:398 +#: js/js.js:458 msgid "Settings" msgstr "設定" -#: js/js.js:869 +#: js/js.js:496 +msgid "Saving..." +msgstr "" + +#: js/js.js:992 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:870 +#: js/js.js:993 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:871 +#: js/js.js:994 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:872 +#: js/js.js:995 msgid "today" msgstr "今天" -#: js/js.js:873 +#: js/js.js:996 msgid "yesterday" msgstr "昨天" -#: js/js.js:874 +#: js/js.js:997 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:875 +#: js/js.js:998 msgid "last month" msgstr "上個月" -#: js/js.js:876 +#: js/js.js:999 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:877 +#: js/js.js:1000 msgid "months ago" msgstr "幾個月前" -#: js/js.js:878 +#: js/js.js:1001 msgid "last year" msgstr "去年" -#: js/js.js:879 +#: js/js.js:1002 msgid "years ago" msgstr "幾年前" @@ -265,6 +264,26 @@ msgstr "(已選 {count} 項)" msgid "Error loading file exists template" msgstr "載入檔案存在樣板出錯" +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" msgstr "已分享" @@ -273,12 +292,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:707 -#: js/share.js:719 templates/installation.php:10 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:747 +#: js/share.js:160 js/share.js:755 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -290,123 +309,123 @@ msgstr "取消分享時發生錯誤" msgid "Error while changing permissions" msgstr "修改權限時發生錯誤" -#: js/share.js:187 +#: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" msgstr "由 {owner} 分享給您和 {group}" -#: js/share.js:189 +#: js/share.js:190 msgid "Shared with you by {owner}" msgstr "{owner} 已經和您分享" -#: js/share.js:213 +#: js/share.js:214 msgid "Share with user or group …" msgstr "與用戶或群組分享" -#: js/share.js:219 +#: js/share.js:220 msgid "Share link" msgstr "分享連結" -#: js/share.js:222 +#: js/share.js:223 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:224 templates/installation.php:58 templates/login.php:38 +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" msgstr "密碼" -#: js/share.js:229 +#: js/share.js:230 msgid "Allow Public Upload" msgstr "允許任何人上傳" -#: js/share.js:233 +#: js/share.js:234 msgid "Email link to person" msgstr "將連結 email 給別人" -#: js/share.js:234 +#: js/share.js:235 msgid "Send" msgstr "寄出" -#: js/share.js:239 +#: js/share.js:240 msgid "Set expiration date" msgstr "指定到期日" -#: js/share.js:240 +#: js/share.js:241 msgid "Expiration date" msgstr "到期日" -#: js/share.js:275 +#: js/share.js:277 msgid "Share via email:" msgstr "透過電子郵件分享:" -#: js/share.js:278 +#: js/share.js:280 msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:322 js/share.js:359 +#: js/share.js:324 js/share.js:363 msgid "group" msgstr "群組" -#: js/share.js:333 +#: js/share.js:335 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:375 +#: js/share.js:379 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:397 +#: js/share.js:401 msgid "Unshare" msgstr "取消分享" -#: js/share.js:405 +#: js/share.js:409 msgid "notify by email" msgstr "以 email 通知" -#: js/share.js:408 +#: js/share.js:412 msgid "can edit" msgstr "可編輯" -#: js/share.js:410 +#: js/share.js:414 msgid "access control" msgstr "存取控制" -#: js/share.js:413 +#: js/share.js:417 msgid "create" msgstr "建立" -#: js/share.js:416 +#: js/share.js:420 msgid "update" msgstr "更新" -#: js/share.js:419 +#: js/share.js:423 msgid "delete" msgstr "刪除" -#: js/share.js:422 +#: js/share.js:426 msgid "share" msgstr "分享" -#: js/share.js:694 +#: js/share.js:698 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:707 +#: js/share.js:711 msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:719 +#: js/share.js:723 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:734 +#: js/share.js:742 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:745 +#: js/share.js:753 msgid "Email sent" msgstr "Email 已寄出" -#: js/share.js:769 +#: js/share.js:777 msgid "Warning" msgstr "警告" @@ -453,11 +472,17 @@ msgstr "升級失敗,請將此問題回報 您確定填入的電子郵件地址或是帳號名 msgid "You will receive a link to reset your password via Email." msgstr "重設密碼的連結將會寄到您的電子郵件信箱。" -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:52 -#: templates/login.php:31 +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 msgid "Username" msgstr "使用者名稱" @@ -522,7 +547,7 @@ msgstr "個人" msgid "Users" msgstr "使用者" -#: strings.php:7 templates/layout.user.php:111 +#: strings.php:7 templates/layout.user.php:116 msgid "Apps" msgstr "應用程式" @@ -632,49 +657,47 @@ msgstr "請參考說明文件以瞭解如 msgid "Create an admin account" msgstr "建立一個管理者帳號" -#: templates/installation.php:67 -msgid "Advanced" -msgstr "進階" +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Data folder" msgstr "資料儲存位置" -#: templates/installation.php:86 +#: templates/installation.php:90 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:91 templates/installation.php:103 -#: templates/installation.php:114 templates/installation.php:125 -#: templates/installation.php:137 +#: templates/installation.php:94 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:149 +#: templates/installation.php:109 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:156 +#: templates/installation.php:118 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:161 +#: templates/installation.php:123 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:169 +#: templates/installation.php:132 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:176 +#: templates/installation.php:140 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finish setup" msgstr "完成設定" -#: templates/installation.php:185 +#: templates/installation.php:150 msgid "Finishing …" msgstr "即將完成…" @@ -690,7 +713,7 @@ msgstr "" msgid "%s is available. Get more information on how to update." msgstr "%s 已經釋出,瞭解更多資訊以進行更新。" -#: templates/layout.user.php:72 templates/singleuser.user.php:8 +#: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" msgstr "登出" @@ -716,28 +739,28 @@ msgstr "伺服器端認證失敗!" msgid "Please contact your administrator." msgstr "請聯絡系統管理員。" -#: templates/login.php:44 +#: templates/login.php:46 msgid "Lost your password?" msgstr "忘記密碼?" -#: templates/login.php:49 +#: templates/login.php:51 msgid "remember" msgstr "記住" -#: templates/login.php:52 +#: templates/login.php:54 msgid "Log in" msgstr "登入" -#: templates/login.php:58 +#: templates/login.php:60 msgid "Alternative Logins" msgstr "其他登入方法" #: templates/mail.php:15 #, php-format msgid "" -"Hey there,

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

" -msgstr "嗨,

%s 和你分享了 %s ,到這裡看它

" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 6ab2b48b56..c2418aa112 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: 2014-01-04 01:55-0500\n" -"PO-Revision-Date: 2014-01-03 12:00+0000\n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05:54+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" @@ -29,36 +29,48 @@ msgstr "無法移動 %s ,同名的檔案已經存在" msgid "Could not move %s" msgstr "無法移動 %s" -#: ajax/newfile.php:56 js/files.js:74 +#: ajax/newfile.php:57 js/files.js:98 msgid "File name cannot be empty." msgstr "檔名不能為空" #: ajax/newfile.php:62 -msgid "File name must not contain \"/\". Please choose a different name." -msgstr "檔名不能包含 \"/\" ,請選其他名字" +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" -#: ajax/newfile.php:72 ajax/newfolder.php:37 lib/app.php:67 +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s 已經被使用於資料夾 %s ,請換一個名字" -#: ajax/newfile.php:81 +#: ajax/newfile.php:96 msgid "Not a valid source" msgstr "不是有效的來源" -#: ajax/newfile.php:86 +#: ajax/newfile.php:101 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:103 +#: ajax/newfile.php:118 #, php-format msgid "Error while downloading %s to %s" msgstr "下載 %s 到 %s 失敗" -#: ajax/newfile.php:140 +#: ajax/newfile.php:155 msgid "Error when creating the file" msgstr "建立檔案失敗" @@ -66,233 +78,228 @@ msgstr "建立檔案失敗" msgid "Folder name cannot be empty." msgstr "資料夾名稱不能留空" -#: ajax/newfolder.php:27 -msgid "Folder name must not contain \"/\". Please choose a different name." -msgstr "資料夾名稱不能包含 \"/\" ,請選其他名字" - -#: ajax/newfolder.php:56 +#: ajax/newfolder.php:65 msgid "Error when creating the folder" msgstr "建立資料夾失敗" -#: ajax/upload.php:18 ajax/upload.php:50 +#: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." msgstr "無法設定上傳目錄" -#: ajax/upload.php:27 +#: ajax/upload.php:29 msgid "Invalid Token" msgstr "無效的 token" -#: ajax/upload.php:64 +#: ajax/upload.php:67 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳,原因未知" -#: ajax/upload.php:71 +#: ajax/upload.php:74 msgid "There is no error, the file uploaded with success" msgstr "一切都順利,檔案上傳成功" -#: ajax/upload.php:72 +#: ajax/upload.php:75 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:74 +#: ajax/upload.php:77 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:77 +#: ajax/upload.php:80 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:96 +#: ajax/upload.php:99 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:127 ajax/upload.php:154 -msgid "Upload failed. Could not get file info." -msgstr "上傳失敗,無法取得檔案資訊" - -#: ajax/upload.php:144 +#: ajax/upload.php:156 msgid "Upload failed. Could not find uploaded file" msgstr "上傳失敗,找不到上傳的檔案" -#: ajax/upload.php:172 +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "上傳失敗,無法取得檔案資訊" + +#: ajax/upload.php:185 msgid "Invalid directory." msgstr "無效的資料夾" -#: appinfo/app.php:11 +#: appinfo/app.php:11 js/filelist.js:14 msgid "Files" msgstr "檔案" -#: js/file-upload.js:228 +#: js/file-upload.js:247 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "因為 {filename} 是個目錄或是大小為零,所以無法上傳" -#: js/file-upload.js:239 -msgid "Not enough space available" -msgstr "沒有足夠的可用空間" +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" -#: js/file-upload.js:306 +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:338 msgid "Upload cancelled." msgstr "上傳已取消" -#: js/file-upload.js:344 +#: js/file-upload.js:383 msgid "Could not get result from server." msgstr "無法從伺服器取回結果" -#: js/file-upload.js:436 +#: js/file-upload.js:475 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中,離開此頁面將會取消上傳。" -#: js/file-upload.js:523 +#: js/file-upload.js:562 msgid "URL cannot be empty" msgstr "URL 不能留空" -#: js/file-upload.js:527 js/filelist.js:377 +#: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" msgstr "在家目錄中不能使用「共享」作為檔名" -#: js/file-upload.js:529 js/filelist.js:379 +#: js/file-upload.js:568 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/file-upload.js:595 +#: js/file-upload.js:634 msgid "Could not create file" msgstr "無法建立檔案" -#: js/file-upload.js:611 +#: js/file-upload.js:650 msgid "Could not create folder" msgstr "無法建立資料夾" -#: js/file-upload.js:661 +#: js/file-upload.js:700 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:125 +#: js/fileactions.js:149 msgid "Share" msgstr "分享" -#: js/fileactions.js:137 +#: js/fileactions.js:162 msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:194 +#: js/fileactions.js:223 msgid "Rename" msgstr "重新命名" -#: js/filelist.js:69 js/filelist.js:72 js/filelist.js:889 +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 msgid "Pending" msgstr "等候中" -#: js/filelist.js:405 +#: js/filelist.js:456 msgid "Could not rename file" msgstr "無法重新命名" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:539 +#: js/filelist.js:591 msgid "undo" msgstr "復原" -#: js/filelist.js:591 +#: js/filelist.js:662 msgid "Error deleting file." msgstr "" -#: js/filelist.js:609 js/filelist.js:683 js/files.js:631 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/filelist.js:610 js/filelist.js:684 js/files.js:637 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" -#: js/filelist.js:617 +#: js/filelist.js:695 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:828 js/filelist.js:866 +#: js/filelist.js:931 js/filelist.js:969 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個檔案正在上傳" -#: js/files.js:72 -msgid "'.' is an invalid file name." -msgstr "'.' 是不合法的檔名" +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" -#: js/files.js:81 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" - -#: js/files.js:93 +#: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "您的儲存空間已滿,沒有辦法再更新或是同步檔案!" -#: js/files.js:97 +#: js/files.js:121 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的儲存空間快要滿了 ({usedSpacePercent}%)" -#: js/files.js:110 +#: js/files.js:134 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "檔案加密已啓用,但是您的金鑰尚未初始化,請重新登入一次" -#: js/files.js:114 +#: js/files.js:138 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "無效的檔案加密私鑰,請在個人設定中更新您的私鑰密語以存取加密的檔案。" -#: js/files.js:118 +#: js/files.js:142 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。" -#: js/files.js:349 +#: js/files.js:379 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error moving file" msgstr "移動檔案失敗" -#: js/files.js:558 js/files.js:596 +#: js/files.js:610 js/files.js:654 msgid "Error" msgstr "錯誤" -#: js/files.js:613 templates/index.php:56 +#: js/files.js:672 templates/index.php:68 msgid "Name" msgstr "名稱" -#: js/files.js:614 templates/index.php:68 +#: js/files.js:673 templates/index.php:80 msgid "Size" msgstr "大小" -#: js/files.js:615 templates/index.php:70 +#: js/files.js:674 templates/index.php:82 msgid "Modified" msgstr "修改時間" @@ -300,12 +307,12 @@ msgstr "修改時間" msgid "Invalid folder name. Usage of 'Shared' is reserved." msgstr "" -#: lib/app.php:101 +#: lib/app.php:111 #, php-format msgid "%s could not be renamed" msgstr "無法重新命名 %s" -#: lib/helper.php:11 templates/index.php:16 +#: lib/helper.php:14 templates/index.php:23 msgid "Upload" msgstr "上傳" @@ -341,69 +348,69 @@ msgstr "ZIP 壓縮前的原始大小限制" msgid "Save" msgstr "儲存" -#: templates/index.php:5 +#: templates/index.php:6 msgid "New" msgstr "新增" -#: templates/index.php:8 +#: templates/index.php:9 msgid "New text file" msgstr "" -#: templates/index.php:8 +#: templates/index.php:10 msgid "Text file" msgstr "文字檔" -#: templates/index.php:10 +#: templates/index.php:13 msgid "New folder" msgstr "新資料夾" -#: templates/index.php:10 +#: templates/index.php:14 msgid "Folder" msgstr "資料夾" -#: templates/index.php:12 +#: templates/index.php:17 msgid "From link" msgstr "從連結" -#: templates/index.php:29 +#: templates/index.php:41 msgid "Deleted files" msgstr "回收桶" -#: templates/index.php:34 +#: templates/index.php:46 msgid "Cancel upload" msgstr "取消上傳" -#: templates/index.php:40 +#: templates/index.php:52 msgid "You don’t have permission to upload or create files here" msgstr "您沒有權限在這裡上傳或建立檔案" -#: templates/index.php:45 +#: templates/index.php:57 msgid "Nothing in here. Upload something!" msgstr "這裡還沒有東西,上傳一些吧!" -#: templates/index.php:62 +#: templates/index.php:74 msgid "Download" msgstr "下載" -#: templates/index.php:73 templates/index.php:74 +#: templates/index.php:85 templates/index.php:86 msgid "Delete" msgstr "刪除" -#: templates/index.php:86 +#: templates/index.php:98 msgid "Upload too large" msgstr "上傳過大" -#: templates/index.php:88 +#: templates/index.php:100 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "您試圖上傳的檔案大小超過伺服器的限制。" -#: templates/index.php:93 +#: templates/index.php:105 msgid "Files are being scanned, please wait." msgstr "正在掃描檔案,請稍等。" -#: templates/index.php:96 +#: templates/index.php:108 msgid "Current scanning" msgstr "正在掃描" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index c61687e7fe..7ce86652c8 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-29 14:08-0500\n" -"PO-Revision-Date: 2013-11-29 19:09+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,18 +83,18 @@ msgid "" "administrator" msgstr "未知錯誤請檢查您的系統設定或是聯絡您的管理員" -#: hooks/hooks.php:59 +#: hooks/hooks.php:64 msgid "Missing requirements." msgstr "遺失必要條件。" -#: hooks/hooks.php:60 +#: hooks/hooks.php:65 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." msgstr "請確認已安裝 PHP 5.3.3 或是更新的版本以及 OpenSSL 也一併安裝在 PHP extension 裡面並啟用及設置完成。現在,加密功能是停用的。" -#: hooks/hooks.php:273 +#: hooks/hooks.php:295 msgid "Following users are not set up for encryption:" msgstr "以下的使用者無法設定加密:" @@ -102,9 +102,9 @@ msgstr "以下的使用者無法設定加密:" msgid "Initial encryption started... This can take some time. Please wait." msgstr "" -#: js/settings-admin.js:13 -msgid "Saving..." -msgstr "儲存中..." +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 16bf605635..b55ed7de36 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,40 +18,44 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 msgid "Access granted" msgstr "允許存取" -#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 msgid "Error configuring Dropbox storage" msgstr "設定 Dropbox 儲存時發生錯誤" -#: js/dropbox.js:65 js/google.js:86 +#: js/dropbox.js:68 js/google.js:89 msgid "Grant access" msgstr "允許存取" -#: js/dropbox.js:101 +#: js/dropbox.js:102 msgid "Please provide a valid Dropbox app key and secret." msgstr "請提供有效的 Dropbox app key 和 app secret 。" -#: js/google.js:42 js/google.js:121 +#: js/google.js:45 js/google.js:122 msgid "Error configuring Google Drive storage" msgstr "設定 Google Drive 儲存時發生錯誤" -#: lib/config.php:461 +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:512 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:516 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 "警告:PHP 並未啓用 FTP 的支援,因此無法掛載 FTP 分享,請洽您的系統管理員將其安裝並啓用。" -#: lib/config.php:468 +#: lib/config.php:519 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -103,22 +107,22 @@ msgid "Users" msgstr "使用者" #: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:155 templates/settings.php:156 msgid "Delete" msgstr "刪除" -#: templates/settings.php:129 +#: templates/settings.php:127 msgid "Enable User External Storage" msgstr "啓用使用者外部儲存" #: templates/settings.php:130 -msgid "Allow users to mount their own external storage" -msgstr "允許使用者自行掛載他們的外部儲存" +msgid "Allow users to mount the following external storage" +msgstr "" -#: templates/settings.php:141 +#: templates/settings.php:147 msgid "SSL root certificates" msgstr "SSL 根憑證" -#: templates/settings.php:159 +#: templates/settings.php:165 msgid "Import Root Certificate" msgstr "匯入根憑證" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index a80b4b29c6..f8b69a0c9a 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-15 22:54-0500\n" -"PO-Revision-Date: 2013-11-13 16:11+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,10 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + #: templates/authenticate.php:4 msgid "This share is password-protected" msgstr "這個分享有密碼保護" @@ -54,32 +58,16 @@ msgstr "分享功能已停用" msgid "For more info, please ask the person who sent this link." msgstr "請詢問告訴您此連結的人以瞭解更多" -#: templates/public.php:18 +#: templates/public.php:17 #, php-format -msgid "%s shared the folder %s with you" -msgstr "%s 和您分享了資料夾 %s " +msgid "shared by %s" +msgstr "" -#: templates/public.php:21 +#: templates/public.php:44 #, php-format -msgid "%s shared the file %s with you" -msgstr "%s 和您分享了檔案 %s" +msgid "Download %s" +msgstr "" -#: templates/public.php:29 templates/public.php:95 -msgid "Download" -msgstr "下載" - -#: templates/public.php:46 templates/public.php:49 -msgid "Upload" -msgstr "上傳" - -#: templates/public.php:59 -msgid "Cancel upload" -msgstr "取消上傳" - -#: templates/public.php:92 -msgid "No preview available for" -msgstr "無法預覽" - -#: templates/public.php:99 +#: templates/public.php:48 msgid "Direct link" msgstr "" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 77074528dd..ba2107490d 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-11-21 10:01-0500\n" -"PO-Revision-Date: 2013-11-16 07:44+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,44 +18,48 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:42 +#: ajax/delete.php:59 #, php-format msgid "Couldn't delete %s permanently" msgstr "無法永久刪除 %s" -#: ajax/undelete.php:42 +#: ajax/undelete.php:64 #, php-format msgid "Couldn't restore %s" msgstr "無法還原 %s" -#: js/trash.js:18 js/trash.js:44 js/trash.js:121 js/trash.js:149 +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 msgid "Error" msgstr "錯誤" -#: lib/trashbin.php:815 lib/trashbin.php:817 +#: lib/trashbin.php:852 lib/trashbin.php:854 msgid "restored" msgstr "已還原" -#: templates/index.php:8 +#: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" msgstr "您的回收桶是空的!" -#: templates/index.php:22 +#: templates/index.php:20 msgid "Name" msgstr "名稱" -#: templates/index.php:25 templates/index.php:27 +#: templates/index.php:23 templates/index.php:25 msgid "Restore" msgstr "還原" -#: templates/index.php:33 +#: templates/index.php:31 msgid "Deleted" msgstr "已刪除" -#: templates/index.php:36 templates/index.php:37 +#: templates/index.php:34 templates/index.php:35 msgid "Delete" msgstr "刪除" -#: templates/part.breadcrumb.php:9 +#: templates/part.breadcrumb.php:8 msgid "Deleted Files" msgstr "已刪除的檔案" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 00281d2b6d..71fa6ca98e 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# v998 , 2014 # pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,38 +19,38 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: private/app.php:243 +#: private/app.php:236 #, php-format msgid "" "App \"%s\" can't be installed because it is not compatible with this version" " of ownCloud." msgstr "無法安裝應用程式 %s 因為它和此版本的 ownCloud 不相容。" -#: private/app.php:255 +#: private/app.php:248 msgid "No app name specified" msgstr "沒有指定應用程式名稱" -#: private/app.php:360 +#: private/app.php:353 msgid "Help" msgstr "說明" -#: private/app.php:373 +#: private/app.php:366 msgid "Personal" msgstr "個人" -#: private/app.php:384 +#: private/app.php:377 msgid "Settings" msgstr "設定" -#: private/app.php:396 +#: private/app.php:389 msgid "Users" msgstr "使用者" -#: private/app.php:409 +#: private/app.php:402 msgid "Admin" msgstr "管理" -#: private/app.php:873 +#: private/app.php:875 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "升級失敗:%s" @@ -62,15 +63,10 @@ msgstr "未知的檔案類型" msgid "Invalid image" msgstr "無效的圖片" -#: private/defaults.php:34 +#: private/defaults.php:35 msgid "web services under your control" msgstr "由您控制的網路服務" -#: private/files.php:66 private/files.php:98 -#, php-format -msgid "cannot open \"%s\"" -msgstr "無法開啓 %s" - #: private/files.php:231 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" @@ -91,76 +87,80 @@ msgstr "選擇的檔案太大以致於無法產生壓縮檔。" msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." -msgstr "" +msgstr "請分割您的檔案後下載,或請詢問您的系統管理員。" -#: private/installer.php:63 +#: private/installer.php:64 msgid "No source specified when installing app" msgstr "沒有指定應用程式安裝來源" -#: private/installer.php:70 +#: private/installer.php:71 msgid "No href specified when installing app from http" msgstr "從 http 安裝應用程式,找不到 href 屬性" -#: private/installer.php:75 +#: private/installer.php:76 msgid "No path specified when installing app from local file" msgstr "從本地檔案安裝應用程式時沒有指定路徑" -#: private/installer.php:89 +#: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" msgstr "不支援 %s 格式的壓縮檔" -#: private/installer.php:103 +#: private/installer.php:104 msgid "Failed to open archive when installing app" msgstr "安裝應用程式時無法開啓壓縮檔" -#: private/installer.php:125 +#: private/installer.php:126 msgid "App does not provide an info.xml file" msgstr "應用程式沒有提供 info.xml 檔案" -#: private/installer.php:131 +#: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" msgstr "無法安裝應用程式因為在當中找到危險的代碼" -#: private/installer.php:140 +#: private/installer.php:141 msgid "" "App can't be installed because it is not compatible with this version of " "ownCloud" msgstr "無法安裝應用程式因為它和此版本的 ownCloud 不相容。" -#: private/installer.php:146 +#: private/installer.php:147 msgid "" "App can't be installed because it contains the true tag " "which is not allowed for non shipped apps" msgstr "無法安裝應用程式,因為它包含了 true 標籤,在未發行的應用程式當中這是不允許的" -#: private/installer.php:159 +#: private/installer.php:160 msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" msgstr "無法安裝應用程式,因為它在 info.xml/version 宣告的版本與 app store 當中記載的版本不同" -#: private/installer.php:169 +#: private/installer.php:170 msgid "App directory already exists" msgstr "應用程式目錄已經存在" -#: private/installer.php:182 +#: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" msgstr "無法建立應用程式目錄,請檢查權限:%s" -#: private/json.php:28 +#: private/json.php:29 msgid "Application is not enabled" msgstr "應用程式未啟用" -#: private/json.php:39 private/json.php:62 private/json.php:73 +#: private/json.php:40 private/json.php:63 private/json.php:88 msgid "Authentication error" msgstr "認證錯誤" -#: private/json.php:51 +#: private/json.php:52 msgid "Token expired. Please reload page." msgstr "Token 過期,請重新整理頁面。" +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" msgstr "檔案" @@ -200,8 +200,8 @@ msgid "You need to enter either an existing account or the administrator." msgstr "您必須輸入一個現有的帳號或管理員帳號。" #: private/setup/mysql.php:12 -msgid "MySQL username and/or password not valid" -msgstr "MySQL 用戶名和/或密碼無效" +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,21 +228,21 @@ msgstr "有問題的指令是:\"%s\"" #: private/setup/mysql.php:85 #, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "MySQL 使用者 '%s'@'localhost' 已經存在。" +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" #: private/setup/mysql.php:86 -msgid "Drop this user from MySQL" -msgstr "在 MySQL 移除這個使用者" +msgid "Drop this user from MySQL/MariaDB" +msgstr "" #: private/setup/mysql.php:91 #, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "MySQL 使用者 '%s'@'%%' 已經存在" +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" #: private/setup/mysql.php:92 -msgid "Drop this user from MySQL." -msgstr "在 MySQL 移除這個使用者。" +msgid "Drop this user from MySQL/MariaDB." +msgstr "" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -269,62 +269,68 @@ msgstr "設定管理員帳號。" msgid "Set an admin password." msgstr "設定管理員密碼。" -#: private/setup.php:195 +#: private/setup.php:198 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: private/setup.php:196 +#: private/setup.php:199 #, php-format msgid "Please double check the installation guides." msgstr "請參考安裝指南。" -#: private/tags.php:194 +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "找不到分類:\"%s\"" -#: private/template/functions.php:130 +#: private/template/functions.php:133 msgid "seconds ago" msgstr "幾秒前" -#: private/template/functions.php:131 +#: private/template/functions.php:134 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: private/template/functions.php:132 +#: private/template/functions.php:135 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: private/template/functions.php:133 +#: private/template/functions.php:136 msgid "today" msgstr "今天" -#: private/template/functions.php:134 +#: private/template/functions.php:137 msgid "yesterday" msgstr "昨天" -#: private/template/functions.php:136 +#: private/template/functions.php:139 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: private/template/functions.php:138 +#: private/template/functions.php:141 msgid "last month" msgstr "上個月" -#: private/template/functions.php:139 +#: private/template/functions.php:142 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: private/template/functions.php:141 +#: private/template/functions.php:144 msgid "last year" msgstr "去年" -#: private/template/functions.php:142 +#: private/template/functions.php:145 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 05744d16b7..7f4cb4726a 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-04 18:12-0500\n" -"PO-Revision-Date: 2013-12-04 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,6 +18,48 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:280 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +msgid "Encryption" +msgstr "加密" + +#: admin/controller.php:120 templates/admin.php:317 +msgid "Authentification method" +msgstr "" + #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" msgstr "無法從 App Store 讀取清單" @@ -114,62 +156,90 @@ msgstr "後端不支援變更密碼,但成功更新使用者的加密金鑰" msgid "Unable to change password" msgstr "無法修改密碼" -#: js/apps.js:43 +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "用戶說明文件" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 msgid "Update to {appversion}" msgstr "更新至 {appversion}" -#: js/apps.js:49 js/apps.js:82 js/apps.js:110 +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 msgid "Disable" msgstr "停用" -#: js/apps.js:49 js/apps.js:90 js/apps.js:103 js/apps.js:119 +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 msgid "Enable" msgstr "啟用" -#: js/apps.js:71 +#: js/apps.js:95 msgid "Please wait...." msgstr "請稍候..." -#: js/apps.js:79 js/apps.js:80 js/apps.js:101 +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" msgstr "停用應用程式錯誤" -#: js/apps.js:100 js/apps.js:114 js/apps.js:115 +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" msgstr "啓用應用程式錯誤" -#: js/apps.js:125 +#: js/apps.js:149 msgid "Updating...." msgstr "更新中..." -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error while updating app" msgstr "更新應用程式錯誤" -#: js/apps.js:128 +#: js/apps.js:152 msgid "Error" msgstr "錯誤" -#: js/apps.js:129 templates/apps.php:43 +#: js/apps.js:153 templates/apps.php:54 msgid "Update" msgstr "更新" -#: js/apps.js:132 +#: js/apps.js:156 msgid "Updated" msgstr "已更新" -#: js/personal.js:220 +#: js/personal.js:244 msgid "Select a profile picture" msgstr "選擇大頭貼" -#: js/personal.js:266 +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." msgstr "檔案解密中,請稍候。" -#: js/personal.js:287 -msgid "Saving..." -msgstr "儲存中..." - #: js/users.js:47 msgid "deleted" msgstr "已刪除" @@ -182,40 +252,40 @@ msgstr "復原" msgid "Unable to remove user" msgstr "無法刪除用戶" -#: js/users.js:95 templates/users.php:26 templates/users.php:90 -#: templates/users.php:118 +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 msgid "Groups" msgstr "群組" -#: js/users.js:100 templates/users.php:92 templates/users.php:130 +#: js/users.js:105 templates/users.php:90 templates/users.php:128 msgid "Group Admin" msgstr "群組管理員" -#: js/users.js:123 templates/users.php:170 +#: js/users.js:127 templates/users.php:168 msgid "Delete" msgstr "刪除" -#: js/users.js:284 +#: js/users.js:310 msgid "add group" msgstr "新增群組" -#: js/users.js:451 +#: js/users.js:486 msgid "A valid username must be provided" msgstr "必須提供一個有效的用戶名" -#: js/users.js:452 js/users.js:458 js/users.js:473 +#: js/users.js:487 js/users.js:493 js/users.js:508 msgid "Error creating user" msgstr "建立用戶時出現錯誤" -#: js/users.js:457 +#: js/users.js:492 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" -#: js/users.js:481 +#: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "警告:使用者 {user} 的家目錄已經存在" -#: personal.php:45 personal.php:46 +#: personal.php:49 personal.php:50 msgid "__language_name__" msgstr "__language_name__" @@ -239,18 +309,42 @@ msgstr "" msgid "Fatal issues only" msgstr "" -#: templates/admin.php:22 templates/admin.php:36 +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:43 templates/admin.php:57 msgid "Security Warning" msgstr "安全性警告" -#: templates/admin.php:25 +#: templates/admin.php:46 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:39 +#: templates/admin.php:60 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -259,68 +353,68 @@ msgid "" "root." msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" -#: templates/admin.php:50 +#: templates/admin.php:71 msgid "Setup Warning" msgstr "設定警告" -#: templates/admin.php:53 +#: templates/admin.php:74 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: templates/admin.php:54 +#: templates/admin.php:75 #, php-format msgid "Please double check the installation guides." msgstr "請參考安裝指南。" -#: templates/admin.php:65 +#: templates/admin.php:86 msgid "Module 'fileinfo' missing" msgstr "遺失 'fileinfo' 模組" -#: templates/admin.php:68 +#: templates/admin.php:89 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。" -#: templates/admin.php:79 +#: templates/admin.php:100 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:82 +#: templates/admin.php:103 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:93 +#: templates/admin.php:114 msgid "Locale not working" msgstr "語系無法運作" -#: templates/admin.php:98 +#: templates/admin.php:119 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:102 +#: templates/admin.php:123 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:106 +#: templates/admin.php:127 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:118 +#: templates/admin.php:139 msgid "Internet connection not working" msgstr "無網際網路存取" -#: templates/admin.php:121 +#: templates/admin.php:142 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -329,118 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" -#: templates/admin.php:135 +#: templates/admin.php:156 msgid "Cron" msgstr "Cron" -#: templates/admin.php:142 +#: templates/admin.php:163 msgid "Execute one task with each page loaded" msgstr "當頁面載入時,執行" -#: templates/admin.php:150 +#: templates/admin.php:171 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php" -#: templates/admin.php:158 +#: templates/admin.php:179 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次" -#: templates/admin.php:163 +#: templates/admin.php:184 msgid "Sharing" msgstr "分享" -#: templates/admin.php:169 +#: templates/admin.php:190 msgid "Enable Share API" msgstr "啟用分享 API" -#: templates/admin.php:170 +#: templates/admin.php:191 msgid "Allow apps to use the Share API" msgstr "允許 apps 使用分享 API" -#: templates/admin.php:177 +#: templates/admin.php:198 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:178 +#: templates/admin.php:199 msgid "Allow users to share items to the public with links" msgstr "允許使用者以結連公開分享檔案" -#: templates/admin.php:186 +#: templates/admin.php:207 msgid "Allow public uploads" msgstr "允許任何人上傳" -#: templates/admin.php:187 +#: templates/admin.php:208 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」" -#: templates/admin.php:195 +#: templates/admin.php:216 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:196 +#: templates/admin.php:217 msgid "Allow users to share items shared with them again" msgstr "允許使用者分享其他使用者分享給他的檔案" -#: templates/admin.php:203 +#: templates/admin.php:224 msgid "Allow users to share with anyone" msgstr "允許使用者與任何人分享檔案" -#: templates/admin.php:206 +#: templates/admin.php:227 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:213 +#: templates/admin.php:234 msgid "Allow mail notification" msgstr "允許郵件通知" -#: templates/admin.php:214 +#: templates/admin.php:235 msgid "Allow user to send mail notification for shared files" msgstr "允許使用者分享檔案時寄出通知郵件" -#: templates/admin.php:221 +#: templates/admin.php:242 msgid "Security" msgstr "安全性" -#: templates/admin.php:234 +#: templates/admin.php:255 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:236 +#: templates/admin.php:257 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:242 +#: templates/admin.php:263 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:254 +#: templates/admin.php:275 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:277 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:308 +msgid "From address" +msgstr "" + +#: templates/admin.php:330 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:334 +msgid "Server address" +msgstr "" + +#: templates/admin.php:338 +msgid "Port" +msgstr "" + +#: templates/admin.php:343 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:344 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:347 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:351 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:352 +msgid "Send email" +msgstr "" + +#: templates/admin.php:357 msgid "Log" msgstr "紀錄" -#: templates/admin.php:255 +#: templates/admin.php:358 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:287 +#: templates/admin.php:390 msgid "More" msgstr "更多" -#: templates/admin.php:288 +#: templates/admin.php:391 msgid "Less" msgstr "更少" -#: templates/admin.php:294 templates/personal.php:173 +#: templates/admin.php:397 templates/personal.php:181 msgid "Version" msgstr "版本" -#: templates/admin.php:298 templates/personal.php:176 +#: templates/admin.php:401 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "由 ownCloud 社群開發,原始碼AGPL 授權許可下發布。" -#: templates/apps.php:13 +#: templates/apps.php:14 msgid "Add your App" msgstr "添加你的 App" -#: templates/apps.php:28 +#: templates/apps.php:31 msgid "More Apps" msgstr "更多Apps" -#: templates/apps.php:33 +#: templates/apps.php:37 msgid "Select an App" msgstr "選擇一個應用程式" -#: templates/apps.php:39 +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 msgid "See application page at apps.owncloud.com" msgstr "查看應用程式頁面於 apps.owncloud.com" -#: templates/apps.php:41 +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 msgid "-licensed by " msgstr "-核准: " -#: templates/help.php:4 -msgid "User Documentation" -msgstr "用戶說明文件" - #: templates/help.php:6 msgid "Administrator Documentation" msgstr "管理者說明文件" @@ -507,7 +649,7 @@ msgstr "再次顯示首次使用精靈" msgid "You have used %s of the available %s" msgstr "您已經使用了 %s ,目前可用空間為 %s" -#: templates/personal.php:39 templates/users.php:23 templates/users.php:89 +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" msgstr "密碼" @@ -519,151 +661,149 @@ msgstr "你的密碼已更改" msgid "Unable to change your password" msgstr "無法變更您的密碼" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "New password" msgstr "新密碼" -#: templates/personal.php:46 +#: templates/personal.php:50 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:58 templates/users.php:88 +#: templates/personal.php:64 templates/users.php:86 msgid "Full Name" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:81 msgid "Email" msgstr "信箱" -#: templates/personal.php:75 +#: templates/personal.php:83 msgid "Your email address" msgstr "您的電子郵件信箱" -#: templates/personal.php:76 -msgid "Fill in an email address to enable password recovery" -msgstr "請填入電子郵件信箱以便回復密碼" - #: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 msgid "Profile picture" msgstr "個人資料照片" -#: templates/personal.php:91 +#: templates/personal.php:101 msgid "Upload new" msgstr "上傳新的" -#: templates/personal.php:93 +#: templates/personal.php:103 msgid "Select new from Files" msgstr "從已上傳的檔案中選一個" -#: templates/personal.php:94 +#: templates/personal.php:104 msgid "Remove image" msgstr "移除圖片" -#: templates/personal.php:95 +#: templates/personal.php:105 msgid "Either png or jpg. Ideally square but you will be able to crop it." msgstr "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它" -#: templates/personal.php:97 +#: templates/personal.php:107 msgid "Your avatar is provided by your original account." msgstr "" -#: templates/personal.php:101 -msgid "Abort" -msgstr "中斷" +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:112 msgid "Choose as profile image" msgstr "設定為大頭貼" -#: templates/personal.php:110 templates/personal.php:111 +#: templates/personal.php:120 templates/personal.php:121 msgid "Language" msgstr "語言" -#: templates/personal.php:130 +#: templates/personal.php:140 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:137 +#: templates/personal.php:147 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:139 +#: templates/personal.php:149 #, php-format msgid "" "Use this address to access your Files via " "WebDAV" msgstr "使用這個地址來透過 WebDAV 存取檔案" -#: templates/personal.php:150 -msgid "Encryption" -msgstr "加密" - -#: templates/personal.php:152 +#: templates/personal.php:161 msgid "The encryption app is no longer enabled, please decrypt all your files" msgstr "" -#: templates/personal.php:158 +#: templates/personal.php:167 msgid "Log-in password" msgstr "登入密碼" -#: templates/personal.php:163 +#: templates/personal.php:172 msgid "Decrypt all Files" msgstr "解密所有檔案" -#: templates/users.php:21 +#: templates/users.php:19 msgid "Login Name" msgstr "登入名稱" -#: templates/users.php:30 +#: templates/users.php:28 msgid "Create" msgstr "建立" -#: templates/users.php:36 +#: templates/users.php:34 msgid "Admin Recovery Password" msgstr "管理者復原密碼" -#: templates/users.php:37 templates/users.php:38 +#: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" msgstr "為了修改密碼時能夠取回使用者資料,請輸入另一組還原用密碼" -#: templates/users.php:42 +#: templates/users.php:40 msgid "Default Storage" msgstr "預設儲存區" -#: templates/users.php:44 templates/users.php:139 +#: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" msgstr "" -#: templates/users.php:48 templates/users.php:148 +#: templates/users.php:46 templates/users.php:146 msgid "Unlimited" msgstr "無限制" -#: templates/users.php:66 templates/users.php:163 +#: templates/users.php:64 templates/users.php:161 msgid "Other" msgstr "其他" -#: templates/users.php:87 +#: templates/users.php:85 msgid "Username" msgstr "使用者名稱" -#: templates/users.php:94 +#: templates/users.php:92 msgid "Storage" msgstr "儲存區" -#: templates/users.php:108 +#: templates/users.php:106 msgid "change full name" msgstr "" -#: templates/users.php:112 +#: templates/users.php:110 msgid "set new password" msgstr "設定新密碼" -#: templates/users.php:143 +#: templates/users.php:141 msgid "Default" msgstr "預設" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 5eca45754e..083560b53b 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-12-20 01:55-0500\n" -"PO-Revision-Date: 2013-12-20 06:23+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2014-03-11 01:54-0400\n" +"PO-Revision-Date: 2014-03-11 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,43 +88,43 @@ msgstr "成功" msgid "Error" msgstr "錯誤" -#: js/settings.js:837 +#: js/settings.js:838 msgid "Configuration OK" msgstr "" -#: js/settings.js:846 +#: js/settings.js:847 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:855 +#: js/settings.js:856 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:872 js/settings.js:881 +#: js/settings.js:873 js/settings.js:882 msgid "Select groups" msgstr "選擇群組" -#: js/settings.js:875 js/settings.js:884 +#: js/settings.js:876 js/settings.js:885 msgid "Select object classes" msgstr "" -#: js/settings.js:878 +#: js/settings.js:879 msgid "Select attributes" msgstr "" -#: js/settings.js:905 +#: js/settings.js:906 msgid "Connection test succeeded" msgstr "連線測試成功" -#: js/settings.js:912 +#: js/settings.js:913 msgid "Connection test failed" msgstr "連線測試失敗" -#: js/settings.js:921 +#: js/settings.js:922 msgid "Do you really want to delete the current Server Configuration?" msgstr "您真的要刪除現在的伺服器設定嗎?" -#: js/settings.js:922 +#: js/settings.js:923 msgid "Confirm Deletion" msgstr "確認刪除" @@ -140,11 +140,11 @@ msgid "%s user found" msgid_plural "%s users found" msgstr[0] "" -#: lib/wizard.php:778 lib/wizard.php:790 +#: lib/wizard.php:784 lib/wizard.php:796 msgid "Invalid Host" msgstr "" -#: lib/wizard.php:951 +#: lib/wizard.php:963 msgid "Could not find the desired feature" msgstr "" @@ -162,7 +162,7 @@ msgstr "說明" #: templates/part.wizard-groupfilter.php:4 #, php-format -msgid "Limit the access to %s to groups meeting this criteria:" +msgid "Groups meeting these criteria are available in %s:" msgstr "" #: templates/part.wizard-groupfilter.php:8 @@ -198,7 +198,7 @@ msgid "groups found" msgstr "" #: templates/part.wizard-loginfilter.php:4 -msgid "What attribute shall be used as login name:" +msgid "Users login with this attribute:" msgstr "" #: templates/part.wizard-loginfilter.php:8 @@ -266,7 +266,7 @@ msgstr "您可以在進階標籤頁裡面指定使用者及群組的 Base DN" #: templates/part.wizard-userfilter.php:4 #, php-format -msgid "Limit the access to %s to users meeting this criteria:" +msgid "Limit %s access to users meeting these criteria:" msgstr "" #: templates/part.wizard-userfilter.php:31 @@ -409,41 +409,51 @@ msgstr "Group Search Attributes" msgid "Group-Member association" msgstr "Group-Member association" -#: templates/settings.php:40 +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 msgid "Special Attributes" msgstr "特殊屬性" -#: templates/settings.php:42 +#: templates/settings.php:43 msgid "Quota Field" msgstr "配額欄位" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "Quota Default" msgstr "預設配額" -#: templates/settings.php:43 +#: templates/settings.php:44 msgid "in bytes" msgstr "以位元組為單位" -#: templates/settings.php:44 +#: templates/settings.php:45 msgid "Email Field" msgstr "電郵欄位" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "User Home Folder Naming Rule" msgstr "使用者家目錄的命名規則" -#: templates/settings.php:45 +#: templates/settings.php:46 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "使用者名稱請留白(預設)。若不留白請指定一個LDAP/AD屬性。" -#: templates/settings.php:51 +#: templates/settings.php:52 msgid "Internal Username" msgstr "內部使用者名稱" -#: templates/settings.php:52 +#: templates/settings.php:53 msgid "" "By default the internal username will be created from the UUID attribute. It" " makes sure that the username is unique and characters do not need to be " @@ -459,15 +469,15 @@ msgid "" "effect only on newly mapped (added) LDAP users." msgstr "" -#: templates/settings.php:53 +#: templates/settings.php:54 msgid "Internal Username Attribute:" msgstr "" -#: templates/settings.php:54 +#: templates/settings.php:55 msgid "Override UUID detection" msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:56 msgid "" "By default, the UUID attribute is automatically detected. The UUID attribute" " is used to doubtlessly identify LDAP users and groups. Also, the internal " @@ -478,19 +488,19 @@ msgid "" "Changes will have effect only on newly mapped (added) LDAP users and groups." msgstr "" -#: templates/settings.php:56 +#: templates/settings.php:57 msgid "UUID Attribute for Users:" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:58 msgid "UUID Attribute for Groups:" msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:59 msgid "Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:60 msgid "" "Usernames are used to store and assign (meta) data. In order to precisely " "identify and recognize users, each LDAP user will have a internal username. " @@ -504,10 +514,10 @@ msgid "" "experimental stage." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Username-LDAP User Mapping" msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:61 msgid "Clear Groupname-LDAP Group Mapping" msgstr "" diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 6870c54994..bf9215e350 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -1,15 +1,19 @@ "برنامج \"%s\" لا يمكن تثبيته بسبب انه لا يتناسب مع الاصدار الخاص بـ ownCloud.", +"No app name specified" => "لا يوجد برنامج بهذا الاسم", "Help" => "المساعدة", "Personal" => "شخصي", "Settings" => "إعدادات", "Users" => "المستخدمين", "Admin" => "المدير", +"Failed to upgrade \"%s\"." => "خطا في ترقية \"%s\".", "web services under your control" => "خدمات الشبكة تحت سيطرتك", "ZIP download is turned off." => "تحميل ملفات ZIP متوقف", "Files need to be downloaded one by one." => "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر", "Back to Files" => "العودة الى الملفات", "Selected files too large to generate zip file." => "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip", +"No source specified when installing app" => "لم يتم تحديد المصدر عن تثبيت البرنامج", "Application is not enabled" => "التطبيق غير مفعّل", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Token expired. Please reload page." => "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة", @@ -21,13 +25,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات", "MS SQL username and/or password not valid: %s" => "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s", "You need to enter either an existing account or the administrator." => "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير.", -"MySQL username and/or password not valid" => "اسم المستخدم و/أو كلمة المرور لنظام MySQL غير صحيح", "DB Error: \"%s\"" => "خطأ في قواعد البيانات : \"%s\"", "Offending command was: \"%s\"" => "الأمر المخالف كان : \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "أسم المستخدم '%s'@'localhost' الخاص بـ MySQL موجود مسبقا", -"Drop this user from MySQL" => "احذف اسم المستخدم هذا من الـ MySQL", -"MySQL user '%s'@'%%' already exists" => "أسم المستخدم '%s'@'%%' الخاص بـ MySQL موجود مسبقا", -"Drop this user from MySQL." => "احذف اسم المستخدم هذا من الـ MySQL.", "Oracle username and/or password not valid" => "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح", "Offending command was: \"%s\", name: %s, password: %s" => "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s", "PostgreSQL username and/or password not valid" => "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة", diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index c9de3d64d8..f29120e60e 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -21,13 +21,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s, не можете да ползвате точки в името на базата от данни", "MS SQL username and/or password not valid: %s" => "Невалидно MS SQL потребителско име и/или парола: %s", "You need to enter either an existing account or the administrator." => "Необходимо е да влезете в всъществуващ акаунт или като администратора", -"MySQL username and/or password not valid" => "Невалидно MySQL потребителско име и/или парола", "DB Error: \"%s\"" => "Грешка в базата от данни: \"%s\"", "Offending command was: \"%s\"" => "Проблемната команда беше: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL потребителят '%s'@'localhost' вече съществува", -"Drop this user from MySQL" => "Изтриване на потребителя от MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQL потребителят '%s'@'%%' вече съществува.", -"Drop this user from MySQL." => "Изтриване на потребителя от MySQL.", "Oracle connection could not be established" => "Oracle връзка не можа да се осъществи", "Oracle username and/or password not valid" => "Невалидно Oracle потребителско име и/или парола", "Offending command was: \"%s\", name: %s, password: %s" => "Проблемната команда беше: \"%s\", име: %s, парола: %s", diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 4755392d27..45e6d6966d 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tipus de fitxer desconegut", "Invalid image" => "Imatge no vàlida", "web services under your control" => "controleu els vostres serveis web", -"cannot open \"%s\"" => "no es pot obrir \"%s\"", "ZIP download is turned off." => "La baixada en ZIP està desactivada.", "Files need to be downloaded one by one." => "Els fitxers s'han de baixar d'un en un.", "Back to Files" => "Torna a Fitxers", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s no podeu usar punts en el nom de la base de dades", "MS SQL username and/or password not valid: %s" => "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s", "You need to enter either an existing account or the administrator." => "Heu d'escriure un compte existent o el d'administrador.", -"MySQL username and/or password not valid" => "Nom d'usuari i/o contrasenya MySQL no vàlids", "DB Error: \"%s\"" => "Error DB: \"%s\"", "Offending command was: \"%s\"" => "L'ordre en conflicte és: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "L'usuari MySQL '%s'@'localhost' ja existeix.", -"Drop this user from MySQL" => "Elimina aquest usuari de MySQL", -"MySQL user '%s'@'%%' already exists" => "L'usuari MySQL '%s'@'%%' ja existeix", -"Drop this user from MySQL." => "Elimina aquest usuari de MySQL.", "Oracle connection could not be established" => "No s'ha pogut establir la connexió Oracle", "Oracle username and/or password not valid" => "Nom d'usuari i/o contrasenya Oracle no vàlids", "Offending command was: \"%s\", name: %s, password: %s" => "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index df3a47b5ae..dcf968b6bd 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Neznámý typ souboru", "Invalid image" => "Chybný obrázek", "web services under your control" => "webové služby pod Vaší kontrolou", -"cannot open \"%s\"" => "nelze otevřít \"%s\"", "ZIP download is turned off." => "Stahování v ZIPu je vypnuto.", "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "V názvu databáze %s nesmíte používat tečky.", "MS SQL username and/or password not valid: %s" => "Uživatelské jméno či heslo MSSQL není platné: %s", "You need to enter either an existing account or the administrator." => "Musíte zadat existující účet či správce.", -"MySQL username and/or password not valid" => "Uživatelské jméno či heslo MySQL není platné", "DB Error: \"%s\"" => "Chyba databáze: \"%s\"", "Offending command was: \"%s\"" => "Příslušný příkaz byl: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Uživatel '%s'@'localhost' již v MySQL existuje.", -"Drop this user from MySQL" => "Zrušte tohoto uživatele z MySQL", -"MySQL user '%s'@'%%' already exists" => "Uživatel '%s'@'%%' již v MySQL existuje", -"Drop this user from MySQL." => "Zrušte tohoto uživatele z MySQL", "Oracle connection could not be established" => "Spojení s Oracle nemohlo být navázáno", "Oracle username and/or password not valid" => "Uživatelské jméno či heslo Oracle není platné", "Offending command was: \"%s\", name: %s, password: %s" => "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s", diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 0a52f5df77..57cb02653f 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -21,13 +21,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s does dim hawl defnyddio dot yn enw'r gronfa ddata", "MS SQL username and/or password not valid: %s" => "Enw a/neu gyfrinair MS SQL annilys: %s", "You need to enter either an existing account or the administrator." => "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr.", -"MySQL username and/or password not valid" => "Enw a/neu gyfrinair MySQL annilys", "DB Error: \"%s\"" => "Gwall DB: \"%s\"", "Offending command was: \"%s\"" => "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes.", -"Drop this user from MySQL" => "Gollwng y defnyddiwr hwn o MySQL", -"MySQL user '%s'@'%%' already exists" => "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli", -"Drop this user from MySQL." => "Gollwng y defnyddiwr hwn o MySQL.", "Oracle username and/or password not valid" => "Enw a/neu gyfrinair Oracle annilys", "Offending command was: \"%s\", name: %s, password: %s" => "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s", "PostgreSQL username and/or password not valid" => "Enw a/neu gyfrinair PostgreSQL annilys", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 65eb7466b6..2f9c423bc4 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Ukendt filtype", "Invalid image" => "Ugyldigt billede", "web services under your control" => "Webtjenester under din kontrol", -"cannot open \"%s\"" => "Kan ikke åbne \"%s\"", "ZIP download is turned off." => "ZIP-download er slået fra.", "Files need to be downloaded one by one." => "Filer skal downloades en for en.", "Back to Files" => "Tilbage til Filer", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s du må ikke bruge punktummer i databasenavnet.", "MS SQL username and/or password not valid: %s" => "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s", "You need to enter either an existing account or the administrator." => "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator.", -"MySQL username and/or password not valid" => "MySQL brugernavn og/eller kodeord er ikke gyldigt.", "DB Error: \"%s\"" => "Databasefejl: \"%s\"", "Offending command was: \"%s\"" => "Fejlende kommando var: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL brugeren '%s'@'localhost' eksisterer allerede.", -"Drop this user from MySQL" => "Slet denne bruger fra MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQL brugeren '%s'@'%%' eksisterer allerede.", -"Drop this user from MySQL." => "Slet denne bruger fra MySQL", "Oracle connection could not be established" => "Oracle forbindelsen kunne ikke etableres", "Oracle username and/or password not valid" => "Oracle brugernavn og/eller kodeord er ikke gyldigt.", "Offending command was: \"%s\", name: %s, password: %s" => "Fejlende kommando var: \"%s\", navn: %s, password: %s", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index b1045892fb..62a6eed0cb 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", "web services under your control" => "Web-Services unter Deiner Kontrolle", -"cannot open \"%s\"" => "Öffnen von \"%s\" fehlgeschlagen", "ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Password ungültig: %s", "You need to enter either an existing account or the administrator." => "Du musst entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben.", -"MySQL username and/or password not valid" => "MySQL Benutzername und/oder Passwort ungültig", "DB Error: \"%s\"" => "DB Fehler: \"%s\"", "Offending command was: \"%s\"" => "Fehlerhafter Befehl war: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL Benutzer '%s'@'localhost' existiert bereits.", -"Drop this user from MySQL" => "Lösche diesen Benutzer von MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQL Benutzer '%s'@'%%' existiert bereits", -"Drop this user from MySQL." => "Lösche diesen Benutzer aus MySQL.", "Oracle connection could not be established" => "Es konnte keine Verbindung zur Oracle-Datenbank hergestellt werden", "Oracle username and/or password not valid" => "Oracle Benutzername und/oder Passwort ungültig", "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", diff --git a/lib/l10n/de_AT.php b/lib/l10n/de_AT.php index 15f78e0bce..18e8e8b51b 100644 --- a/lib/l10n/de_AT.php +++ b/lib/l10n/de_AT.php @@ -1,5 +1,7 @@ "Persönlich", +"Settings" => "Einstellungen", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), "_%n day go_::_%n days ago_" => array("",""), diff --git a/lib/l10n/de_CH.php b/lib/l10n/de_CH.php index 7325aad931..0c0bf1c79e 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -9,7 +9,6 @@ $TRANSLATIONS = array( "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", "web services under your control" => "Web-Services unter Ihrer Kontrolle", -"cannot open \"%s\"" => "Öffnen von \"%s\" fehlgeschlagen", "ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", @@ -27,13 +26,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Passwort ungültig: %s", "You need to enter either an existing account or the administrator." => "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben.", -"MySQL username and/or password not valid" => "MySQL Benutzername und/oder Passwort ungültig", "DB Error: \"%s\"" => "DB Fehler: \"%s\"", "Offending command was: \"%s\"" => "Fehlerhafter Befehl war: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL Benutzer '%s'@'localhost' existiert bereits.", -"Drop this user from MySQL" => "Lösche diesen Benutzer aus MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQL Benutzer '%s'@'%%' existiert bereits", -"Drop this user from MySQL." => "Lösche diesen Benutzer aus MySQL.", "Oracle connection could not be established" => "Die Oracle-Verbindung konnte nicht aufgebaut werden.", "Oracle username and/or password not valid" => "Oracle Benutzername und/oder Passwort ungültig", "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 1a1c9783f4..ad98a94d97 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", "web services under your control" => "Web-Services unter Ihrer Kontrolle", -"cannot open \"%s\"" => "Öffnen von \"%s\" fehlgeschlagen", "ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", @@ -22,7 +21,7 @@ $TRANSLATIONS = array( "No path specified when installing app from local file" => "Bei der Installation der Applikation aus einer lokalen Datei wurde kein Pfad angegeben", "Archives of type %s are not supported" => "Archive des Typs %s werden nicht unterstützt.", "Failed to open archive when installing app" => "Das Archiv konnte bei der Installation der Applikation nicht geöffnet werden", -"App does not provide an info.xml file" => "Die Applikation enthält keine info,xml Datei", +"App does not provide an info.xml file" => "Die Applikation enthält keine info.xml Datei", "App can't be installed because of not allowed code in the App" => "Die Applikation kann auf Grund von unerlaubten Code nicht installiert werden", "App can't be installed because it is not compatible with this version of ownCloud" => "Die Anwendung konnte nicht installiert werden, weil Sie nicht mit dieser Version von ownCloud kompatibel ist.", "App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Die Applikation konnte nicht installiert werden, da diese das true Tag beinhaltet und dieses, bei nicht mitausgelieferten Applikationen, nicht erlaubt ist ist", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Passwort ungültig: %s", "You need to enter either an existing account or the administrator." => "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben.", -"MySQL username and/or password not valid" => "MySQL Benutzername und/oder Passwort ungültig", "DB Error: \"%s\"" => "DB Fehler: \"%s\"", "Offending command was: \"%s\"" => "Fehlerhafter Befehl war: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL Benutzer '%s'@'localhost' existiert bereits.", -"Drop this user from MySQL" => "Lösche diesen Benutzer aus MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQL Benutzer '%s'@'%%' existiert bereits", -"Drop this user from MySQL." => "Lösche diesen Benutzer aus MySQL.", "Oracle connection could not be established" => "Die Oracle-Verbindung konnte nicht aufgebaut werden.", "Oracle username and/or password not valid" => "Oracle Benutzername und/oder Passwort ungültig", "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 7f7797bbc7..c2394e7b83 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Άγνωστος τύπος αρχείου", "Invalid image" => "Μη έγκυρη εικόνα", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", -"cannot open \"%s\"" => "αδυναμία ανοίγματος \"%s\"", "ZIP download is turned off." => "Η λήψη ZIP απενεργοποιήθηκε.", "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", @@ -25,6 +24,7 @@ $TRANSLATIONS = array( "App does not provide an info.xml file" => "Η εφαρμογή δεν παρέχει αρχείο info.xml", "App can't be installed because of not allowed code in the App" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί λόγω μη-επιτρεπόμενου κώδικα μέσα στην Εφαρμογή", "App can't be installed because it is not compatible with this version of ownCloud" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή δεν είναι συμβατή με αυτή την έκδοση ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή περιέχει την ετικέτα σωστή που δεν επιτρέπεται για μη-ενσωματωμένες εφαρμογές", "App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Η εφαρμογή δεν μπορεί να εγκατασταθεί επειδή η έκδοση στο info.xml/version δεν είναι η ίδια με την έκδοση που αναφέρεται στο κατάστημα εφαρμογών", "App directory already exists" => "Ο κατάλογος εφαρμογών υπάρχει ήδη", "Can't create app folder. Please fix permissions. %s" => "Δεν είναι δυνατόν να δημιουργηθεί ο φάκελος εφαρμογής. Παρακαλώ διορθώστε τις άδειες πρόσβασης. %s", @@ -39,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων", "MS SQL username and/or password not valid: %s" => "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s", "You need to enter either an existing account or the administrator." => "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή.", -"MySQL username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL", "DB Error: \"%s\"" => "Σφάλμα Βάσης Δεδομένων: \"%s\"", "Offending command was: \"%s\"" => "Η εντολη παραβατικοτητας ηταν: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL.", -"Drop this user from MySQL" => "Απόρριψη αυτού του χρήστη από την MySQL", -"MySQL user '%s'@'%%' already exists" => "Ο χρήστης '%s'@'%%' της MySQL υπάρχει ήδη", -"Drop this user from MySQL." => "Απόρριψη αυτού του χρήστη από την MySQL", "Oracle connection could not be established" => "Αδυναμία σύνδεσης Oracle", "Oracle username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle", "Offending command was: \"%s\", name: %s, password: %s" => "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s", diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index e2e8ee2e54..36a061d415 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Unknown filetype", "Invalid image" => "Invalid image", "web services under your control" => "web services under your control", -"cannot open \"%s\"" => "cannot open \"%s\"", "ZIP download is turned off." => "ZIP download is turned off.", "Files need to be downloaded one by one." => "Files need to be downloaded one by one.", "Back to Files" => "Back to Files", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s you may not use dots in the database name", "MS SQL username and/or password not valid: %s" => "MS SQL username and/or password not valid: %s", "You need to enter either an existing account or the administrator." => "You need to enter either an existing account or the administrator.", -"MySQL username and/or password not valid" => "MySQL username and/or password not valid", "DB Error: \"%s\"" => "DB Error: \"%s\"", "Offending command was: \"%s\"" => "Offending command was: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL user '%s'@'localhost' exists already.", -"Drop this user from MySQL" => "Drop this user from MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQL user '%s'@'%%' already exists", -"Drop this user from MySQL." => "Drop this user from MySQL.", "Oracle connection could not be established" => "Oracle connection could not be established", "Oracle username and/or password not valid" => "Oracle username and/or password not valid", "Offending command was: \"%s\", name: %s, password: %s" => "Offending command was: \"%s\", name: %s, password: %s", diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index 53d1ec1854..d2b0a77a0d 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Settings" => "Agordo", "Users" => "Uzantoj", "Admin" => "Administranto", +"Unknown filetype" => "Ne konatas dosiertipo", +"Invalid image" => "Ne validas bildo", "web services under your control" => "TTT-servoj regataj de vi", "ZIP download is turned off." => "ZIP-elŝuto estas malkapabligita.", "Files need to be downloaded one by one." => "Dosieroj devas elŝutiĝi unuope.", @@ -20,12 +22,7 @@ $TRANSLATIONS = array( "%s enter the database name." => "%s enigu la nomon de la datumbazo.", "%s you may not use dots in the database name" => "%s vi ne povas uzi punktojn en la nomo de la datumbazo", "MS SQL username and/or password not valid: %s" => "La uzantonomo de MS SQL aŭ la pasvorto ne validas: %s", -"MySQL username and/or password not valid" => "La uzantonomo de MySQL aŭ la pasvorto ne validas", "DB Error: \"%s\"" => "Datumbaza eraro: “%s”", -"MySQL user '%s'@'localhost' exists already." => "La uzanto de MySQL “%s”@“localhost” jam ekzistas.", -"Drop this user from MySQL" => "Forigi ĉi tiun uzanton el MySQL", -"MySQL user '%s'@'%%' already exists" => "La uzanto de MySQL “%s”@“%%” jam ekzistas", -"Drop this user from MySQL." => "Forigi ĉi tiun uzanton el MySQL.", "Oracle connection could not be established" => "Konekto al Oracle ne povas stariĝi", "Oracle username and/or password not valid" => "La uzantonomo de Oracle aŭ la pasvorto ne validas", "PostgreSQL username and/or password not valid" => "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas", @@ -35,13 +32,13 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", "Could not find category \"%s\"" => "Ne troviĝis kategorio “%s”", "seconds ago" => "sekundoj antaŭe", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","antaŭ %n minutoj"), +"_%n hour ago_::_%n hours ago_" => array("","antaŭ %n horoj"), "today" => "hodiaŭ", "yesterday" => "hieraŭ", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("","antaŭ %n tagoj"), "last month" => "lastamonate", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","antaŭ %n monatoj"), "last year" => "lastajare", "years ago" => "jaroj antaŭe" ); diff --git a/lib/l10n/es.php b/lib/l10n/es.php index f231cd2bb6..13a9fc5305 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -11,12 +11,11 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tipo de archivo desconocido", "Invalid image" => "Imagen inválida", "web services under your control" => "Servicios web bajo su control", -"cannot open \"%s\"" => "No se puede abrir \"%s\"", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", "Back to Files" => "Volver a Archivos", "Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", -"Please download the files separately in smaller chunks or kindly ask your administrator." => "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente a su administrador.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador.", "No source specified when installing app" => "No se ha especificado origen cuando se ha instalado la aplicación", "No href specified when installing app from http" => "No href especificado cuando se ha instalado la aplicación", "No path specified when installing app from local file" => "Sin path especificado cuando se ha instalado la aplicación desde el fichero local", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s puede utilizar puntos en el nombre de la base de datos", "MS SQL username and/or password not valid: %s" => "Usuario y/o contraseña de MS SQL no válidos: %s", "You need to enter either an existing account or the administrator." => "Tiene que ingresar una cuenta existente o la del administrador.", -"MySQL username and/or password not valid" => "Usuario y/o contraseña de MySQL no válidos", "DB Error: \"%s\"" => "Error BD: \"%s\"", "Offending command was: \"%s\"" => "Comando infractor: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Usuario MySQL '%s'@'localhost' ya existe.", -"Drop this user from MySQL" => "Eliminar este usuario de MySQL", -"MySQL user '%s'@'%%' already exists" => "Usuario MySQL '%s'@'%%' ya existe", -"Drop this user from MySQL." => "Eliminar este usuario de MySQL.", "Oracle connection could not be established" => "No se pudo establecer la conexión a Oracle", "Oracle username and/or password not valid" => "Usuario y/o contraseña de Oracle no válidos", "Offending command was: \"%s\", name: %s, password: %s" => "Comando infractor: \"%s\", nombre: %s, contraseña: %s", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index bc5fcd7e01..0955ca7694 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -11,11 +11,11 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tipo de archivo desconocido", "Invalid image" => "Imagen inválida", "web services under your control" => "servicios web sobre los que tenés control", -"cannot open \"%s\"" => "no se puede abrir \"%s\"", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados de a uno.", "Back to Files" => "Volver a Archivos", "Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Por favor, descargue estos archivos de forma separada en pequeñas partes o pídalo amablemente a su administrador.", "No source specified when installing app" => "No se especificó el origen al instalar la app", "No href specified when installing app from http" => "No se especificó href al instalar la app", "No path specified when installing app from local file" => "No se especificó PATH al instalar la app desde el archivo local", @@ -39,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s no podés usar puntos en el nombre de la base de datos", "MS SQL username and/or password not valid: %s" => "Nombre de usuario y contraseña de MS SQL no son válidas: %s", "You need to enter either an existing account or the administrator." => "Tenés que ingresar una cuenta existente o el administrador.", -"MySQL username and/or password not valid" => "Usuario y/o contraseña MySQL no válido", "DB Error: \"%s\"" => "Error DB: \"%s\"", "Offending command was: \"%s\"" => "El comando no comprendido es: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Usuario MySQL '%s'@'localhost' ya existe.", -"Drop this user from MySQL" => "Borrar este usuario de MySQL", -"MySQL user '%s'@'%%' already exists" => "Usuario MySQL '%s'@'%%' ya existe", -"Drop this user from MySQL." => "Borrar este usuario de MySQL", "Oracle connection could not be established" => "No fue posible establecer la conexión a Oracle", "Oracle username and/or password not valid" => "El nombre de usuario y/o contraseña no son válidos", "Offending command was: \"%s\", name: %s, password: %s" => "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"", diff --git a/lib/l10n/es_CL.php b/lib/l10n/es_CL.php index 46158b0ccc..a2669b110c 100644 --- a/lib/l10n/es_CL.php +++ b/lib/l10n/es_CL.php @@ -2,9 +2,15 @@ $TRANSLATIONS = array( "Settings" => "Configuración", "Files" => "Archivos", +"seconds ago" => "segundos antes", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), +"today" => "hoy", +"yesterday" => "ayer", "_%n day go_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("","") +"last month" => "mes anterior", +"_%n month ago_::_%n months ago_" => array("",""), +"last year" => "último año", +"years ago" => "años anteriores" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_MX.php b/lib/l10n/es_MX.php index 7454d4966d..ee05419cde 100644 --- a/lib/l10n/es_MX.php +++ b/lib/l10n/es_MX.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tipo de archivo desconocido", "Invalid image" => "Imagen inválida", "web services under your control" => "Servicios web bajo su control", -"cannot open \"%s\"" => "No se puede abrir \"%s\"", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", "Back to Files" => "Volver a Archivos", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s puede utilizar puntos en el nombre de la base de datos", "MS SQL username and/or password not valid: %s" => "Usuario y/o contraseña de MS SQL no válidos: %s", "You need to enter either an existing account or the administrator." => "Tiene que ingresar una cuenta existente o la del administrador.", -"MySQL username and/or password not valid" => "Usuario y/o contraseña de MySQL no válidos", "DB Error: \"%s\"" => "Error BD: \"%s\"", "Offending command was: \"%s\"" => "Comando infractor: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Usuario MySQL '%s'@'localhost' ya existe.", -"Drop this user from MySQL" => "Eliminar este usuario de MySQL", -"MySQL user '%s'@'%%' already exists" => "Usuario MySQL '%s'@'%%' ya existe", -"Drop this user from MySQL." => "Eliminar este usuario de MySQL.", "Oracle connection could not be established" => "No se pudo establecer la conexión a Oracle", "Oracle username and/or password not valid" => "Usuario y/o contraseña de Oracle no válidos", "Offending command was: \"%s\", name: %s, password: %s" => "Comando infractor: \"%s\", nombre: %s, contraseña: %s", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 96fceaa04e..6134b088b9 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tundmatu failitüüp", "Invalid image" => "Vigane pilt", "web services under your control" => "veebitenused sinu kontrolli all", -"cannot open \"%s\"" => "ei suuda avada \"%s\"", "ZIP download is turned off." => "ZIP-ina allalaadimine on välja lülitatud.", "Files need to be downloaded one by one." => "Failid tuleb alla laadida ükshaaval.", "Back to Files" => "Tagasi failide juurde", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s punktide kasutamine andmebaasi nimes pole lubatud", "MS SQL username and/or password not valid: %s" => "MS SQL kasutajatunnus ja/või parool pole õiged: %s", "You need to enter either an existing account or the administrator." => "Sisesta kas juba olemasolev konto või administrator.", -"MySQL username and/or password not valid" => "MySQL kasutajatunnus ja/või parool pole õiged", "DB Error: \"%s\"" => "Andmebaasi viga: \"%s\"", "Offending command was: \"%s\"" => "Tõrkuv käsk oli: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL kasutaja '%s'@'localhost' on juba olemas.", -"Drop this user from MySQL" => "Kustuta see kasutaja MySQL-ist", -"MySQL user '%s'@'%%' already exists" => "MySQL kasutaja '%s'@'%%' on juba olemas", -"Drop this user from MySQL." => "Kustuta see kasutaja MySQL-ist.", "Oracle connection could not be established" => "Ei suuda luua ühendust Oracle baasiga", "Oracle username and/or password not valid" => "Oracle kasutajatunnus ja/või parool pole õiged", "Offending command was: \"%s\", name: %s, password: %s" => "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index e3f18fca47..9ea61f3f68 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Fitxategi mota ezezaguna", "Invalid image" => "Baliogabeko irudia", "web services under your control" => "web zerbitzuak zure kontrolpean", -"cannot open \"%s\"" => "ezin da \"%s\" ireki", "ZIP download is turned off." => "ZIP deskarga ez dago gaituta.", "Files need to be downloaded one by one." => "Fitxategiak banan-banan deskargatu behar dira.", "Back to Files" => "Itzuli fitxategietara", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s ezin duzu punturik erabili datu basearen izenean.", "MS SQL username and/or password not valid: %s" => "MS SQL erabiltzaile izena edota pasahitza ez dira egokiak: %s", "You need to enter either an existing account or the administrator." => "Existitzen den kontu bat edo administradorearena jarri behar duzu.", -"MySQL username and/or password not valid" => "MySQL erabiltzaile edota pasahitza ez dira egokiak.", "DB Error: \"%s\"" => "DB errorea: \"%s\"", "Offending command was: \"%s\"" => "Errorea komando honek sortu du: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL '%s'@'localhost' erabiltzailea dagoeneko existitzen da.", -"Drop this user from MySQL" => "Ezabatu erabiltzaile hau MySQLtik", -"MySQL user '%s'@'%%' already exists" => "MySQL '%s'@'%%' erabiltzailea dagoeneko existitzen da", -"Drop this user from MySQL." => "Ezabatu erabiltzaile hau MySQLtik.", "Oracle connection could not be established" => "Ezin da Oracle konexioa sortu", "Oracle username and/or password not valid" => "Oracle erabiltzaile edota pasahitza ez dira egokiak.", "Offending command was: \"%s\", name: %s, password: %s" => "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s", diff --git a/lib/l10n/eu_ES.php b/lib/l10n/eu_ES.php new file mode 100644 index 0000000000..35192433a2 --- /dev/null +++ b/lib/l10n/eu_ES.php @@ -0,0 +1,9 @@ + "Pertsonala", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index 788b370396..193bfb67e5 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -21,13 +21,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید.", "MS SQL username and/or password not valid: %s" => "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s", "You need to enter either an existing account or the administrator." => "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید.", -"MySQL username and/or password not valid" => "نام کاربری و / یا رمزعبور MySQL معتبر نیست.", "DB Error: \"%s\"" => "خطای پایگاه داده: \"%s\"", "Offending command was: \"%s\"" => "دستور متخلف عبارت است از: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "کاربرMySQL '%s'@'localhost' درحال حاضر موجود است.", -"Drop this user from MySQL" => "این کاربر را از MySQL حذف نمایید.", -"MySQL user '%s'@'%%' already exists" => "کاربر'%s'@'%%' MySQL در حال حاضر موجود است.", -"Drop this user from MySQL." => "این کاربر را از MySQL حذف نمایید.", "Oracle connection could not be established" => "ارتباط اراکل نمیتواند برقرار باشد.", "Oracle username and/or password not valid" => "نام کاربری و / یا رمزعبور اراکل معتبر نیست.", "Offending command was: \"%s\", name: %s, password: %s" => "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 573704da44..1647e4c008 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -35,12 +35,7 @@ $TRANSLATIONS = array( "%s enter the database name." => "%s anna tietokannan nimi.", "%s you may not use dots in the database name" => "%s et voi käyttää pisteitä tietokannan nimessä", "MS SQL username and/or password not valid: %s" => "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s", -"MySQL username and/or password not valid" => "MySQL:n käyttäjätunnus ja/tai salasana on väärin", "DB Error: \"%s\"" => "Tietokantavirhe: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL-käyttäjä '%s'@'localhost' on jo olemassa.", -"Drop this user from MySQL" => "Pudota tämä käyttäjä MySQL:stä", -"MySQL user '%s'@'%%' already exists" => "MySQL-käyttäjä '%s'@'%%' on jo olemassa", -"Drop this user from MySQL." => "Pudota tämä käyttäjä MySQL:stä.", "Oracle connection could not be established" => "Oracle-yhteyttä ei voitu muodostaa", "Oracle username and/or password not valid" => "Oraclen käyttäjätunnus ja/tai salasana on väärin", "PostgreSQL username and/or password not valid" => "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 75a4f27727..1826a258c5 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Type de fichier inconnu", "Invalid image" => "Image invalide", "web services under your control" => "services web sous votre contrôle", -"cannot open \"%s\"" => "impossible d'ouvrir \"%s\"", "ZIP download is turned off." => "Téléchargement ZIP désactivé.", "Files need to be downloaded one by one." => "Les fichiers nécessitent d'être téléchargés un par un.", "Back to Files" => "Retour aux Fichiers", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s vous nez pouvez pas utiliser de points dans le nom de la base de données", "MS SQL username and/or password not valid: %s" => "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s", "You need to enter either an existing account or the administrator." => "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur.", -"MySQL username and/or password not valid" => "Nom d'utilisateur et/ou mot de passe de la base MySQL invalide", "DB Error: \"%s\"" => "Erreur de la base de données : \"%s\"", "Offending command was: \"%s\"" => "La requête en cause est : \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "L'utilisateur MySQL '%s'@'localhost' existe déjà.", -"Drop this user from MySQL" => "Retirer cet utilisateur de la base MySQL", -"MySQL user '%s'@'%%' already exists" => "L'utilisateur MySQL '%s'@'%%' existe déjà", -"Drop this user from MySQL." => "Retirer cet utilisateur de la base MySQL.", "Oracle connection could not be established" => "La connexion Oracle ne peut pas être établie", "Oracle username and/or password not valid" => "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide", "Offending command was: \"%s\", name: %s, password: %s" => "La requête en cause est : \"%s\", nom : %s, mot de passe : %s", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 81a6202155..0ac2e416c6 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tipo de ficheiro descoñecido", "Invalid image" => "Imaxe incorrecta", "web services under your control" => "servizos web baixo o seu control", -"cannot open \"%s\"" => "non foi posíbel abrir «%s»", "ZIP download is turned off." => "As descargas ZIP están desactivadas.", "Files need to be downloaded one by one." => "Os ficheiros necesitan seren descargados dun en un.", "Back to Files" => "Volver aos ficheiros", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s non se poden empregar puntos na base de datos", "MS SQL username and/or password not valid: %s" => "Nome de usuario e/ou contrasinal de MS SQL incorrecto: %s", "You need to enter either an existing account or the administrator." => "Deberá introducir unha conta existente ou o administrador.", -"MySQL username and/or password not valid" => "Nome de usuario e/ou contrasinal de MySQL incorrecto", "DB Error: \"%s\"" => "Produciuse un erro na base de datos: «%s»", "Offending command was: \"%s\"" => "A orde ofensiva foi: «%s»", -"MySQL user '%s'@'localhost' exists already." => "O usuario MySQL '%s'@'localhost' xa existe.", -"Drop this user from MySQL" => "Omitir este usuario de MySQL", -"MySQL user '%s'@'%%' already exists" => "O usuario MySQL «%s»@«%%» xa existe.", -"Drop this user from MySQL." => "Omitir este usuario de MySQL.", "Oracle connection could not be established" => "Non foi posíbel estabelecer a conexión con Oracle", "Oracle username and/or password not valid" => "Nome de usuario e/ou contrasinal de Oracle incorrecto", "Offending command was: \"%s\", name: %s, password: %s" => "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index efaf2a2fd4..afdbff5a33 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Ismeretlen file tipús", "Invalid image" => "Hibás kép", "web services under your control" => "webszolgáltatások saját kézben", -"cannot open \"%s\"" => "nem sikerült megnyitni \"%s\"", "ZIP download is turned off." => "A ZIP-letöltés nincs engedélyezve.", "Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni.", "Back to Files" => "Vissza a Fájlokhoz", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s az adatbázis neve nem tartalmazhat pontot", "MS SQL username and/or password not valid: %s" => "Az MS SQL felhasználónév és/vagy jelszó érvénytelen: %s", "You need to enter either an existing account or the administrator." => "Vagy egy létező felhasználó vagy az adminisztrátor bejelentkezési nevét kell megadnia", -"MySQL username and/or password not valid" => "A MySQL felhasználói név és/vagy jelszó érvénytelen", "DB Error: \"%s\"" => "Adatbázis hiba: \"%s\"", "Offending command was: \"%s\"" => "A hibát ez a parancs okozta: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "A '%s'@'localhost' MySQL felhasználó már létezik.", -"Drop this user from MySQL" => "Törölje ezt a felhasználót a MySQL-ből", -"MySQL user '%s'@'%%' already exists" => "A '%s'@'%%' MySQL felhasználó már létezik", -"Drop this user from MySQL." => "Törölje ezt a felhasználót a MySQL-ből.", "Oracle connection could not be established" => "Az Oracle kapcsolat nem hozható létre", "Oracle username and/or password not valid" => "Az Oracle felhasználói név és/vagy jelszó érvénytelen", "Offending command was: \"%s\", name: %s, password: %s" => "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s", diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 27d7843104..b002cc93d2 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tipe berkas tak dikenal", "Invalid image" => "Gambar tidak sah", "web services under your control" => "layanan web dalam kendali anda", -"cannot open \"%s\"" => "tidak dapat membuka \"%s\"", "ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", "Files need to be downloaded one by one." => "Berkas harus diunduh satu persatu.", "Back to Files" => "Kembali ke Berkas", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s anda tidak boleh menggunakan karakter titik pada nama basis data", "MS SQL username and/or password not valid: %s" => "Nama pengguna dan/atau sandi MySQL tidak sah: %s", "You need to enter either an existing account or the administrator." => "Anda harus memasukkan akun yang sudah ada atau administrator.", -"MySQL username and/or password not valid" => "Nama pengguna dan/atau sandi MySQL tidak sah", "DB Error: \"%s\"" => "Galat Basis Data: \"%s\"", "Offending command was: \"%s\"" => "Perintah yang bermasalah: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Pengguna MySQL '%s'@'localhost' sudah ada.", -"Drop this user from MySQL" => "Hapus pengguna ini dari MySQL", -"MySQL user '%s'@'%%' already exists" => "Pengguna MySQL '%s'@'%%' sudah ada.", -"Drop this user from MySQL." => "Hapus pengguna ini dari MySQL.", "Oracle connection could not be established" => "Koneksi Oracle tidak dapat dibuat", "Oracle username and/or password not valid" => "Nama pengguna dan/atau sandi Oracle tidak sah", "Offending command was: \"%s\", name: %s, password: %s" => "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index cd2073bfd0..affa6552d2 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tipo di file sconosciuto", "Invalid image" => "Immagine non valida", "web services under your control" => "servizi web nelle tue mani", -"cannot open \"%s\"" => "impossibile aprire \"%s\"", "ZIP download is turned off." => "Lo scaricamento in formato ZIP è stato disabilitato.", "Files need to be downloaded one by one." => "I file devono essere scaricati uno alla volta.", "Back to Files" => "Torna ai file", @@ -25,7 +24,7 @@ $TRANSLATIONS = array( "App does not provide an info.xml file" => "L'applicazione non fornisce un file info.xml", "App can't be installed because of not allowed code in the App" => "L'applicazione non può essere installata a causa di codice non consentito al suo interno", "App can't be installed because it is not compatible with this version of ownCloud" => "L'applicazione non può essere installata poiché non è compatibile con questa versione di ownCloud", -"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "L'applicazione non può essere installata poiché contiene il tag true che non è permesso alle applicazioni non shipped", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "L'applicazione non può essere installata poiché contiene il tag true che è consentito per le applicazioni native", "App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "L'applicazione non può essere installata poiché la versione in info.xml/version non è la stessa riportata dall'app store", "App directory already exists" => "La cartella dell'applicazione esiste già", "Can't create app folder. Please fix permissions. %s" => "Impossibile creare la cartella dell'applicazione. Correggi i permessi. %s", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s non dovresti utilizzare punti nel nome del database", "MS SQL username and/or password not valid: %s" => "Nome utente e/o password MS SQL non validi: %s", "You need to enter either an existing account or the administrator." => "È necessario inserire un account esistente o l'amministratore.", -"MySQL username and/or password not valid" => "Nome utente e/o password di MySQL non validi", "DB Error: \"%s\"" => "Errore DB: \"%s\"", "Offending command was: \"%s\"" => "Il comando non consentito era: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "L'utente MySQL '%s'@'localhost' esiste già.", -"Drop this user from MySQL" => "Elimina questo utente da MySQL", -"MySQL user '%s'@'%%' already exists" => "L'utente MySQL '%s'@'%%' esiste già", -"Drop this user from MySQL." => "Elimina questo utente da MySQL.", "Oracle connection could not be established" => "La connessione a Oracle non può essere stabilita", "Oracle username and/or password not valid" => "Nome utente e/o password di Oracle non validi", "Offending command was: \"%s\", name: %s, password: %s" => "Il comando non consentito era: \"%s\", nome: %s, password: %s", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 9c5c0ba476..44c4beb5be 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -1,17 +1,16 @@ " \"%s\" アプリは、このバージョンのownCloudと互換性がない為、インストールできません。", +"App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => " \"%s\" アプリは、このバージョンのownCloudと互換性がないためインストールできません。", "No app name specified" => "アプリ名が未指定", "Help" => "ヘルプ", "Personal" => "個人", "Settings" => "設定", -"Users" => "ユーザ", +"Users" => "ユーザー", "Admin" => "管理", "Failed to upgrade \"%s\"." => "\"%s\" へのアップグレードに失敗しました。", "Unknown filetype" => "不明なファイルタイプ", "Invalid image" => "無効な画像", "web services under your control" => "管理下のウェブサービス", -"cannot open \"%s\"" => "\"%s\" が開けません", "ZIP download is turned off." => "ZIPダウンロードは無効です。", "Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", "Back to Files" => "ファイルに戻る", @@ -24,47 +23,42 @@ $TRANSLATIONS = array( "Failed to open archive when installing app" => "アプリをインストール中にアーカイブファイルを開けませんでした。", "App does not provide an info.xml file" => "アプリにinfo.xmlファイルが入っていません", "App can't be installed because of not allowed code in the App" => "アプリで許可されないコードが入っているのが原因でアプリがインストールできません", -"App can't be installed because it is not compatible with this version of ownCloud" => "アプリは、このバージョンのownCloudと互換性がない為、インストールできません。", -"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストール出来ません。", -"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/versionのバージョンがアプリストアのバージョンと合っていない為、アプリはインストールされません", -"App directory already exists" => "アプリディレクトリは既に存在します", -"Can't create app folder. Please fix permissions. %s" => "アプリフォルダを作成出来ませんでした。%s のパーミッションを修正してください。", +"App can't be installed because it is not compatible with this version of ownCloud" => "アプリは、このバージョンのownCloudと互換性がないためインストールできません。", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストールできません。", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/versionのバージョンがアプリストアのバージョンと合っていないため、アプリはインストールされません", +"App directory already exists" => "アプリディレクトリはすでに存在します", +"Can't create app folder. Please fix permissions. %s" => "アプリフォルダーを作成できませんでした。%s のパーミッションを修正してください。", "Application is not enabled" => "アプリケーションは無効です", "Authentication error" => "認証エラー", "Token expired. Please reload page." => "トークンが無効になりました。ページを再読込してください。", "Files" => "ファイル", "Text" => "TTY TDD", "Images" => "画像", -"%s enter the database username." => "%s のデータベースのユーザ名を入力してください。", +"%s enter the database username." => "%s のデータベースのユーザー名を入力してください。", "%s enter the database name." => "%s のデータベース名を入力してください。", "%s you may not use dots in the database name" => "%s ではデータベース名にドットを利用できないかもしれません。", "MS SQL username and/or password not valid: %s" => "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s", "You need to enter either an existing account or the administrator." => "既存のアカウントもしくは管理者のどちらかを入力する必要があります。", -"MySQL username and/or password not valid" => "MySQLのユーザ名もしくはパスワードは有効ではありません", "DB Error: \"%s\"" => "DBエラー: \"%s\"", "Offending command was: \"%s\"" => "違反コマンド: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQLのユーザ '%s'@'localhost' はすでに存在します。", -"Drop this user from MySQL" => "MySQLからこのユーザを削除", -"MySQL user '%s'@'%%' already exists" => "MySQLのユーザ '%s'@'%%' はすでに存在します。", -"Drop this user from MySQL." => "MySQLからこのユーザを削除する。", "Oracle connection could not be established" => "Oracleへの接続が確立できませんでした。", -"Oracle username and/or password not valid" => "Oracleのユーザ名もしくはパスワードは有効ではありません", +"Oracle username and/or password not valid" => "Oracleのユーザー名もしくはパスワードは有効ではありません", "Offending command was: \"%s\", name: %s, password: %s" => "違反コマンド: \"%s\"、名前: %s、パスワード: %s", -"PostgreSQL username and/or password not valid" => "PostgreSQLのユーザ名もしくはパスワードは有効ではありません", -"Set an admin username." => "管理者のユーザ名を設定。", +"PostgreSQL username and/or password not valid" => "PostgreSQLのユーザー名もしくはパスワードは有効ではありません", +"Set an admin username." => "管理者のユーザー名を設定", "Set an admin password." => "管理者のパスワードを設定。", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。", "Please double check the installation guides." => "インストールガイドをよく確認してください。", "Could not find category \"%s\"" => "カテゴリ \"%s\" が見つかりませんでした", "seconds ago" => "数秒前", "_%n minute ago_::_%n minutes ago_" => array("%n 分前"), "_%n hour ago_::_%n hours ago_" => array("%n 時間前"), "today" => "今日", -"yesterday" => "昨日", -"_%n day go_::_%n days ago_" => array("%n 日前"), -"last month" => "一月前", -"_%n month ago_::_%n months ago_" => array("%n ヶ月前"), -"last year" => "一年前", +"yesterday" => "1日前", +"_%n day go_::_%n days ago_" => array("%n日前"), +"last month" => "1ヶ月前", +"_%n month ago_::_%n months ago_" => array("%nヶ月前"), +"last year" => "1年前", "years ago" => "年前" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index 0cf6ab333e..e2a719d074 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -21,13 +21,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s არ მიუთითოთ წერტილი ბაზის სახელში", "MS SQL username and/or password not valid: %s" => "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s", "You need to enter either an existing account or the administrator." => "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი.", -"MySQL username and/or password not valid" => "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი", "DB Error: \"%s\"" => "DB შეცდომა: \"%s\"", "Offending command was: \"%s\"" => "Offending ბრძანება იყო: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს.", -"Drop this user from MySQL" => "წაშალე ეს მომხამრებელი MySQL–იდან", -"MySQL user '%s'@'%%' already exists" => "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს", -"Drop this user from MySQL." => "წაშალე ეს მომხამრებელი MySQL–იდან", "Oracle username and/or password not valid" => "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი", "Offending command was: \"%s\", name: %s, password: %s" => "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s", "PostgreSQL username and/or password not valid" => "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი", diff --git a/lib/l10n/km.php b/lib/l10n/km.php index e7b09649a2..51dd4f33a7 100644 --- a/lib/l10n/km.php +++ b/lib/l10n/km.php @@ -1,8 +1,44 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day go_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array("") +"App \"%s\" can't be installed because it is not compatible with this version of ownCloud." => "មិន​អាច​ដំឡើង​កម្មវិធី \"%s\" បាន ព្រោះ​តែ​វា​មិន​ត្រូវ​គ្នា​នឹង​កំណែ ownCloud នេះ​ទេ។", +"No app name specified" => "មិន​បាន​បញ្ជាក់​ឈ្មោះ​កម្មវិធី", +"Help" => "ជំនួយ", +"Personal" => "ផ្ទាល់​ខ្លួន", +"Settings" => "ការកំណត់", +"Users" => "អ្នកប្រើ", +"Admin" => "អ្នក​គ្រប់​គ្រង", +"Unknown filetype" => "មិន​ស្គាល់​ប្រភេទ​ឯកសារ", +"Invalid image" => "រូបភាព​មិន​ត្រឹម​ត្រូវ", +"web services under your control" => "សេវាកម្ម​វេប​ក្រោម​ការ​ការ​បញ្ជា​របស់​អ្នក", +"ZIP download is turned off." => "បាន​បិទ​ការ​ទាញ​យក ZIP ។", +"Files need to be downloaded one by one." => "ត្រូវ​ការ​ទាញ​យក​ឯកសារ​ម្ដង​មួយៗ។", +"Back to Files" => "ត្រឡប់​ទៅ​ឯកសារ", +"Selected files too large to generate zip file." => "ឯកសារ​ដែល​បាន​ជ្រើស មាន​ទំហំ​ធំ​ពេក​ក្នុង​ការ​បង្កើត​ជា zip ។", +"App directory already exists" => "មាន​ទីតាំង​ផ្ទុក​កម្មវិធី​រួច​ហើយ", +"Can't create app folder. Please fix permissions. %s" => "មិន​អាច​បង្កើត​ថត​កម្មវិធី។ សូម​កែ​សម្រួល​សិទ្ធិ។ %s", +"Application is not enabled" => "មិន​បាន​បើក​កម្មវិធី", +"Authentication error" => "កំហុស​ការ​ផ្ទៀង​ផ្ទាត់​ភាព​ត្រឹម​ត្រូវ", +"Files" => "ឯកសារ", +"Text" => "អត្ថបទ", +"Images" => "រូបភាព", +"%s enter the database username." => "%s វាយ​បញ្ចូល​ឈ្មោះ​អ្នក​ប្រើ​មូលដ្ឋាន​ទិន្នន័យ។", +"%s enter the database name." => "%s វាយ​បញ្ចូល​ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ។", +"%s you may not use dots in the database name" => "%s អ្នក​អាច​មិន​ប្រើ​សញ្ញា​ចុច​នៅ​ក្នុង​ឈ្មោះ​មូលដ្ឋាន​ទិន្នន័យ", +"DB Error: \"%s\"" => "កំហុស DB៖ \"%s\"", +"Oracle connection could not be established" => "មិន​អាច​បង្កើត​ការ​តភ្ជាប់ Oracle", +"PostgreSQL username and/or password not valid" => "ឈ្មោះ​អ្នក​ប្រើ និង/ឬ ពាក្យ​សម្ងាត់ PostgreSQL គឺ​មិន​ត្រូវ​ទេ", +"Set an admin username." => "កំណត់​ឈ្មោះ​អ្នក​គ្រប់គ្រង។", +"Set an admin password." => "កំណត់​ពាក្យ​សម្ងាត់​អ្នក​គ្រប់គ្រង។", +"Could not find category \"%s\"" => "រក​មិន​ឃើញ​ចំណាត់​ក្រុម \"%s\"", +"seconds ago" => "វិនាទី​មុន", +"_%n minute ago_::_%n minutes ago_" => array("%n នាទី​មុន"), +"_%n hour ago_::_%n hours ago_" => array("%n ម៉ោង​មុន"), +"today" => "ថ្ងៃនេះ", +"yesterday" => "ម្សិលមិញ", +"_%n day go_::_%n days ago_" => array("%n ថ្ងៃ​មុន"), +"last month" => "ខែមុន", +"_%n month ago_::_%n months ago_" => array("%n ខែ​មុន"), +"last year" => "ឆ្នាំ​មុន", +"years ago" => "ឆ្នាំ​មុន" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index b33ad01546..d6a4a9a826 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "알 수 없는 파일 형식", "Invalid image" => "잘못된 그림", "web services under your control" => "내가 관리하는 웹 서비스", -"cannot open \"%s\"" => "\"%s\"을(를) 열 수 없습니다.", "ZIP download is turned off." => "ZIP 다운로드가 비활성화 되었습니다.", "Files need to be downloaded one by one." => "파일을 개별적으로 다운로드해야 합니다.", "Back to Files" => "파일로 돌아가기", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s 데이터베이스 이름에는 마침표를 사용할 수 없습니다", "MS SQL username and/or password not valid: %s" => "MS SQL 사용자 이름이나 암호가 잘못되었습니다: %s", "You need to enter either an existing account or the administrator." => "기존 계정이나 administrator(관리자)를 입력해야 합니다.", -"MySQL username and/or password not valid" => "MySQL 사용자 이름이나 암호가 잘못되었습니다.", "DB Error: \"%s\"" => "DB 오류: \"%s\"", "Offending command was: \"%s\"" => "잘못된 명령: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL 사용자 '%s'@'localhost'이(가) 이미 존재합니다.", -"Drop this user from MySQL" => "이 사용자를 MySQL에서 삭제하십시오", -"MySQL user '%s'@'%%' already exists" => "MySQL 사용자 '%s'@'%%'이(가) 이미 존재합니다.", -"Drop this user from MySQL." => "이 사용자를 MySQL에서 삭제하십시오.", "Oracle connection could not be established" => "Oracle 연결을 수립할 수 없습니다.", "Oracle username and/or password not valid" => "Oracle 사용자 이름이나 암호가 잘못되었습니다.", "Offending command was: \"%s\", name: %s, password: %s" => "잘못된 명령: \"%s\", 이름: %s, 암호: %s", diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php index c99f9dd2a1..133fe99f2d 100644 --- a/lib/l10n/ku_IQ.php +++ b/lib/l10n/ku_IQ.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Users" => "به‌كارهێنه‌ر", "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", "web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه", +"Files" => "په‌ڕگەکان", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), "_%n day go_::_%n days ago_" => array("",""), diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index 25957702d2..bc54ab1d14 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Nežinomas failo tipas", "Invalid image" => "Netinkamas paveikslėlis", "web services under your control" => "jūsų valdomos web paslaugos", -"cannot open \"%s\"" => "nepavyksta atverti „%s“", "ZIP download is turned off." => "ZIP atsisiuntimo galimybė yra išjungta.", "Files need to be downloaded one by one." => "Failai turi būti parsiunčiami vienas po kito.", "Back to Files" => "Atgal į Failus", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s negalite naudoti taškų duombazės pavadinime", "MS SQL username and/or password not valid: %s" => "MS SQL naudotojo vardas ir/arba slaptažodis netinka: %s", "You need to enter either an existing account or the administrator." => "Turite prisijungti su egzistuojančia paskyra arba su administratoriumi.", -"MySQL username and/or password not valid" => "Neteisingas MySQL naudotojo vardas ir/arba slaptažodis", "DB Error: \"%s\"" => "DB klaida: \"%s\"", "Offending command was: \"%s\"" => "Vykdyta komanda buvo: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL naudotojas '%s'@'localhost' jau egzistuoja.", -"Drop this user from MySQL" => "Pašalinti šį naudotoją iš MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQL naudotojas '%s'@'%%' jau egzistuoja", -"Drop this user from MySQL." => "Pašalinti šį naudotoją iš MySQL.", "Oracle connection could not be established" => "Nepavyko sukurti Oracle ryšio", "Oracle username and/or password not valid" => "Neteisingas Oracle naudotojo vardas ir/arba slaptažodis", "Offending command was: \"%s\", name: %s, password: %s" => "Vykdyta komanda buvo: \"%s\", name: %s, password: %s", diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 8ecee5bdae..e17b78f814 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "Admin" => "Administratori", "Failed to upgrade \"%s\"." => "Kļūda atjauninot \"%s\"", "web services under your control" => "tīmekļa servisi tavā varā", -"cannot open \"%s\"" => "Nevar atvērt \"%s\"", "ZIP download is turned off." => "ZIP lejupielādēšana ir izslēgta.", "Files need to be downloaded one by one." => "Datnes var lejupielādēt tikai katru atsevišķi.", "Back to Files" => "Atpakaļ pie datnēm", @@ -23,13 +22,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s datubāžu nosaukumos nedrīkst izmantot punktus", "MS SQL username and/or password not valid: %s" => "Nav derīga MySQL parole un/vai lietotājvārds — %s", "You need to enter either an existing account or the administrator." => "Jums jāievada vai nu esošs vai administratora konts.", -"MySQL username and/or password not valid" => "Nav derīga MySQL parole un/vai lietotājvārds", "DB Error: \"%s\"" => "DB kļūda — “%s”", "Offending command was: \"%s\"" => "Vainīgā komanda bija “%s”", -"MySQL user '%s'@'localhost' exists already." => "MySQL lietotājs %s'@'localhost' jau eksistē.", -"Drop this user from MySQL" => "Izmest šo lietotāju no MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQL lietotājs '%s'@'%%' jau eksistē", -"Drop this user from MySQL." => "Izmest šo lietotāju no MySQL.", "Oracle connection could not be established" => "Nevar izveidot savienojumu ar Oracle", "Oracle username and/or password not valid" => "Nav derīga Oracle parole un/vai lietotājvārds", "Offending command was: \"%s\", name: %s, password: %s" => "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s", diff --git a/lib/l10n/ml.php b/lib/l10n/ml.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/ml.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/mn.php b/lib/l10n/mn.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/mn.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index 5da36f9be3..5156238074 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -1,10 +1,13 @@ "App \"%s\" kan ikke installeres fordi den ikke er kompatibel med denne versjonen av ownCloud.", +"No app name specified" => "Intet app-navn spesifisert", "Help" => "Hjelp", "Personal" => "Personlig", "Settings" => "Innstillinger", "Users" => "Brukere", "Admin" => "Admin", +"Failed to upgrade \"%s\"." => "Klarte ikke å oppgradere \"%s\".", "Unknown filetype" => "Ukjent filtype", "Invalid image" => "Ugyldig bilde", "web services under your control" => "web tjenester du kontrollerer", @@ -12,12 +15,38 @@ $TRANSLATIONS = array( "Files need to be downloaded one by one." => "Filene må lastes ned en om gangen", "Back to Files" => "Tilbake til filer", "Selected files too large to generate zip file." => "De valgte filene er for store til å kunne generere ZIP-fil", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "Vennligst last ned filene separat i mindre deler eller spør administratoren pent.", +"No source specified when installing app" => "Ingen kilde spesifisert ved installering av app", +"No href specified when installing app from http" => "Ingen href spesifisert ved installering av app fra http", +"No path specified when installing app from local file" => "Ingen sti spesifisert ved installering av app fra lokal fil", +"Archives of type %s are not supported" => "Arkiver av type %s støttes ikke", +"Failed to open archive when installing app" => "Klarte ikke å åpne arkiv ved installering av app", +"App does not provide an info.xml file" => "App-en inneholder ikke filen info.xml", +"App can't be installed because of not allowed code in the App" => "App kan ikke installeres på grunn av ulovlig kode i appen.", +"App can't be installed because it is not compatible with this version of ownCloud" => "App kan ikke installeres fordi den ikke er kompatibel med denne versjonen av ownCloud", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "App kan ikke installeres fordi den inneholder tag true som ikke er tillatt for apper som ikke leveres med systemet", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "App kan ikke installeres fordi versjonen i info.xml/version ikke er den samme som versjonen som rapporteres fra app-butikken", +"App directory already exists" => "App-mappe finnes allerede", +"Can't create app folder. Please fix permissions. %s" => "Kan ikke opprette app-mappe. Vennligst ordne opp i tillatelser. %s", "Application is not enabled" => "Applikasjon er ikke påslått", "Authentication error" => "Autentikasjonsfeil", "Token expired. Please reload page." => "Symbol utløpt. Vennligst last inn siden på nytt.", "Files" => "Filer", "Text" => "Tekst", "Images" => "Bilder", +"%s enter the database username." => "%s legg inn brukernavn for databasen.", +"%s enter the database name." => "%s legg inn navnet på databasen.", +"%s you may not use dots in the database name" => "%s du kan ikke bruke punktum i databasenavnet", +"MS SQL username and/or password not valid: %s" => "MS SQL-brukernavn og/eller passord ikke gyldig: %s", +"You need to enter either an existing account or the administrator." => "Du må legge inn enten en eksisterende konto eller administratoren.", +"DB Error: \"%s\"" => "Databasefeil: \"%s\"", +"Offending command was: \"%s\"" => "Kommandoen som feilet: \"%s\"", +"Oracle connection could not be established" => "Klarte ikke å etablere forbindelse til Oracle", +"Oracle username and/or password not valid" => "Oracle-brukernavn og/eller passord er ikke gyldig", +"Offending command was: \"%s\", name: %s, password: %s" => "Kommando som feilet: \"%s\", navn: %s, passord: %s", +"PostgreSQL username and/or password not valid" => "PostgreSQL-brukernavn og/eller passord er ikke gyldig", +"Set an admin username." => "Sett et admin-brukernavn.", +"Set an admin password." => "Sett et admin-passord.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere.", "Please double check the installation guides." => "Vennligst dobbelsjekk installasjonsguiden.", "Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 2f6205fcf1..ea23668da7 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Onbekend bestandsformaat", "Invalid image" => "Ongeldige afbeelding", "web services under your control" => "Webdiensten in eigen beheer", -"cannot open \"%s\"" => "Kon \"%s\" niet openen", "ZIP download is turned off." => "ZIP download is uitgeschakeld.", "Files need to be downloaded one by one." => "Bestanden moeten één voor één worden gedownload.", "Back to Files" => "Terug naar bestanden", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s er mogen geen puntjes in de databasenaam voorkomen", "MS SQL username and/or password not valid: %s" => "MS SQL gebruikersnaam en/of wachtwoord niet geldig: %s", "You need to enter either an existing account or the administrator." => "Geef of een bestaand account op of het beheerdersaccount.", -"MySQL username and/or password not valid" => "MySQL gebruikersnaam en/of wachtwoord ongeldig", "DB Error: \"%s\"" => "DB Fout: \"%s\"", "Offending command was: \"%s\"" => "Onjuiste commande was: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL gebruiker '%s'@'localhost' bestaat al.", -"Drop this user from MySQL" => "Verwijder deze gebruiker uit MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQL gebruiker '%s'@'%%' bestaat al", -"Drop this user from MySQL." => "Verwijder deze gebruiker uit MySQL.", "Oracle connection could not be established" => "Er kon geen verbinding met Oracle worden bereikt", "Oracle username and/or password not valid" => "Oracle gebruikersnaam en/of wachtwoord ongeldig", "Offending command was: \"%s\", name: %s, password: %s" => "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index fe3e876916..9841d08845 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Nieznany typ pliku", "Invalid image" => "Błędne zdjęcie", "web services under your control" => "Kontrolowane serwisy", -"cannot open \"%s\"" => "Nie można otworzyć \"%s\"", "ZIP download is turned off." => "Pobieranie ZIP jest wyłączone.", "Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", "Back to Files" => "Wróć do plików", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s nie można używać kropki w nazwie bazy danych", "MS SQL username and/or password not valid: %s" => "Nazwa i/lub hasło serwera MS SQL jest niepoprawne: %s.", "You need to enter either an existing account or the administrator." => "Należy wprowadzić istniejące konto użytkownika lub administratora.", -"MySQL username and/or password not valid" => "MySQL: Nazwa użytkownika i/lub hasło jest niepoprawne", "DB Error: \"%s\"" => "Błąd DB: \"%s\"", "Offending command was: \"%s\"" => "Niepoprawna komenda: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Użytkownik MySQL '%s'@'localhost' już istnieje", -"Drop this user from MySQL" => "Usuń tego użytkownika z MySQL", -"MySQL user '%s'@'%%' already exists" => "Użytkownik MySQL '%s'@'%%t' już istnieje", -"Drop this user from MySQL." => "Usuń tego użytkownika z MySQL.", "Oracle connection could not be established" => "Nie można ustanowić połączenia z bazą Oracle", "Oracle username and/or password not valid" => "Oracle: Nazwa użytkownika i/lub hasło jest niepoprawne", "Offending command was: \"%s\", name: %s, password: %s" => "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index cc20fb3cb0..51722dae90 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Tipo de arquivo desconhecido", "Invalid image" => "Imagem inválida", "web services under your control" => "serviços web sob seu controle", -"cannot open \"%s\"" => "não pode abrir \"%s\"", "ZIP download is turned off." => "Download ZIP está desligado.", "Files need to be downloaded one by one." => "Arquivos precisam ser baixados um de cada vez.", "Back to Files" => "Voltar para Arquivos", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s você não pode usar pontos no nome do banco de dados", "MS SQL username and/or password not valid: %s" => "Nome de usuário e/ou senha MS SQL inválido(s): %s", "You need to enter either an existing account or the administrator." => "Você precisa inserir uma conta existente ou o administrador.", -"MySQL username and/or password not valid" => "Nome de usuário e/ou senha MySQL inválido(s)", "DB Error: \"%s\"" => "Erro no BD: \"%s\"", "Offending command was: \"%s\"" => "Comando ofensivo era: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "O usuário MySQL '%s'@'localhost' já existe.", -"Drop this user from MySQL" => "Derrubar este usuário do MySQL", -"MySQL user '%s'@'%%' already exists" => "Usuário MySQL '%s'@'%%' já existe", -"Drop this user from MySQL." => "Derrube este usuário do MySQL.", "Oracle connection could not be established" => "Conexão Oracle não pode ser estabelecida", "Oracle username and/or password not valid" => "Nome de usuário e/ou senha Oracle inválido(s)", "Offending command was: \"%s\", name: %s, password: %s" => "Comando ofensivo era: \"%s\", nome: %s, senha: %s", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index bd9165ebb1..510a382ad3 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Ficheiro desconhecido", "Invalid image" => "Imagem inválida", "web services under your control" => "serviços web sob o seu controlo", -"cannot open \"%s\"" => "Não foi possível abrir \"%s\"", "ZIP download is turned off." => "Descarregamento em ZIP está desligado.", "Files need to be downloaded one by one." => "Os ficheiros precisam de ser descarregados um por um.", "Back to Files" => "Voltar a Ficheiros", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s não é permitido utilizar pontos (.) no nome da base de dados", "MS SQL username and/or password not valid: %s" => "Nome de utilizador/password do MySQL é inválido: %s", "You need to enter either an existing account or the administrator." => "Precisa de introduzir uma conta existente ou de administrador", -"MySQL username and/or password not valid" => "Nome de utilizador/password do MySQL inválida", "DB Error: \"%s\"" => "Erro na BD: \"%s\"", "Offending command was: \"%s\"" => "O comando gerador de erro foi: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "O utilizador '%s'@'localhost' do MySQL já existe.", -"Drop this user from MySQL" => "Eliminar este utilizador do MySQL", -"MySQL user '%s'@'%%' already exists" => "O utilizador '%s'@'%%' do MySQL já existe", -"Drop this user from MySQL." => "Eliminar este utilizador do MySQL", "Oracle connection could not be established" => "Não foi possível estabelecer a ligação Oracle", "Oracle username and/or password not valid" => "Nome de utilizador/password do Oracle inválida", "Offending command was: \"%s\", name: %s, password: %s" => "O comando gerador de erro foi: \"%s\", nome: %s, password: %s", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 34d1730aaf..bc9995d3d0 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Неизвестный тип файла", "Invalid image" => "Изображение повреждено", "web services under your control" => "веб-сервисы под вашим управлением", -"cannot open \"%s\"" => "не могу открыть \"%s\"", "ZIP download is turned off." => "ZIP-скачивание отключено.", "Files need to be downloaded one by one." => "Файлы должны быть загружены по одному.", "Back to Files" => "Назад к файлам", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s Вы не можете использовать точки в имени базы данных", "MS SQL username and/or password not valid: %s" => "Имя пользователя и/или пароль MS SQL не подходит: %s", "You need to enter either an existing account or the administrator." => "Вы должны войти или в существующий аккаунт или под администратором.", -"MySQL username and/or password not valid" => "Неверное имя пользователя и/или пароль MySQL", "DB Error: \"%s\"" => "Ошибка БД: \"%s\"", "Offending command was: \"%s\"" => "Вызываемая команда была: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Пользователь MySQL '%s'@'localhost' уже существует.", -"Drop this user from MySQL" => "Удалить этого пользователя из MySQL", -"MySQL user '%s'@'%%' already exists" => "Пользователь MySQL '%s'@'%%' уже существует", -"Drop this user from MySQL." => "Удалить этого пользователя из MySQL.", "Oracle connection could not be established" => "соединение с Oracle не может быть установлено", "Oracle username and/or password not valid" => "Неверное имя пользователя и/или пароль Oracle", "Offending command was: \"%s\", name: %s, password: %s" => "Вызываемая команда была: \"%s\", имя: %s, пароль: %s", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 59c45e2b0b..c9ca8c9ee8 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Neznámy typ súboru", "Invalid image" => "Chybný obrázok", "web services under your control" => "webové služby pod Vašou kontrolou", -"cannot open \"%s\"" => "nemožno otvoriť \"%s\"", "ZIP download is turned off." => "Sťahovanie súborov ZIP je vypnuté.", "Files need to be downloaded one by one." => "Súbory musia byť nahrávané jeden za druhým.", "Back to Files" => "Späť na súbory", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "V názve databázy %s nemôžete používať bodky", "MS SQL username and/or password not valid: %s" => "Používateľské meno, alebo heslo MS SQL nie je platné: %s", "You need to enter either an existing account or the administrator." => "Musíte zadať jestvujúci účet alebo administrátora.", -"MySQL username and/or password not valid" => "Používateľské meno a/alebo heslo pre MySQL databázu je neplatné", "DB Error: \"%s\"" => "Chyba DB: \"%s\"", "Offending command was: \"%s\"" => "Podozrivý príkaz bol: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Používateľ '%s'@'localhost' už v MySQL existuje.", -"Drop this user from MySQL" => "Zahodiť používateľa z MySQL.", -"MySQL user '%s'@'%%' already exists" => "Používateľ '%s'@'%%' už v MySQL existuje", -"Drop this user from MySQL." => "Zahodiť používateľa z MySQL.", "Oracle connection could not be established" => "Nie je možné pripojiť sa k Oracle", "Oracle username and/or password not valid" => "Používateľské meno a/alebo heslo pre Oracle databázu je neplatné", "Offending command was: \"%s\", name: %s, password: %s" => "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 3cc8dd130c..6661a63252 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Neznana vrsta datoteke", "Invalid image" => "Neveljavna slika", "web services under your control" => "spletne storitve pod vašim nadzorom", -"cannot open \"%s\"" => "ni mogoče odpreti \"%s\"", "ZIP download is turned off." => "Prejemanje datotek v paketu ZIP je onemogočeno.", "Files need to be downloaded one by one." => "Datoteke je mogoče prejeti le posamično.", "Back to Files" => "Nazaj na datoteke", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik.", "MS SQL username and/or password not valid: %s" => "Uporabniško ime ali geslo MS SQL ni veljavno: %s", "You need to enter either an existing account or the administrator." => "Prijaviti se je treba v obstoječi ali pa skrbniški račun.", -"MySQL username and/or password not valid" => "Uporabniško ime ali geslo MySQL ni veljavno", "DB Error: \"%s\"" => "Napaka podatkovne zbirke: \"%s\"", "Offending command was: \"%s\"" => "Napačni ukaz je: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Uporabnik MySQL '%s'@'localhost' že obstaja.", -"Drop this user from MySQL" => "Odstrani uporabnika iz podatkovne zbirke MySQL", -"MySQL user '%s'@'%%' already exists" => "Uporabnik MySQL '%s'@'%%' že obstaja.", -"Drop this user from MySQL." => "Odstrani uporabnika iz podatkovne zbirke MySQL", "Oracle connection could not be established" => "Povezave s sistemom Oracle ni mogoče vzpostaviti.", "Oracle username and/or password not valid" => "Uporabniško ime ali geslo Oracle ni veljavno", "Offending command was: \"%s\", name: %s, password: %s" => "Napačni ukaz je: \"%s\", ime: %s, geslo: %s", diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index b36aa4ceef..a9344b7f5d 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -21,13 +21,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s nuk mund të përdorni pikat tek emri i database-it", "MS SQL username and/or password not valid: %s" => "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s", "You need to enter either an existing account or the administrator." => "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit.", -"MySQL username and/or password not valid" => "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm.", "DB Error: \"%s\"" => "Veprim i gabuar i DB-it: \"%s\"", "Offending command was: \"%s\"" => "Komanda e gabuar ishte: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Përdoruesi MySQL '%s'@'localhost' ekziston.", -"Drop this user from MySQL" => "Eliminoni këtë përdorues nga MySQL", -"MySQL user '%s'@'%%' already exists" => "Përdoruesi MySQL '%s'@'%%' ekziston", -"Drop this user from MySQL." => "Eliminoni këtë përdorues nga MySQL.", "Oracle username and/or password not valid" => "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm", "Offending command was: \"%s\", name: %s, password: %s" => "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s", "PostgreSQL username and/or password not valid" => "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm", diff --git a/lib/l10n/su.php b/lib/l10n/su.php new file mode 100644 index 0000000000..e7b09649a2 --- /dev/null +++ b/lib/l10n/su.php @@ -0,0 +1,8 @@ + array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day go_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index ffffe5956f..07e76b9d39 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Okänd filtyp", "Invalid image" => "Ogiltig bild", "web services under your control" => "webbtjänster under din kontroll", -"cannot open \"%s\"" => "Kan inte öppna \"%s\"", "ZIP download is turned off." => "Nerladdning av ZIP är avstängd.", "Files need to be downloaded one by one." => "Filer laddas ner en åt gången.", "Back to Files" => "Tillbaka till Filer", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s du får inte använda punkter i databasnamnet", "MS SQL username and/or password not valid: %s" => "MS SQL-användaren och/eller lösenordet var inte giltigt: %s", "You need to enter either an existing account or the administrator." => "Du måste antingen ange ett befintligt konto eller administratör.", -"MySQL username and/or password not valid" => "MySQL-användarnamnet och/eller lösenordet är felaktigt", "DB Error: \"%s\"" => "DB error: \"%s\"", "Offending command was: \"%s\"" => "Det felaktiga kommandot var: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL-användaren '%s'@'localhost' existerar redan.", -"Drop this user from MySQL" => "Radera denna användare från MySQL", -"MySQL user '%s'@'%%' already exists" => "MySQl-användare '%s'@'%%' existerar redan", -"Drop this user from MySQL." => "Radera denna användare från MySQL.", "Oracle connection could not be established" => "Oracle-anslutning kunde inte etableras", "Oracle username and/or password not valid" => "Oracle-användarnamnet och/eller lösenordet är felaktigt", "Offending command was: \"%s\", name: %s, password: %s" => "Det felande kommandot var: \"%s\", name: %s, password: %s", diff --git a/lib/l10n/te.php b/lib/l10n/te.php index 524ea0c602..12ae924019 100644 --- a/lib/l10n/te.php +++ b/lib/l10n/te.php @@ -1,16 +1,17 @@ "సహాయం", +"Personal" => "వ్యక్తిగతం", "Settings" => "అమరికలు", "Users" => "వాడుకరులు", "seconds ago" => "క్షణాల క్రితం", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n minute ago_::_%n minutes ago_" => array("","%n నిమిషాల క్రితం"), +"_%n hour ago_::_%n hours ago_" => array("","%n గంటల క్రితం"), "today" => "ఈరోజు", "yesterday" => "నిన్న", -"_%n day go_::_%n days ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("","%n రోజుల క్రితం"), "last month" => "పోయిన నెల", -"_%n month ago_::_%n months ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","%n నెలల క్రితం"), "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం" ); diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 7d25836f7d..626aefa7a4 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -11,7 +11,6 @@ $TRANSLATIONS = array( "Unknown filetype" => "Bilinmeyen dosya türü", "Invalid image" => "Geçersiz resim", "web services under your control" => "kontrolünüzün altındaki web hizmetleri", -"cannot open \"%s\"" => "\"%s\" açılamıyor", "ZIP download is turned off." => "ZIP indirmeleri kapatıldı.", "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", "Back to Files" => "Dosyalara dön", @@ -40,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s veritabanı adında nokta kullanamayabilirsiniz", "MS SQL username and/or password not valid: %s" => "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s", "You need to enter either an existing account or the administrator." => "Bir konto veya kullanici birlemek ihtiyacin. ", -"MySQL username and/or password not valid" => "MySQL kullanıcı adı ve/veya parolası geçerli değil", "DB Error: \"%s\"" => "DB Hata: ''%s''", "Offending command was: \"%s\"" => "Komut rahasiz ''%s''. ", -"MySQL user '%s'@'localhost' exists already." => "MySQL kullanici '%s @local host zatan var. ", -"Drop this user from MySQL" => "Bu kullanici MySQLden list disari koymak. ", -"MySQL user '%s'@'%%' already exists" => "MySQL kullanici '%s @ % % zaten var (zaten yazili)", -"Drop this user from MySQL." => "Bu kullanıcıyı MySQL veritabanından kaldır", "Oracle connection could not be established" => "Oracle bağlantısı kurulamadı", "Oracle username and/or password not valid" => "Adi klullanici ve/veya parola Oracle mantikli değildir. ", "Offending command was: \"%s\", name: %s, password: %s" => "Hatalı komut: \"%s\", ad: %s, parola: %s", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 32e010f1d4..1da9bced38 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -23,13 +23,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s не можна використовувати крапки в назві бази даних", "MS SQL username and/or password not valid: %s" => "MS SQL ім'я користувача та/або пароль не дійсні: %s", "You need to enter either an existing account or the administrator." => "Вам потрібно ввести або існуючий обліковий запис або administrator.", -"MySQL username and/or password not valid" => "MySQL ім'я користувача та/або пароль не дійсні", "DB Error: \"%s\"" => "Помилка БД: \"%s\"", "Offending command was: \"%s\"" => "Команда, що викликала проблему: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Користувач MySQL '%s'@'localhost' вже існує.", -"Drop this user from MySQL" => "Видалити цього користувача з MySQL", -"MySQL user '%s'@'%%' already exists" => "Користувач MySQL '%s'@'%%' вже існує", -"Drop this user from MySQL." => "Видалити цього користувача з MySQL.", "Oracle username and/or password not valid" => "Oracle ім'я користувача та/або пароль не дійсні", "Offending command was: \"%s\", name: %s, password: %s" => "Команда, що викликала проблему: \"%s\", ім'я: %s, пароль: %s", "PostgreSQL username and/or password not valid" => "PostgreSQL ім'я користувача та/або пароль не дійсні", diff --git a/lib/l10n/vi.php b/lib/l10n/vi.php index 5840283110..0f89ae2212 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -5,6 +5,8 @@ $TRANSLATIONS = array( "Settings" => "Cài đặt", "Users" => "Người dùng", "Admin" => "Quản trị", +"Unknown filetype" => "Không biết kiểu tập tin", +"Invalid image" => "Hình ảnh không hợp lệ", "web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn", "ZIP download is turned off." => "Tải về ZIP đã bị tắt.", "Files need to be downloaded one by one." => "Tập tin cần phải được tải về từng người một.", @@ -18,13 +20,13 @@ $TRANSLATIONS = array( "Images" => "Hình ảnh", "Could not find category \"%s\"" => "không thể tìm thấy mục \"%s\"", "seconds ago" => "vài giây trước", -"_%n minute ago_::_%n minutes ago_" => array(""), -"_%n hour ago_::_%n hours ago_" => array(""), +"_%n minute ago_::_%n minutes ago_" => array("%n phút trước"), +"_%n hour ago_::_%n hours ago_" => array("%n giờ trước"), "today" => "hôm nay", "yesterday" => "hôm qua", -"_%n day go_::_%n days ago_" => array(""), +"_%n day go_::_%n days ago_" => array("%n ngày trước"), "last month" => "tháng trước", -"_%n month ago_::_%n months ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("%n tháng trước"), "last year" => "năm trước", "years ago" => "năm trước" ); diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index ae9243cf41..e3dbc6fb60 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Settings" => "设置", "Users" => "用户", "Admin" => "管理", +"Failed to upgrade \"%s\"." => "\"%s\" 升级失败。", "Unknown filetype" => "未知的文件类型", "Invalid image" => "无效的图像", "web services under your control" => "您控制的web服务", @@ -13,6 +14,8 @@ $TRANSLATIONS = array( "Back to Files" => "回到文件", "Selected files too large to generate zip file." => "选择的文件太大,无法生成 zip 文件。", "App does not provide an info.xml file" => "应用未提供 info.xml 文件", +"App directory already exists" => "应用程序目录已存在", +"Can't create app folder. Please fix permissions. %s" => "无法创建应用程序文件夹。请修正权限。%s", "Application is not enabled" => "应用程序未启用", "Authentication error" => "认证出错", "Token expired. Please reload page." => "Token 过期,请刷新页面。", @@ -24,13 +27,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s 您不能在数据库名称中使用英文句号。", "MS SQL username and/or password not valid: %s" => "MS SQL 用户名和/或密码无效:%s", "You need to enter either an existing account or the administrator." => "你需要输入一个数据库中已有的账户或管理员账户。", -"MySQL username and/or password not valid" => "MySQL 数据库用户名和/或密码无效", "DB Error: \"%s\"" => "数据库错误:\"%s\"", "Offending command was: \"%s\"" => "冲突命令为:\"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL 用户 '%s'@'localhost' 已存在。", -"Drop this user from MySQL" => "建议从 MySQL 数据库中丢弃 Drop 此用户", -"MySQL user '%s'@'%%' already exists" => "MySQL 用户 '%s'@'%%' 已存在", -"Drop this user from MySQL." => "建议从 MySQL 数据库中丢弃 Drop 此用户。", "Oracle connection could not be established" => "不能建立甲骨文连接", "Oracle username and/or password not valid" => "Oracle 数据库用户名和/或密码无效", "Offending command was: \"%s\", name: %s, password: %s" => "冲突命令为:\"%s\",名称:%s,密码:%s", diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 35719c8b17..23530c7059 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -11,11 +11,11 @@ $TRANSLATIONS = array( "Unknown filetype" => "未知的檔案類型", "Invalid image" => "無效的圖片", "web services under your control" => "由您控制的網路服務", -"cannot open \"%s\"" => "無法開啓 %s", "ZIP download is turned off." => "ZIP 下載已關閉。", "Files need to be downloaded one by one." => "檔案需要逐一下載。", "Back to Files" => "回到檔案列表", "Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔。", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "請分割您的檔案後下載,或請詢問您的系統管理員。", "No source specified when installing app" => "沒有指定應用程式安裝來源", "No href specified when installing app from http" => "從 http 安裝應用程式,找不到 href 屬性", "No path specified when installing app from local file" => "從本地檔案安裝應用程式時沒有指定路徑", @@ -39,13 +39,8 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s 資料庫名稱不能包含小數點", "MS SQL username and/or password not valid: %s" => "MS SQL 使用者和/或密碼無效:%s", "You need to enter either an existing account or the administrator." => "您必須輸入一個現有的帳號或管理員帳號。", -"MySQL username and/or password not valid" => "MySQL 用戶名和/或密碼無效", "DB Error: \"%s\"" => "資料庫錯誤:\"%s\"", "Offending command was: \"%s\"" => "有問題的指令是:\"%s\"", -"MySQL user '%s'@'localhost' exists already." => "MySQL 使用者 '%s'@'localhost' 已經存在。", -"Drop this user from MySQL" => "在 MySQL 移除這個使用者", -"MySQL user '%s'@'%%' already exists" => "MySQL 使用者 '%s'@'%%' 已經存在", -"Drop this user from MySQL." => "在 MySQL 移除這個使用者。", "Oracle connection could not be established" => "無法建立 Oracle 資料庫連線", "Oracle username and/or password not valid" => "Oracle 用戶名和/或密碼無效", "Offending command was: \"%s\", name: %s, password: %s" => "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"", diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 67cbc6655d..47855aa3f3 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -1,7 +1,10 @@ "التشفير", "Unable to load list from App Store" => "فشل تحميل القائمة من الآب ستور", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", +"Your full name has been changed." => "اسمك الكامل تم تغييره.", +"Unable to change full name" => "لم يتم التمكن من تغيير اسمك الكامل", "Group already exists" => "المجموعة موجودة مسبقاً", "Unable to add group" => "فشل إضافة المجموعة", "Email saved" => "تم حفظ البريد الإلكتروني", @@ -14,16 +17,26 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "فشل إضافة المستخدم الى المجموعة %s", "Unable to remove user from group %s" => "فشل إزالة المستخدم من المجموعة %s", "Couldn't update app." => "تعذر تحديث التطبيق.", +"Wrong password" => "كلمة مرور خاطئة", +"No user supplied" => "لم يتم توفير مستخدم ", +"Please provide an admin recovery password, otherwise all user data will be lost" => "يرجى توفير كلمة مرور المسؤول المستردة, وإلا سيتم فقد جميع بيانات المستخدم ", +"Wrong admin recovery password. Please check the password and try again." => "خطا في كلمة مرور المسؤول المستردة, يرجى التاكد من كلمة المرور والمحاولة مرة اخرى.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Back-end لا يدعم تغيير كلمة المرور, لاكن مفتاح تشفير المستخدمين تم تحديثة بنجاح.", +"Unable to change password" => "لا يمكن تغيير كلمة المرور", +"User Documentation" => "كتاب توثيق المستخدم", "Update to {appversion}" => "تم التحديث الى ", "Disable" => "إيقاف", "Enable" => "تفعيل", "Please wait...." => "الرجاء الانتظار ...", +"Error while disabling app" => "خطا عند تعطيل البرنامج", +"Error while enabling app" => "خطا عند تفعيل البرنامج ", "Updating...." => "جاري التحديث ...", "Error while updating app" => "حصل خطأ أثناء تحديث التطبيق", "Error" => "خطأ", "Update" => "حدث", "Updated" => "تم التحديث بنجاح", -"Saving..." => "جاري الحفظ...", +"Select a profile picture" => "اختر صورة الملف الشخصي ", +"Decrypting files... Please wait, this can take some time." => "فك تشفير الملفات... يرجى الانتظار, من الممكن ان ياخذ بعض الوقت.", "deleted" => "تم الحذف", "undo" => "تراجع", "Unable to remove user" => "تعذر حذف المستخدم", @@ -34,27 +47,50 @@ $TRANSLATIONS = array( "A valid username must be provided" => "يجب ادخال اسم مستخدم صحيح", "Error creating user" => "حصل خطأ اثناء انشاء مستخدم", "A valid password must be provided" => "يجب ادخال كلمة مرور صحيحة", +"Warning: Home directory for user \"{user}\" already exists" => "تحذير: المجلد الرئيسي لـ المستخدم \"{user}\" موجود مسبقا", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "كل شيء (مشاكل فادحة, اخطاء , تحذيرات , معلومات , تصحيح الاخطاء)", +"Info, warnings, errors and fatal issues" => "معلومات , تحذيرات , اخطاء , مشاكل فادحة ", +"Warnings, errors and fatal issues" => "تحذيرات , اخطاء , مشاكل فادحة ", +"Errors and fatal issues" => "اخطاء ومشاكل فادحة ", +"Fatal issues only" => "مشاكل فادحة فقط ", "Security Warning" => "تحذير أمان", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "انت تستخدم %s عن طريق HTTP . نحن نقترح باصرار ان تهيء الخادم ليتمكن من الوصول عن طريق HTTPS.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "مجلد data و ملفاتك يمكن الوصول لها عن طريق الانترنت. ملف .htaccess لا يمكن تشغيلة. نحن نقترح باصرار ان تعيد اعداد خادمك لمنع الدخول الى بياناتك عن طريق الانترنت او بالامكان ان تنقل مجلد data خارج document root بشكل مؤقت. ", "Setup Warning" => "تحذير في التنصيب", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة", +"Please double check the installation guides." => "يرجى التحقق دليل التثبيت.", "Module 'fileinfo' missing" => "الموديل 'fileinfo' مفقود", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق ", +"Your PHP version is outdated" => "اصدار PHP الخاص بك قديم", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "اصدار PHP الخاص بك قديم. نحن نقترح لك باصرار ان يتم ترقية الاصدار الى 5.3.8 او احدث بسبب ان الاصدارات القديمة معروفة انها مهمشة. من الممكن ان التنزيل قد لا يتم بصورة صحيحة.", "Locale not working" => "اللغه لا تعمل", +"System locale can not be set to a one which supports UTF-8." => "لا يمكن تعيين لغة النظام الى احد اللغات التي تدعم UTF-8.", +"This means that there might be problems with certain characters in file names." => "هذا يعني انه من الممكن ان يكون هناك مشكلة في بعض الاحرف في اسم الملف.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "نحن باصرار نقترح ان تثبت الحزم المطلوبة في نظامك لدعم احد هذة اللغات: %s.", "Internet connection not working" => "الاتصال بالانترنت لا يعمل", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "هذا الخادم لا يوجد لدية اتصال انترنت. هذا يعني ان بعض الميزات مثل mounting التخزين الخارجي , تنبيهات عن التحديثات او تنزيلات برامج الطرف الثالث3 لا تعمل. الدخول للملفات البعيدة و ارسال تنبيهات البريد الالكتروني ممكن ان لا تعمل ايضا. نحن نقترح بتفعيل اتصال الانترنت لهذا الخادم لتتمكن من الاستفادة من كل الميزات", "Cron" => "مجدول", "Execute one task with each page loaded" => "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه", +"Use systems cron service to call the cron.php file every 15 minutes." => "استخدم نظام خدمة cron لـ استدعاء ملف cron.php كل 15 دقيقة ", "Sharing" => "مشاركة", "Enable Share API" => "السماح بالمشاركة عن طريق الAPI ", "Allow apps to use the Share API" => "السماح للتطبيقات بالمشاركة عن طريق الAPI", "Allow links" => "السماح بالعناوين", "Allow users to share items to the public with links" => "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط ", +"Allow public uploads" => "السماح بالرفع للعامة ", +"Allow users to enable others to upload into their publicly shared folders" => "السماح للمستخدمين بتفعيل الرفع للاخرين من خلال مجلد المشاركة العام ", "Allow resharing" => "السماح بإعادة المشاركة ", "Allow users to share items shared with them again" => "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم", "Allow users to share with anyone" => "السماح للمستعملين بإعادة المشاركة مع أي أحد ", "Allow users to only share with users in their groups" => "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم", +"Allow mail notification" => "السماح بتنبيهات البريد الالكتروني.", +"Allow user to send mail notification for shared files" => "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة ", "Security" => "حماية", "Enforce HTTPS" => "فرض HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او تعطيل SSL enforcement.", "Log" => "سجل", "Log level" => "مستوى السجل", "More" => "المزيد", @@ -66,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "إختر تطبيقاً", "See application page at apps.owncloud.com" => "راجع صفحة التطبيق على apps.owncloud.com", "-licensed by " => "-ترخيص من قبل ", -"User Documentation" => "كتاب توثيق المستخدم", "Administrator Documentation" => "كتاب توثيق المدير", "Online Documentation" => "توثيق متوفر على الشبكة", "Forum" => "منتدى", @@ -81,21 +116,34 @@ $TRANSLATIONS = array( "Current password" => "كلمات السر الحالية", "New password" => "كلمات سر جديدة", "Change password" => "عدل كلمة السر", +"Full Name" => "اسمك الكامل", "Email" => "البريد الإلكترونى", "Your email address" => "عنوانك البريدي", -"Fill in an email address to enable password recovery" => "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور", -"Abort" => "إلغاء.", +"Profile picture" => "صورة الملف الشخصي", +"Upload new" => "رفع الان", +"Select new from Files" => "اختر جديد من الملفات ", +"Remove image" => "احذف الصورة ", +"Either png or jpg. Ideally square but you will be able to crop it." => "سواء png او jpg. بامكانك قص الصورة ", +"Your avatar is provided by your original account." => "صورتك الرمزية يتم توفيرها عن طريق حسابك الاصلي.", +"Choose as profile image" => "اختر صورة الملف الشخصي", "Language" => "اللغة", "Help translate" => "ساعد في الترجمه", "WebDAV" => "WebDAV", -"Encryption" => "التشفير", +"Use this address to access your Files via WebDAV" => "استخدم هذا العنوان لـ الدخول الى ملفاتك عن طريق WebDAV", +"The encryption app is no longer enabled, please decrypt all your files" => "البرنامج المشفر لم يعد مفعل, يرجى فك التشفير عن كل ملفاتك", +"Log-in password" => "كلمه سر الدخول", +"Decrypt all Files" => "فك تشفير جميع الملفات ", "Login Name" => "اسم الدخول", "Create" => "انشئ", +"Admin Recovery Password" => "استعادة كلمة المرور للمسؤول", +"Enter the recovery password in order to recover the users files during password change" => "ادخل كلمة المرور المستعادة من اجل استرداد ملفات المستخدمين اثناء تغيير كلمة المرور", "Default Storage" => "وحدة التخزين الافتراضية", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "يرجى ادخال تخزين quota (مثل:\"512 MB\" او \"12 GB\")", "Unlimited" => "غير محدود", "Other" => "شيء آخر", "Username" => "إسم المستخدم", "Storage" => "وحدة التخزين", +"change full name" => "تغيير اسمك الكامل", "set new password" => "اعداد كلمة مرور جديدة", "Default" => "افتراضي" ); diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 17163027d4..19f1169413 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,5 +1,6 @@ "Криптиране", "Authentication error" => "Възникна проблем с идентификацията", "Group already exists" => "Групата вече съществува", "Unable to add group" => "Невъзможно добавяне на група", @@ -9,6 +10,7 @@ $TRANSLATIONS = array( "Unable to delete user" => "Невъзможно изтриване на потребител", "Language changed" => "Езикът е променен", "Invalid request" => "Невалидна заявка", +"User Documentation" => "Потребителска документация", "Update to {appversion}" => "Обновяване до {appversion}", "Disable" => "Изключено", "Enable" => "Включено", @@ -17,7 +19,6 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Update" => "Обновяване", "Updated" => "Обновено", -"Saving..." => "Записване...", "deleted" => "изтрито", "undo" => "възтановяване", "Groups" => "Групи", @@ -33,7 +34,6 @@ $TRANSLATIONS = array( "Add your App" => "Добавете Ваше приложение", "More Apps" => "Още приложения", "Select an App" => "Изберете приложение", -"User Documentation" => "Потребителска документация", "Administrator Documentation" => "Административна документация", "Online Documentation" => "Документация", "Forum" => "Форум", @@ -47,11 +47,9 @@ $TRANSLATIONS = array( "Change password" => "Промяна на паролата", "Email" => "E-mail", "Your email address" => "Вашия email адрес", -"Fill in an email address to enable password recovery" => "Въведете е-поща за възстановяване на паролата", "Language" => "Език", "Help translate" => "Помогнете с превода", "WebDAV" => "WebDAV", -"Encryption" => "Криптиране", "Login Name" => "Потребител", "Create" => "Създаване", "Default Storage" => "Хранилище по подразбиране", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 55528b71cf..13da9d9fe0 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,5 +1,6 @@ "সংকেতায়ন", "Unable to load list from App Store" => "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়", "Authentication error" => "অনুমোদন ঘটিত সমস্যা", "Group already exists" => "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", @@ -13,11 +14,11 @@ $TRANSLATIONS = array( "Admins can't remove themself from the admin group" => "প্রশাসকবৃন্দ তাদেরকে প্রশাসক গোষ্ঠী থেকে মুছে ফেলতে পারবেন না", "Unable to add user to group %s" => " %s গোষ্ঠীতে ব্যবহারকারী যোগ করা সম্ভব হলো না ", "Unable to remove user from group %s" => "%s গোষ্ঠী থেকে ব্যবহারকারীকে অপসারণ করা সম্ভব হলো না", +"User Documentation" => "ব্যবহারকারী সহায়িকা", "Disable" => "নিষ্ক্রিয়", "Enable" => "সক্রিয় ", "Error" => "সমস্যা", "Update" => "পরিবর্ধন", -"Saving..." => "সংরক্ষণ করা হচ্ছে..", "undo" => "ক্রিয়া প্রত্যাহার", "Groups" => "গোষ্ঠীসমূহ", "Group Admin" => "গোষ্ঠী প্রশাসক", @@ -33,7 +34,6 @@ $TRANSLATIONS = array( "Select an App" => "অ্যাপ নির্বাচন করুন", "See application page at apps.owncloud.com" => "apps.owncloud.com এ অ্যাপ্লিকেসন পৃষ্ঠা দেখুন", "-licensed by " => "-লাইসেন্সধারী ", -"User Documentation" => "ব্যবহারকারী সহায়িকা", "Administrator Documentation" => "প্রশাসক সহায়িকা", "Online Documentation" => "অনলাইন সহায়িকা", "Forum" => "ফোরাম", @@ -49,11 +49,9 @@ $TRANSLATIONS = array( "Change password" => "কূটশব্দ পরিবর্তন করুন", "Email" => "ইমেইল", "Your email address" => "আপনার ই-মেইল ঠিকানা", -"Fill in an email address to enable password recovery" => "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন", "Language" => "ভাষা", "Help translate" => "অনুবাদ করতে সহায়তা করুন", "WebDAV" => "WebDAV", -"Encryption" => "সংকেতায়ন", "Create" => "তৈরী কর", "Default Storage" => "পূর্বনির্ধারিত সংরক্ষণাগার", "Unlimited" => "অসীম", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 316eadc19a..8e441bfa2e 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,5 +1,6 @@ "Xifrat", "Unable to load list from App Store" => "No s'ha pogut carregar la llista des de l'App Store", "Authentication error" => "Error d'autenticació", "Your full name has been changed." => "El vostre nom complet ha canviat.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "La contrasenya de recuperació d'administrador és incorrecta. Comproveu-la i torneu-ho a intentar.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "El dorsal no permet canviar la contrasenya, però la clau d'encripació d'usuaris s'ha actualitzat correctament.", "Unable to change password" => "No es pot canviar la contrasenya", +"User Documentation" => "Documentació d'usuari", "Update to {appversion}" => "Actualitza a {appversion}", "Disable" => "Desactiva", "Enable" => "Habilita", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Actualitzada", "Select a profile picture" => "Seleccioneu una imatge de perfil", "Decrypting files... Please wait, this can take some time." => "Desencriptant fitxers... Espereu, això pot trigar una estona.", -"Saving..." => "Desant...", "deleted" => "esborrat", "undo" => "desfés", "Unable to remove user" => "No s'ha pogut eliminar l'usuari", @@ -61,6 +62,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Comproveu les guies d'instal·lació.", "Module 'fileinfo' missing" => "No s'ha trobat el mòdul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.", +"Your PHP version is outdated" => "La versió de PHP és obsoleta", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "La versió de PHP és obsoleta. Us recomanem fermament que actualitzeu a la versió 5.3.8 o superior perquè les versions anteriors no funcionen. La instal·lació podria no funcionar correctament.", "Locale not working" => "Locale no funciona", "System locale can not be set to a one which supports UTF-8." => "No s'ha pogut establir cap localització del sistema amb suport per UTF-8.", "This means that there might be problems with certain characters in file names." => "Això podria comportar problemes amb alguns caràcters en els noms dels fitxer.", @@ -99,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", "-licensed by " => "-propietat de ", -"User Documentation" => "Documentació d'usuari", "Administrator Documentation" => "Documentació d'administrador", "Online Documentation" => "Documentació en línia", "Forum" => "Fòrum", @@ -117,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Nom complet", "Email" => "Correu electrònic", "Your email address" => "Correu electrònic", -"Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", "Profile picture" => "Foto de perfil", "Upload new" => "Puja'n una de nova", "Select new from Files" => "Selecciona'n una de nova dels fitxers", "Remove image" => "Elimina imatge", "Either png or jpg. Ideally square but you will be able to crop it." => "Pot ser png o jpg. Idealment quadrada, però podreu retallar-la.", "Your avatar is provided by your original account." => "El vostre compte original proporciona l'avatar.", -"Abort" => "Cancel·la", "Choose as profile image" => "Selecciona com a imatge de perfil", "Language" => "Idioma", "Help translate" => "Ajudeu-nos amb la traducció", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Useu aquesta adreça per accedir als fitxers via WebDAV", -"Encryption" => "Xifrat", "The encryption app is no longer enabled, please decrypt all your files" => "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers", "Log-in password" => "Contrasenya d'accés", "Decrypt all Files" => "Desencripta tots els fitxers", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index c89b3b6a5d..6ca22dfc2f 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,5 +1,6 @@ "Šifrování", "Unable to load list from App Store" => "Nelze načíst seznam z App Store", "Authentication error" => "Chyba přihlášení", "Your full name has been changed." => "Vaše celé jméno bylo změněno.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Chybné administrátorské heslo pro obnovu. Překontrolujte správnost hesla a zkuste to znovu.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Úložiště nepodporuje změnu hesla, ale šifrovací klíč uživatelů byl úspěšně změněn.", "Unable to change password" => "Změna hesla se nezdařila", +"User Documentation" => "Uživatelská dokumentace", "Update to {appversion}" => "Aktualizovat na {appversion}", "Disable" => "Zakázat", "Enable" => "Povolit", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Aktualizováno", "Select a profile picture" => "Vyberte profilový obrázek", "Decrypting files... Please wait, this can take some time." => "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu.", -"Saving..." => "Ukládám...", "deleted" => "smazáno", "undo" => "vrátit zpět", "Unable to remove user" => "Nelze odebrat uživatele", @@ -61,8 +62,8 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Zkontrolujte prosím znovu instalační příručku.", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", -"Your PHP version is outdated" => "Tato verze PHP je zastaralá.", -"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." => "Tato verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze jsou chybné. Je možné, že tato instalace nebude fungovat správně.", +"Your PHP version is outdated" => "Vaše verze PHP je zastaralá", +"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." => "Vámi používaná verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze obsahují chyby. Je možné, že tato instalace nebude fungovat správně.", "Locale not working" => "Lokalizace nefunguje", "System locale can not be set to a one which supports UTF-8." => "Není možné nastavit znakovou sadu, která podporuje UTF-8.", "This means that there might be problems with certain characters in file names." => "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů.", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", "-licensed by " => "-licencováno ", -"User Documentation" => "Uživatelská dokumentace", "Administrator Documentation" => "Dokumentace správce", "Online Documentation" => "Online dokumentace", "Forum" => "Fórum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Celé jméno", "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", -"Fill in an email address to enable password recovery" => "Pro povolení obnovy hesla vyplňte e-mailovou adresu", "Profile picture" => "Profilový obrázek", "Upload new" => "Nahrát nový", "Select new from Files" => "Vyberte nový ze souborů", "Remove image" => "Odebrat obrázek", "Either png or jpg. Ideally square but you will be able to crop it." => "png nebo jpg, nejlépe čtvercový, ale budete mít možnost jej oříznout.", "Your avatar is provided by your original account." => "Váš avatar je poskytován Vaším původním účtem.", -"Abort" => "Přerušit", "Choose as profile image" => "Vybrat jako profilový obrázek", "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV", -"Encryption" => "Šifrování", "The encryption app is no longer enabled, please decrypt all your files" => "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory", "Log-in password" => "Přihlašovací heslo", "Decrypt all Files" => "Odšifrovat všechny soubory", diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index da8d02a9e4..8e21363d12 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -1,9 +1,9 @@ "Amgryptiad", "Authentication error" => "Gwall dilysu", "Invalid request" => "Cais annilys", "Error" => "Gwall", -"Saving..." => "Yn cadw...", "undo" => "dadwneud", "Groups" => "Grwpiau", "Delete" => "Dileu", @@ -12,7 +12,6 @@ $TRANSLATIONS = array( "Password" => "Cyfrinair", "New password" => "Cyfrinair newydd", "Email" => "E-bost", -"Encryption" => "Amgryptiad", "Other" => "Arall", "Username" => "Enw defnyddiwr" ); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 6fe3cf6c39..607072b52b 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,5 +1,6 @@ "Kryptering", "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", "Your full name has been changed." => "Dit fulde navn er blevet ændret.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Forkert admin gendannelseskode. Se venligst koden efter og prøv igen.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Serveren understøtter ikke kodeordsskifte, men brugernes krypteringsnøgle blev opdateret.", "Unable to change password" => "Kunne ikke ændre kodeord", +"User Documentation" => "Brugerdokumentation", "Update to {appversion}" => "Opdatér til {appversion}", "Disable" => "Deaktiver", "Enable" => "Aktiver", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Opdateret", "Select a profile picture" => "Vælg et profilbillede", "Decrypting files... Please wait, this can take some time." => "Dekryptere filer... Vent venligst, dette kan tage lang tid. ", -"Saving..." => "Gemmer...", "deleted" => "Slettet", "undo" => "fortryd", "Unable to remove user" => "Kan ikke fjerne bruger", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "-licensed by " => "-licenseret af ", -"User Documentation" => "Brugerdokumentation", "Administrator Documentation" => "Administrator Dokumentation", "Online Documentation" => "Online dokumentation", "Forum" => "Forum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Fulde navn", "Email" => "E-mail", "Your email address" => "Din emailadresse", -"Fill in an email address to enable password recovery" => "Indtast en emailadresse for at kunne få påmindelse om adgangskode", "Profile picture" => "Profilbillede", "Upload new" => "Upload nyt", "Select new from Files" => "Vælg nyt fra Filer", "Remove image" => "Fjern billede", "Either png or jpg. Ideally square but you will be able to crop it." => "Enten png eller jpg. Ideelt firkantet men du har mulighed for at beskære det. ", "Your avatar is provided by your original account." => "Din avatar kommer fra din oprindelige konto.", -"Abort" => "Afbryd", "Choose as profile image" => "Vælg som profilbillede", "Language" => "Sprog", "Help translate" => "Hjælp med oversættelsen", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Brug denne adresse for at tilgå dine filer via WebDAV", -"Encryption" => "Kryptering", "The encryption app is no longer enabled, please decrypt all your files" => "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer", "Log-in password" => "Log-in kodeord", "Decrypt all Files" => "Dekrypter alle Filer ", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index b9432f187e..1ee82afce2 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,5 +1,6 @@ "Verschlüsselung", "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Fehler bei der Anmeldung", "Your full name has been changed." => "Dein vollständiger Name ist geändert worden.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Falsches Wiederherstellungspasswort für das Admin-Konto. Bitte überprüfe das Passwort und versuche es erneut.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Das Back-End unterstützt die Passwortänderung nicht, aber der Benutzerschlüssel wurde erfolgreich aktualisiert.", "Unable to change password" => "Passwort konnte nicht geändert werden", +"User Documentation" => "Dokumentation für Benutzer", "Update to {appversion}" => "Aktualisiere zu {appversion}", "Disable" => "Deaktivieren", "Enable" => "Aktivieren", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Aktualisiert", "Select a profile picture" => "Wähle ein Profilbild", "Decrypting files... Please wait, this can take some time." => "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen.", -"Saving..." => "Speichern...", "deleted" => "gelöscht", "undo" => "rückgängig machen", "Unable to remove user" => "Benutzer konnte nicht entfernt werden.", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Wähle eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen findest Du auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", -"User Documentation" => "Dokumentation für Benutzer", "Administrator Documentation" => "Dokumentation für Administratoren", "Online Documentation" => "Online-Dokumentation", "Forum" => "Forum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Vollständiger Name", "Email" => "E-Mail", "Your email address" => "Deine E-Mail-Adresse", -"Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Profile picture" => "Profilbild", "Upload new" => "Neues hochladen", "Select new from Files" => "Neues aus den Dateien wählen", "Remove image" => "Bild entfernen", "Either png or jpg. Ideally square but you will be able to crop it." => "Entweder PNG oder JPG. Im Idealfall quadratisch, aber du kannst es zuschneiden.", "Your avatar is provided by your original account." => "Dein Avatar wird von Deinem ursprünglichenKonto verwendet.", -"Abort" => "Abbrechen", "Choose as profile image" => "Als Profilbild wählen", "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen", -"Encryption" => "Verschlüsselung", "The encryption app is no longer enabled, please decrypt all your files" => "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten.", "Log-in password" => "Login-Passwort", "Decrypt all Files" => "Alle Dateien entschlüsseln", diff --git a/settings/l10n/de_AT.php b/settings/l10n/de_AT.php index d70f365826..1a9543945c 100644 --- a/settings/l10n/de_AT.php +++ b/settings/l10n/de_AT.php @@ -1,5 +1,10 @@ "Deutsch (Österreich)" +"Invalid request" => "Fehlerhafte Anfrage", +"Delete" => "Löschen", +"__language_name__" => "Deutsch (Österreich)", +"Password" => "Passwort", +"Email" => "E-Mail", +"Other" => "Anderes" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/de_CH.php b/settings/l10n/de_CH.php index c313cd18b4..a0373010d0 100644 --- a/settings/l10n/de_CH.php +++ b/settings/l10n/de_CH.php @@ -1,5 +1,6 @@ "Verschlüsselung", "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Authentifizierungs-Fehler", "Group already exists" => "Die Gruppe existiert bereits", @@ -14,6 +15,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", "Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", "Couldn't update app." => "Die App konnte nicht aktualisiert werden.", +"User Documentation" => "Dokumentation für Benutzer", "Update to {appversion}" => "Update zu {appversion}", "Disable" => "Deaktivieren", "Enable" => "Aktivieren", @@ -26,7 +28,6 @@ $TRANSLATIONS = array( "Update" => "Update durchführen", "Updated" => "Aktualisiert", "Decrypting files... Please wait, this can take some time." => "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen.", -"Saving..." => "Speichern...", "deleted" => "gelöscht", "undo" => "rückgängig machen", "Unable to remove user" => "Der Benutzer konnte nicht entfernt werden.", @@ -76,7 +77,6 @@ $TRANSLATIONS = array( "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", -"User Documentation" => "Dokumentation für Benutzer", "Administrator Documentation" => "Dokumentation für Administratoren", "Online Documentation" => "Online-Dokumentation", "Forum" => "Forum", @@ -93,11 +93,9 @@ $TRANSLATIONS = array( "Change password" => "Passwort ändern", "Email" => "E-Mail", "Your email address" => "Ihre E-Mail-Adresse", -"Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", "WebDAV" => "WebDAV", -"Encryption" => "Verschlüsselung", "Log-in password" => "Login-Passwort", "Decrypt all Files" => "Alle Dateien entschlüsseln", "Login Name" => "Loginname", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index ce349b5fcb..b25714da2e 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -1,5 +1,6 @@ "Verschlüsselung", "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Authentifizierungs-Fehler", "Your full name has been changed." => "Ihr vollständiger Name ist geändert worden.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Falsches Wiederherstellungspasswort für das Admin-Konto. Bitte überprüfen Sie das Passwort und versuchen Sie es erneut.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Das Back-End unterstützt die Passwortänderung nicht, aber der Benutzerschlüssel wurde erfolgreich aktualisiert.", "Unable to change password" => "Passwort konnte nicht geändert werden", +"User Documentation" => "Dokumentation für Benutzer", "Update to {appversion}" => "Update zu {appversion}", "Disable" => "Deaktivieren", "Enable" => "Aktivieren", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Aktualisiert", "Select a profile picture" => "Wählen Sie ein Profilbild", "Decrypting files... Please wait, this can take some time." => "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen.", -"Saving..." => "Speichern...", "deleted" => "gelöscht", "undo" => "rückgängig machen", "Unable to remove user" => "Der Benutzer konnte nicht entfernt werden.", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", -"User Documentation" => "Dokumentation für Benutzer", "Administrator Documentation" => "Dokumentation für Administratoren", "Online Documentation" => "Online-Dokumentation", "Forum" => "Forum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Vollständiger Name", "Email" => "E-Mail", "Your email address" => "Ihre E-Mail-Adresse", -"Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Profile picture" => "Profilbild", "Upload new" => "Neues hochladen", "Select new from Files" => "Neues aus den Dateien wählen", "Remove image" => "Bild entfernen", "Either png or jpg. Ideally square but you will be able to crop it." => "Entweder PNG oder JPG. Im Idealfall quadratisch, aber Sie können es zuschneiden.", "Your avatar is provided by your original account." => "Ihr Avatar wird von Ihrerem ursprünglichenKonto verwendet.", -"Abort" => "Abbrechen", "Choose as profile image" => "Als Profilbild wählen", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen", -"Encryption" => "Verschlüsselung", "The encryption app is no longer enabled, please decrypt all your files" => "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten", "Log-in password" => "Login-Passwort", "Decrypt all Files" => "Alle Dateien entschlüsseln", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index ab285389a5..10653989a8 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,5 +1,6 @@ "Κρυπτογράφηση", "Unable to load list from App Store" => "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", "Your full name has been changed." => "Το πλήρες όνομά σας άλλαξε.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Λάθος κωδικός ανάκτησης διαχειριστή. Παρακαλώ ελέγξτε τον κωδικό και δοκιμάστε ξανά.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Το βασικό πλαίσιο δεν υποστηρίζει αλλαγή κωδικού, αλλά το κλειδί κρυπτογράφησης των χρηστών ενημερώθηκε επιτυχώς.", "Unable to change password" => "Αδυναμία αλλαγής συνθηματικού", +"User Documentation" => "Τεκμηρίωση Χρήστη", "Update to {appversion}" => "Ενημέρωση σε {appversion}", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Ενημερώθηκε", "Select a profile picture" => "Επιλογή εικόνας προφίλ", "Decrypting files... Please wait, this can take some time." => "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο.", -"Saving..." => "Γίνεται αποθήκευση...", "deleted" => "διαγράφηκε", "undo" => "αναίρεση", "Unable to remove user" => "Αδυναμία αφαίρεση χρήστη", @@ -95,21 +96,20 @@ $TRANSLATIONS = array( "More" => "Περισσότερα", "Less" => "Λιγότερα", "Version" => "Έκδοση", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", -"Add your App" => "Πρόσθεστε τη Δικιά σας Εφαρμογή", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud. Ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", +"Add your App" => "Προσθέστε Δικιά σας Εφαρμογή", "More Apps" => "Περισσότερες Εφαρμογές", "Select an App" => "Επιλέξτε μια Εφαρμογή", "See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", -"-licensed by " => "-άδεια από ", -"User Documentation" => "Τεκμηρίωση Χρήστη", +"-licensed by " => "Άδεια χρήσης από ", "Administrator Documentation" => "Τεκμηρίωση Διαχειριστή", "Online Documentation" => "Τεκμηρίωση στο Διαδίκτυο", "Forum" => "Φόρουμ", "Bugtracker" => "Bugtracker", "Commercial Support" => "Εμπορική Υποστήριξη", "Get the apps to sync your files" => "Λήψη της εφαρμογής για συγχρονισμό των αρχείων σας", -"Show First Run Wizard again" => "Προβολή Πρώτης Εκτέλεσης Οδηγού πάλι", -"You have used %s of the available %s" => "Χρησιμοποιήσατε %s από διαθέσιμα %s", +"Show First Run Wizard again" => "Προβολή Οδηγού Πρώτης Εκτέλεσης ξανά", +"You have used %s of the available %s" => "Χρησιμοποιήσατε %s από τα %s διαθέσιμα", "Password" => "Συνθηματικό", "Your password was changed" => "Το συνθηματικό σας έχει αλλάξει", "Unable to change your password" => "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", @@ -117,22 +117,19 @@ $TRANSLATIONS = array( "New password" => "Νέο συνθηματικό", "Change password" => "Αλλαγή συνθηματικού", "Full Name" => "Πλήρες όνομα", -"Email" => "Ηλ. ταχυδρομείο", -"Your email address" => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας", -"Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", +"Email" => "Ηλεκτρονικό ταχυδρομείο", +"Your email address" => "Η διεύθυνση ηλ. ταχυδρομείου σας", "Profile picture" => "Φωτογραφία προφίλ", "Upload new" => "Μεταφόρτωση νέου", "Select new from Files" => "Επιλογή νέου από τα Αρχεία", "Remove image" => "Αφαίρεση εικόνας", "Either png or jpg. Ideally square but you will be able to crop it." => "Είτε png ή jpg. Ιδανικά τετράγωνη αλλά θα είστε σε θέση να την περικόψετε.", "Your avatar is provided by your original account." => "Το άβατάρ σας παρέχεται από τον αρχικό σας λογαριασμό.", -"Abort" => "Ματαίωση", "Choose as profile image" => "Επιλογή εικόνας προφίλ", "Language" => "Γλώσσα", "Help translate" => "Βοηθήστε στη μετάφραση", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Χρήση αυτής της διεύθυνσης πρόσβαση των Αρχείων σας μέσω WebDAV", -"Encryption" => "Κρυπτογράφηση", +"Use this address to access your Files via WebDAV" => "Χρησιμοποιήστε αυτήν την διεύθυνση για να αποκτήσετε πρόσβαση στα αρχεία σας μέσω WebDAV", "The encryption app is no longer enabled, please decrypt all your files" => "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας", "Log-in password" => "Συνθηματικό εισόδου", "Decrypt all Files" => "Αποκρυπτογράφηση όλων των Αρχείων", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 5f7b6e1fe0..dafd8ab6d8 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -1,5 +1,6 @@ "Encryption", "Unable to load list from App Store" => "Unable to load list from App Store", "Authentication error" => "Authentication error", "Your full name has been changed." => "Your full name has been changed.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Incorrect admin recovery password. Please check the password and try again.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Back-end doesn't support password change, but the user's encryption key was successfully updated.", "Unable to change password" => "Unable to change password", +"User Documentation" => "User Documentation", "Update to {appversion}" => "Update to {appversion}", "Disable" => "Disable", "Enable" => "Enable", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Updated", "Select a profile picture" => "Select a profile picture", "Decrypting files... Please wait, this can take some time." => "Decrypting files... Please wait, this can take some time.", -"Saving..." => "Saving...", "deleted" => "deleted", "undo" => "undo", "Unable to remove user" => "Unable to remove user", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Select an App", "See application page at apps.owncloud.com" => "See application page at apps.owncloud.com", "-licensed by " => "-licensed by ", -"User Documentation" => "User Documentation", "Administrator Documentation" => "Administrator Documentation", "Online Documentation" => "Online Documentation", "Forum" => "Forum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Full Name", "Email" => "Email", "Your email address" => "Your email address", -"Fill in an email address to enable password recovery" => "Fill in an email address to enable password recovery", "Profile picture" => "Profile picture", "Upload new" => "Upload new", "Select new from Files" => "Select new from Files", "Remove image" => "Remove image", "Either png or jpg. Ideally square but you will be able to crop it." => "Either png or jpg. Ideally square but you will be able to crop it.", "Your avatar is provided by your original account." => "Your avatar is provided by your original account.", -"Abort" => "Abort", "Choose as profile image" => "Choose as profile image", "Language" => "Language", "Help translate" => "Help translate", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Use this address to access your Files via WebDAV", -"Encryption" => "Encryption", "The encryption app is no longer enabled, please decrypt all your files" => "The encryption app is no longer enabled, please decrypt all your files", "Log-in password" => "Log-in password", "Decrypt all Files" => "Decrypt all Files", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 4c797e1a8d..cd174cdf4e 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,5 +1,6 @@ "Ĉifrado", "Unable to load list from App Store" => "Ne eblis ŝargi liston el aplikaĵovendejo", "Authentication error" => "Aŭtentiga eraro", "Group already exists" => "La grupo jam ekzistas", @@ -13,11 +14,11 @@ $TRANSLATIONS = array( "Admins can't remove themself from the admin group" => "Administrantoj ne povas forigi sin mem el la administra grupo.", "Unable to add user to group %s" => "Ne eblis aldoni la uzanton al la grupo %s", "Unable to remove user from group %s" => "Ne eblis forigi la uzantan el la grupo %s", +"User Documentation" => "Dokumentaro por uzantoj", "Disable" => "Malkapabligi", "Enable" => "Kapabligi", "Error" => "Eraro", "Update" => "Ĝisdatigi", -"Saving..." => "Konservante...", "deleted" => "forigita", "undo" => "malfari", "Groups" => "Grupoj", @@ -47,7 +48,6 @@ $TRANSLATIONS = array( "Select an App" => "Elekti aplikaĵon", "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", "-licensed by " => "-permesilhavigita de ", -"User Documentation" => "Dokumentaro por uzantoj", "Administrator Documentation" => "Dokumentaro por administrantoj", "Online Documentation" => "Reta dokumentaro", "Forum" => "Forumo", @@ -63,12 +63,10 @@ $TRANSLATIONS = array( "Change password" => "Ŝanĝi la pasvorton", "Email" => "Retpoŝto", "Your email address" => "Via retpoŝta adreso", -"Fill in an email address to enable password recovery" => "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron", "Profile picture" => "Profila bildo", "Language" => "Lingvo", "Help translate" => "Helpu traduki", "WebDAV" => "WebDAV", -"Encryption" => "Ĉifrado", "Create" => "Krei", "Default Storage" => "Defaŭlta konservejo", "Unlimited" => "Senlima", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index fbd9840982..ac256a326e 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,5 +1,6 @@ "Cifrado", "Unable to load list from App Store" => "No se pudo cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", "Your full name has been changed." => "Se ha cambiado su nombre completo.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.", "Unable to change password" => "No se ha podido cambiar la contraseña", +"User Documentation" => "Documentación de usuario", "Update to {appversion}" => "Actualizado a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Actualizado", "Select a profile picture" => "Seleccionar una imagen de perfil", "Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.", -"Saving..." => "Guardando...", "deleted" => "eliminado", "undo" => "deshacer", "Unable to remove user" => "Imposible eliminar al usuario", @@ -61,7 +62,7 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", "Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", -"Your PHP version is outdated" => "Su versión de PHP ha caducado", +"Your PHP version is outdated" => "Su versión de PHP no está actualizada", "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello.", "Locale not working" => "La configuración regional no está funcionando", "System locale can not be set to a one which supports UTF-8." => "No se puede escoger una configuración regional que soporte UTF-8.", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Ver la página de aplicaciones en apps.owncloud.com", "-licensed by " => "-licencia otorgada por ", -"User Documentation" => "Documentación de usuario", "Administrator Documentation" => "Documentación de administrador", "Online Documentation" => "Documentación en línea", "Forum" => "Foro", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Nombre completo", "Email" => "Correo electrónico", "Your email address" => "Su dirección de correo", -"Fill in an email address to enable password recovery" => "Escriba una dirección de correo electrónico para restablecer la contraseña", "Profile picture" => "Foto de perfil", "Upload new" => "Subir otra", "Select new from Files" => "Seleccionar otra desde Archivos", "Remove image" => "Borrar imagen", "Either png or jpg. Ideally square but you will be able to crop it." => "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo.", "Your avatar is provided by your original account." => "Su avatar es proporcionado por su cuenta original.", -"Abort" => "Cancelar", "Choose as profile image" => "Seleccionar como imagen de perfil", "Language" => "Idioma", "Help translate" => "Ayúdanos a traducir", "WebDAV" => "WebDAV", -"Use this address to access your Files via WebDAV" => "Utilice esta dirección para acceder a sus archivos vía WebDAV", -"Encryption" => "Cifrado", +"Use this address to access your Files via WebDAV" => "Utilice esta dirección paraacceder a sus archivos a través de WebDAV", "The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos", "Log-in password" => "Contraseña de acceso", "Decrypt all Files" => "Descifrar archivos", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 44c9964778..c28df81bd7 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,7 +1,10 @@ "Encriptación", "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", "Authentication error" => "Error al autenticar", +"Your full name has been changed." => "Su nombre completo ha sido cambiado.", +"Unable to change full name" => "Imposible cambiar el nombre completo", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", "Email saved" => "e-mail guardado", @@ -14,6 +17,13 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "No fue posible agregar el usuario al grupo %s", "Unable to remove user from group %s" => "No es posible borrar al usuario del grupo %s", "Couldn't update app." => "No se pudo actualizar la App.", +"Wrong password" => "Clave incorrecta", +"No user supplied" => "No se ha indicado el usuario", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Por favor provea de una contraseña de recuperación administrativa, sino se perderá todos los datos del usuario", +"Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación administrativa incorrecta. Por favor, chequee la clave e intente de nuevo", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero las claves de encriptación fueron subidas exitosamente.", +"Unable to change password" => "Imposible cambiar la contraseña", +"User Documentation" => "Documentación de Usuario", "Update to {appversion}" => "Actualizar a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -25,8 +35,8 @@ $TRANSLATIONS = array( "Error" => "Error", "Update" => "Actualizar", "Updated" => "Actualizado", +"Select a profile picture" => "Seleccionar una imágen de perfil", "Decrypting files... Please wait, this can take some time." => "Desencriptando archivos... Por favor espere, esto puede tardar.", -"Saving..." => "Guardando...", "deleted" => "borrado", "undo" => "deshacer", "Unable to remove user" => "Imposible borrar usuario", @@ -37,19 +47,33 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Debe ingresar un nombre de usuario válido", "Error creating user" => "Error creando usuario", "A valid password must be provided" => "Debe ingresar una contraseña válida", +"Warning: Home directory for user \"{user}\" already exists" => "Advertencia: El directorio Home del usuario \"{user}\" ya existe", "__language_name__" => "Castellano (Argentina)", +"Everything (fatal issues, errors, warnings, info, debug)" => "Todo (notificaciones fatales, errores, advertencias, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, advertencias, errores y notificaciones fatales", +"Warnings, errors and fatal issues" => "Advertencias, errores y notificaciones fatales", +"Errors and fatal issues" => "Errores y notificaciones fatales", +"Fatal issues only" => "Notificaciones fatales solamente", "Security Warning" => "Advertencia de seguridad", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está accediendo %s vía HTTP. Se sugiere fuertemente que configure su servidor para requerir el uso de HTTPS en vez del otro.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "El directorio de datos y tus archivos probablemente sean accesibles desde Internet. El archivo .htaccess no funciona. Sugerimos fuertemente que configures tu servidor web de forma tal que el archivo de directorios no sea accesible o muevas el mismo fuera de la raíz de los documentos del servidor web.", "Setup Warning" => "Alerta de Configuración", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the installation guides." => "Por favor, cheque bien la guía de instalación.", "Module 'fileinfo' missing" => "El módulo 'fileinfo' no existe", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", +"Your PHP version is outdated" => "Su versión de PHP está fuera de término", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Su versión de PHP está fuera de término. Recomendamos fuertemente actualizar a 5.3.8 o a una más nueva porque se sabe que versiones anteriores están falladas. Es posible que esta instalación no funcione adecuadamente.", "Locale not working" => "\"Locale\" no está funcionando", +"System locale can not be set to a one which supports UTF-8." => "La localización del sistema no puede cambiarse a una que soporta UTF-8", +"This means that there might be problems with certain characters in file names." => "Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Se sugiere fuertemente instalar los paquetes requeridos en su sistema para soportar uno de las siguientes localizaciones: %s.", "Internet connection not working" => "La conexión a Internet no esta funcionando. ", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "El servidor no posee una conexión a Internet activa. Esto significa que algunas características como el montaje de un almacenamiento externo, las notificaciones acerca de actualizaciones o la instalación de aplicaciones de terceros no funcionarán. El acceso a archivos de forma remota y el envío de correos con notificaciones es posible que tampoco funcionen. Sugerimos habilitar la conexión a Internet para este servidor si deseas tener todas estas características.", "Cron" => "Cron", "Execute one task with each page loaded" => "Ejecutá una tarea con cada pagina cargada.", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registrado en el servicio webcron para llamarlo cada 15 minutos usando http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Usar el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", "Sharing" => "Compartiendo", "Enable Share API" => "Habilitar Share API", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la Share API", @@ -61,6 +85,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Permite a los usuarios volver a compartir items que les fueron compartidos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", +"Allow mail notification" => "Permitir notificaciones por correo", +"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo para archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada.", @@ -76,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Elegí una App", "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", -"User Documentation" => "Documentación de Usuario", "Administrator Documentation" => "Documentación de Administrador", "Online Documentation" => "Documentación en línea", "Forum" => "Foro", @@ -91,14 +116,21 @@ $TRANSLATIONS = array( "Current password" => "Contraseña actual", "New password" => "Nueva contraseña:", "Change password" => "Cambiar contraseña", +"Full Name" => "Nombre completo", "Email" => "e-mail", "Your email address" => "Tu dirección de e-mail", -"Fill in an email address to enable password recovery" => "Escribí una dirección de e-mail para restablecer la contraseña", -"Abort" => "Abortar", +"Profile picture" => "Imágen de perfil", +"Upload new" => "Subir nuevo", +"Select new from Files" => "Seleccionar nuevo desde archivos", +"Remove image" => "Remover imagen", +"Either png or jpg. Ideally square but you will be able to crop it." => "Sólo png o jpg. Lo ideal que sea cuadrada sino luego podrás recortarlo.", +"Your avatar is provided by your original account." => "Su avatar es proveído por su cuenta original.", +"Choose as profile image" => "Elegir como imagen de perfil", "Language" => "Idioma", "Help translate" => "Ayudanos a traducir", "WebDAV" => "WebDAV", -"Encryption" => "Encriptación", +"Use this address to access your Files via WebDAV" => "Usar esta dirección para acceder a tus archivos vía WebDAV", +"The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de encriptación ya no está habilidata, por favor desencripte todos sus archivos.", "Log-in password" => "Clave de acceso", "Decrypt all Files" => "Desencriptar todos los archivos", "Login Name" => "Nombre de Usuario", @@ -106,10 +138,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "Recuperación de contraseña de administrador", "Enter the recovery password in order to recover the users files during password change" => "Ingresá la contraseña de recuperación para recuperar los archivos de usuario al cambiar contraseña", "Default Storage" => "Almacenamiento Predeterminado", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor ingrese la cuota de almacenamiento (ej.: \"512 MB\" o \"12 GB\")", "Unlimited" => "Ilimitado", "Other" => "Otros", "Username" => "Nombre de usuario", "Storage" => "Almacenamiento", +"change full name" => "Cambiar nombre completo", "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" ); diff --git a/settings/l10n/es_CL.php b/settings/l10n/es_CL.php index 86e66bd482..dabded98f8 100644 --- a/settings/l10n/es_CL.php +++ b/settings/l10n/es_CL.php @@ -1,5 +1,6 @@ "Error", "Password" => "Clave", "Username" => "Usuario" ); diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php index 520ab637ff..81e1af8998 100644 --- a/settings/l10n/es_MX.php +++ b/settings/l10n/es_MX.php @@ -1,5 +1,6 @@ "Cifrado", "Unable to load list from App Store" => "No se pudo cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", "Your full name has been changed." => "Se ha cambiado su nombre completo.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación de administrador incorrecta. Por favor compruebe la contraseña e inténtelo de nuevo.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero la clave de cifrado del usuario ha sido actualizada satisfactoriamente.", "Unable to change password" => "No se ha podido cambiar la contraseña", +"User Documentation" => "Documentación de usuario", "Update to {appversion}" => "Actualizado a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Actualizado", "Select a profile picture" => "Seleccionar una imagen de perfil", "Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.", -"Saving..." => "Guardando...", "deleted" => "eliminado", "undo" => "deshacer", "Unable to remove user" => "Imposible eliminar al usuario", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Ver la página de aplicaciones en apps.owncloud.com", "-licensed by " => "-licencia otorgada por ", -"User Documentation" => "Documentación de usuario", "Administrator Documentation" => "Documentación de administrador", "Online Documentation" => "Documentación en línea", "Forum" => "Foro", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Nombre completo", "Email" => "Correo electrónico", "Your email address" => "Su dirección de correo", -"Fill in an email address to enable password recovery" => "Escriba una dirección de correo electrónico para restablecer la contraseña", "Profile picture" => "Foto de perfil", "Upload new" => "Subir otra", "Select new from Files" => "Seleccionar otra desde Archivos", "Remove image" => "Borrar imagen", "Either png or jpg. Ideally square but you will be able to crop it." => "Archivo PNG o JPG. Preferiblemente cuadrado, pero tendrás la posibilidad de recortarlo.", "Your avatar is provided by your original account." => "Su avatar es proporcionado por su cuenta original.", -"Abort" => "Cancelar", "Choose as profile image" => "Seleccionar como imagen de perfil", "Language" => "Idioma", "Help translate" => "Ayúdanos a traducir", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Utilice esta dirección para acceder a sus archivos vía WebDAV", -"Encryption" => "Cifrado", "The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos", "Log-in password" => "Contraseña de acceso", "Decrypt all Files" => "Descifrar archivos", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index f543652582..53bd2e1f7a 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,5 +1,6 @@ "Krüpteerimine", "Unable to load list from App Store" => "App Store'i nimekirja laadimine ebaõnnestus", "Authentication error" => "Autentimise viga", "Your full name has been changed." => "Sinu täispikk nimi on muudetud.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Vale administraatori taasteparool. Palun kontrolli parooli ning proovi uuesti.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Tagarakend ei toeta parooli vahetust, kuid kasutaja krüptimisvõti uuendati edukalt.", "Unable to change password" => "Ei suuda parooli muuta", +"User Documentation" => "Kasutaja dokumentatsioon", "Update to {appversion}" => "Uuenda versioonile {appversion}", "Disable" => "Lülita välja", "Enable" => "Lülita sisse", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Uuendatud", "Select a profile picture" => "Vali profiili pilt", "Decrypting files... Please wait, this can take some time." => "Dekrüpteerin faile... Palun oota, see võib võtta veidi aega.", -"Saving..." => "Salvestamine...", "deleted" => "kustutatud", "undo" => "tagasi", "Unable to remove user" => "Kasutaja eemaldamine ebaõnnestus", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Vali programm", "See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", "-licensed by " => "-litsenseeritud ", -"User Documentation" => "Kasutaja dokumentatsioon", "Administrator Documentation" => "Administraatori dokumentatsioon", "Online Documentation" => "Online dokumentatsioon", "Forum" => "Foorum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Täispikk nimi", "Email" => "E-post", "Your email address" => "Sinu e-posti aadress", -"Fill in an email address to enable password recovery" => "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress", "Profile picture" => "Profiili pilt", "Upload new" => "Laadi uus üles", "Select new from Files" => "Vali failidest uus", "Remove image" => "Eemalda pilt", "Either png or jpg. Ideally square but you will be able to crop it." => "Kas png või jpg. Võimalikult ruudukujuline, kuid sul on võimalus seda veel lõigata.", "Your avatar is provided by your original account." => "Sinu avatari pakub sinu algne konto.", -"Abort" => "Katkesta", "Choose as profile image" => "Vali profiilipildiks", "Language" => "Keel", "Help translate" => "Aita tõlkida", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Kasuta seda aadressi oma failidele ligipääsuks WebDAV kaudu", -"Encryption" => "Krüpteerimine", "The encryption app is no longer enabled, please decrypt all your files" => "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid", "Log-in password" => "Sisselogimise parool", "Decrypt all Files" => "Dekrüpteeri kõik failid", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 0542deee3d..cfd947c36d 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -1,5 +1,6 @@ "Enkriptazioa", "Unable to load list from App Store" => "Ezin izan da App Dendatik zerrenda kargatu", "Authentication error" => "Autentifikazio errorea", "Your full name has been changed." => "Zure izena aldatu egin da.", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Please provide an admin recovery password, otherwise all user data will be lost" => "Mesedez eman berreskuratzeko administrazio pasahitza, bestela erabiltzaile datu guztiak galduko dira", "Wrong admin recovery password. Please check the password and try again." => "Berreskuratze administradore pasahitz ez egokia. Medesez egiaztatu pasahitza eta saiatu berriz.", "Unable to change password" => "Ezin izan da pasahitza aldatu", +"User Documentation" => "Erabiltzaile dokumentazioa", "Update to {appversion}" => "Eguneratu {appversion}-ra", "Disable" => "Ez-gaitu", "Enable" => "Gaitu", @@ -33,7 +35,6 @@ $TRANSLATIONS = array( "Update" => "Eguneratu", "Updated" => "Eguneratuta", "Select a profile picture" => "Profil argazkia aukeratu", -"Saving..." => "Gordetzen...", "deleted" => "ezabatuta", "undo" => "desegin", "Unable to remove user" => "Ezin izan da erabiltzailea aldatu", @@ -93,7 +94,6 @@ $TRANSLATIONS = array( "Select an App" => "Aukeratu programa bat", "See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", "-licensed by " => "-lizentziatua ", -"User Documentation" => "Erabiltzaile dokumentazioa", "Administrator Documentation" => "Administradore dokumentazioa", "Online Documentation" => "Online dokumentazioa", "Forum" => "Foroa", @@ -111,19 +111,16 @@ $TRANSLATIONS = array( "Full Name" => "Izena", "Email" => "E-posta", "Your email address" => "Zure e-posta", -"Fill in an email address to enable password recovery" => "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko", "Profile picture" => "Profilaren irudia", "Upload new" => "Igo berria", "Select new from Files" => "Hautatu berria Fitxategietatik", "Remove image" => "Irudia ezabatu", "Either png or jpg. Ideally square but you will be able to crop it." => "png edo jpg. Hobe karratua baina mozteko aukera izango duzu.", -"Abort" => "Bertan-behera utzi", "Choose as profile image" => "Profil irudi bezala aukeratu", "Language" => "Hizkuntza", "Help translate" => "Lagundu itzultzen", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko", -"Encryption" => "Enkriptazioa", "The encryption app is no longer enabled, please decrypt all your files" => "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak.", "Log-in password" => "Saioa hasteko pasahitza", "Decrypt all Files" => "Desenkripattu fitxategi guztiak", diff --git a/settings/l10n/eu_ES.php b/settings/l10n/eu_ES.php new file mode 100644 index 0000000000..a43cadd453 --- /dev/null +++ b/settings/l10n/eu_ES.php @@ -0,0 +1,7 @@ + "Eskakizun baliogabea", +"Delete" => "Ezabatu", +"Other" => "Bestea" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index e8582868f3..3883796b59 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -1,5 +1,6 @@ "رمزگذاری", "Unable to load list from App Store" => "قادر به بارگذاری لیست از فروشگاه اپ نیستم", "Authentication error" => "خطا در اعتبار سنجی", "Group already exists" => "این گروه در حال حاضر موجود است", @@ -14,16 +15,26 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "امکان افزودن کاربر به گروه %s نیست", "Unable to remove user from group %s" => "امکان حذف کاربر از گروه %s نیست", "Couldn't update app." => "برنامه را نمی توان به هنگام ساخت.", +"Wrong password" => "رمز عبور اشتباه است", +"No user supplied" => "هیچ کاربری تعریف نشده است", +"Please provide an admin recovery password, otherwise all user data will be lost" => "لطفاً یک رمز مدیریتی برای بازیابی کردن تعریف نمایید. در غیر اینصورت اطلاعات تمامی کاربران از دست خواهند رفت.", +"Wrong admin recovery password. Please check the password and try again." => "رمز مدیریتی بازیابی غلط است. لطفاً رمز را کنترل کرده و دوباره امتحان نمایید.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "سیستم مدیریتی امکان تغییر رمز را پشتیبانی نمی‌کند. ولی کلید رمزنگاری کاربران با موفقیت به روز شد.", +"Unable to change password" => "نمی‌توان رمز را تغییر داد", +"User Documentation" => "مستندات کاربر", "Update to {appversion}" => "بهنگام شده به {appversion}", "Disable" => "غیرفعال", "Enable" => "فعال", "Please wait...." => "لطفا صبر کنید ...", +"Error while disabling app" => "خطا در هنگام غیر فعال سازی برنامه", +"Error while enabling app" => "خطا در هنگام فعال سازی برنامه", "Updating...." => "در حال بروز رسانی...", "Error while updating app" => "خطا در هنگام بهنگام سازی برنامه", "Error" => "خطا", "Update" => "به روز رسانی", "Updated" => "بروز رسانی انجام شد", -"Saving..." => "در حال ذخیره سازی...", +"Select a profile picture" => "انتخاب تصویر پروفایل", +"Decrypting files... Please wait, this can take some time." => "در حال بازگشایی رمز فایل‌ها... لطفاً صبر نمایید. این امر ممکن است مدتی زمان ببرد.", "deleted" => "حذف شده", "undo" => "بازگشت", "Unable to remove user" => "حذف کاربر امکان پذیر نیست", @@ -34,27 +45,39 @@ $TRANSLATIONS = array( "A valid username must be provided" => "نام کاربری صحیح باید وارد شود", "Error creating user" => "خطا در ایجاد کاربر", "A valid password must be provided" => "رمز عبور صحیح باید وارد شود", +"Warning: Home directory for user \"{user}\" already exists" => "اخطار: پوشه‌ی خانه برای کاربر \"{user}\" در حال حاضر وجود دارد", "__language_name__" => "__language_name__", "Security Warning" => "اخطار امنیتی", +"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "به احتمال زیاد پوشه‌ی data و فایل‌های شما از طریق اینترنت قابل دسترسی هستند. فایل .htaccess برنامه کار نمی‌کند. ما شدیداً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که پوشه‌ی data شما غیر قابل دسترسی باشد یا اینکه پوشه‌‎ی data را به خارج از ریشه‌ی اصلی وب سرور انتقال دهید.", "Setup Warning" => "هشدار راه اندازی", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", +"Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "Module 'fileinfo' missing" => "ماژول 'fileinfo' از کار افتاده", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید.", "Locale not working" => "زبان محلی کار نمی کند.", "Internet connection not working" => "اتصال اینترنت کار نمی کند", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "این سرور ارتباط اینترنتی ندارد. این بدین معناست که بعضی از امکانات نظیر مرتبط سازی یک منبع ذخیره‌ی خارجی، اطلاعات رسانی در مورد بروزرسانی‌ها یا نصب برنامه های جانبی کار نمی‌کنند. دسترسی به فایل ها از راه دور و ارسال اطلاع رسانی توسط ایمیل ممکن است همچنان کار نکند. ما پیشنهاد می‌کنیم که ارتباط اینترنتی مربوط به این سرور را فعال کنید تا تمامی امکانات را در اختیار داشته باشید.", "Cron" => "زمانبند", "Execute one task with each page loaded" => "اجرای یک وظیفه با هر بار بارگذاری صفحه", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php در یک سرویس webcron ثبت شده است که هر 15 دقیقه یک بار بر روی بستر http فراخوانی شود.", +"Use systems cron service to call the cron.php file every 15 minutes." => "از سرویس کرون سرور استفاده شده است که فایل cron.php را هر 15 دقیقه یک بار فراخوانی کند.", "Sharing" => "اشتراک گذاری", "Enable Share API" => "فعال کردن API اشتراک گذاری", "Allow apps to use the Share API" => "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری", "Allow links" => "اجازه ی لینک ها", "Allow users to share items to the public with links" => "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها", +"Allow public uploads" => "اجازه بارگذاری عمومی", +"Allow users to enable others to upload into their publicly shared folders" => "به کاربران اجازه داده شود که امکان بارگذاری در پوشه هایی که بصورت عمومی به اشتراک گذاشته اند را برای سایرین فعال سازند", "Allow resharing" => "مجوز اشتراک گذاری مجدد", "Allow users to share items shared with them again" => "اجازه به کاربران برای اشتراک گذاری دوباره با آنها", "Allow users to share with anyone" => "اجازه به کابران برای اشتراک گذاری با همه", "Allow users to only share with users in their groups" => "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان", +"Allow mail notification" => "مجاز نمودن اطلاع رسانی توسط ایمیل", +"Allow user to send mail notification for shared files" => "مجاز نمودن ارسال ایمیل توسط کاربر برای فایل‌های به اشتراک گذاشته شده", "Security" => "امنیت", "Enforce HTTPS" => "وادار کردن HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "کلاینت‌ها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "برای فعال سازی یا عدم فعال سازی اجبار استفاده از SSL، لطفاً از طریق HTTPS به %s وصل شوید.", "Log" => "کارنامه", "Log level" => "سطح ورود", "More" => "بیش‌تر", @@ -66,7 +89,6 @@ $TRANSLATIONS = array( "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", "-licensed by " => "-مجاز از طرف ", -"User Documentation" => "مستندات کاربر", "Administrator Documentation" => "مستندات مدیر", "Online Documentation" => "مستندات آنلاین", "Forum" => "انجمن", @@ -81,14 +103,21 @@ $TRANSLATIONS = array( "Current password" => "گذرواژه کنونی", "New password" => "گذرواژه جدید", "Change password" => "تغییر گذر واژه", +"Full Name" => "نام کامل", "Email" => "ایمیل", "Your email address" => "پست الکترونیکی شما", -"Fill in an email address to enable password recovery" => "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود", "Profile picture" => "تصویر پروفایل", +"Upload new" => "بارگذاری جدید", +"Select new from Files" => "انتخاب جدید از میان فایل ها", +"Remove image" => "تصویر پاک شود", +"Either png or jpg. Ideally square but you will be able to crop it." => "هردوی jpg و png ها مربع گونه می‌باشند. با این حال شما می‌توانید آنها را برش بزنید.", +"Choose as profile image" => "یک تصویر پروفایل انتخاب کنید", "Language" => "زبان", "Help translate" => "به ترجمه آن کمک کنید", "WebDAV" => "WebDAV", -"Encryption" => "رمزگذاری", +"Use this address to access your Files via WebDAV" => "از این آدرس استفاده کنید تا بتوانید به فایل‌های خود توسط WebDAV دسترسی پیدا کنید", +"Log-in password" => "رمز ورود", +"Decrypt all Files" => "تمام فایلها رمزگشایی شود", "Login Name" => "نام کاربری", "Create" => "ایجاد کردن", "Admin Recovery Password" => "مدیریت بازیابی رمز عبور", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 0451703cc7..fbf38e8d99 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,5 +1,6 @@ "Salaus", "Unable to load list from App Store" => "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", "Authentication error" => "Tunnistautumisvirhe", "Your full name has been changed." => "Koko nimesi on muutettu.", @@ -18,6 +19,7 @@ $TRANSLATIONS = array( "Couldn't update app." => "Sovelluksen päivitys epäonnistui.", "Wrong password" => "Väärä salasana", "Unable to change password" => "Salasanan vaihto ei onnistunut", +"User Documentation" => "Käyttäjäohjeistus", "Update to {appversion}" => "Päivitä versioon {appversion}", "Disable" => "Poista käytöstä", "Enable" => "Käytä", @@ -31,7 +33,6 @@ $TRANSLATIONS = array( "Updated" => "Päivitetty", "Select a profile picture" => "Valitse profiilikuva", "Decrypting files... Please wait, this can take some time." => "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa.", -"Saving..." => "Tallennetaan...", "deleted" => "poistettu", "undo" => "kumoa", "Unable to remove user" => "Käyttäjän poistaminen ei onnistunut", @@ -88,7 +89,6 @@ $TRANSLATIONS = array( "Select an App" => "Valitse sovellus", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "-licensed by " => "-lisensoija ", -"User Documentation" => "Käyttäjäohjeistus", "Administrator Documentation" => "Ylläpito-ohjeistus", "Online Documentation" => "Verkko-ohjeistus", "Forum" => "Keskustelupalsta", @@ -106,19 +106,16 @@ $TRANSLATIONS = array( "Full Name" => "Koko nimi", "Email" => "Sähköpostiosoite", "Your email address" => "Sähköpostiosoitteesi", -"Fill in an email address to enable password recovery" => "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa", "Profile picture" => "Profiilikuva", "Upload new" => "Lähetä uusi", "Select new from Files" => "Valitse uusi tiedostoista", "Remove image" => "Poista kuva", "Either png or jpg. Ideally square but you will be able to crop it." => "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa.", -"Abort" => "Keskeytä", "Choose as profile image" => "Valitse profiilikuvaksi", "Language" => "Kieli", "Help translate" => "Auta kääntämisessä", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Käytä tätä osoitetta käyttääksesi tiedostojasi WebDAVin kautta", -"Encryption" => "Salaus", "The encryption app is no longer enabled, please decrypt all your files" => "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus", "Decrypt all Files" => "Pura kaikkien tiedostojen salaus", "Login Name" => "Kirjautumisnimi", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 156533f6fa..6df157f087 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,5 +1,6 @@ "Chiffrement", "Unable to load list from App Store" => "Impossible de charger la liste depuis l'App Store", "Authentication error" => "Erreur d'authentification", "Your full name has been changed." => "Votre nom complet a été modifié.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Mot de passe administrateur de récupération de données invalide. Veuillez vérifier le mot de passe et essayer à nouveau.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "L'infrastructure d'arrière-plan ne supporte pas la modification de mot de passe, mais la clef de chiffrement des utilisateurs a été mise à jour avec succès.", "Unable to change password" => "Impossible de modifier le mot de passe", +"User Documentation" => "Documentation utilisateur", "Update to {appversion}" => "Mettre à jour vers {appversion}", "Disable" => "Désactiver", "Enable" => "Activer", @@ -35,12 +37,11 @@ $TRANSLATIONS = array( "Updated" => "Mise à jour effectuée avec succès", "Select a profile picture" => "Selectionner une photo de profil ", "Decrypting files... Please wait, this can take some time." => "Déchiffrement en cours... Cela peut prendre un certain temps.", -"Saving..." => "Enregistrement...", "deleted" => "supprimé", "undo" => "annuler", "Unable to remove user" => "Impossible de retirer l'utilisateur", "Groups" => "Groupes", -"Group Admin" => "Groupe Admin", +"Group Admin" => "Admin Groupe", "Delete" => "Supprimer", "add group" => "ajouter un groupe", "A valid username must be provided" => "Un nom d'utilisateur valide doit être saisi", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "-licensed by " => "Distribué sous licence , par ", -"User Documentation" => "Documentation utilisateur", "Administrator Documentation" => "Documentation administrateur", "Online Documentation" => "Documentation en ligne", "Forum" => "Forum", @@ -119,33 +119,30 @@ $TRANSLATIONS = array( "Full Name" => "Nom complet", "Email" => "Adresse mail", "Your email address" => "Votre adresse e-mail", -"Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe", "Profile picture" => "Photo de profil", "Upload new" => "Télécharger nouveau", "Select new from Files" => "Sélectionner un nouveau depuis les documents", "Remove image" => "Supprimer l'image", -"Either png or jpg. Ideally square but you will be able to crop it." => "Soit png ou jpg. idéalement carée mais vous pourrez la recadrer .", +"Either png or jpg. Ideally square but you will be able to crop it." => "Soit png ou jpg. Idéalement carrée mais vous pourrez la recadrer.", "Your avatar is provided by your original account." => "Votre avatar est fourni par votre compte original.", -"Abort" => "Abandonner", "Choose as profile image" => "Choisir en temps que photo de profil ", "Language" => "Langue", "Help translate" => "Aidez à traduire", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Utiliser cette adresse pour accéder à vos fichiers par WebDAV", -"Encryption" => "Chiffrement", "The encryption app is no longer enabled, please decrypt all your files" => "L'app de chiffrement n’est plus activée, veuillez déchiffrer tous vos fichiers", "Log-in password" => "Mot de passe de connexion", "Decrypt all Files" => "Déchiffrer tous les fichiers", -"Login Name" => "Nom de la connexion", +"Login Name" => "Nom d'utilisateur", "Create" => "Créer", "Admin Recovery Password" => "Récupération du mot de passe administrateur", "Enter the recovery password in order to recover the users files during password change" => "Entrer le mot de passe de récupération dans le but de récupérer les fichiers utilisateurs pendant le changement de mot de passe", -"Default Storage" => "Support de stockage par défaut", +"Default Storage" => "Espace de stockage par défaut", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")", "Unlimited" => "Illimité", "Other" => "Autre", "Username" => "Nom d'utilisateur", -"Storage" => "Support de stockage", +"Storage" => "Espace de stockage", "change full name" => "Modifier le nom complet", "set new password" => "Changer le mot de passe", "Default" => "Défaut" diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index e345280bdd..d464e01688 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,5 +1,6 @@ "Cifrado", "Unable to load list from App Store" => "Non foi posíbel cargar a lista desde a App Store", "Authentication error" => "Produciuse un erro de autenticación", "Your full name has been changed." => "O seu nome completo foi cambiado", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Contrasinal de recuperación do administrador incorrecto. Comprobe o contrasinal e tenteo de novo.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "A infraestrutura non admite o cambio de contrasinal, mais a chave de cifrado dos usuarios foi actualizada correctamente.", "Unable to change password" => "Non é posíbel cambiar o contrasinal", +"User Documentation" => "Documentación do usuario", "Update to {appversion}" => "Actualizar á {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Actualizado", "Select a profile picture" => "Seleccione unha imaxe para o perfil", "Decrypting files... Please wait, this can take some time." => "Descifrando ficheiros... isto pode levar un anaco.", -"Saving..." => "Gardando...", "deleted" => "eliminado", "undo" => "desfacer", "Unable to remove user" => "Non é posíbel retirar o usuario", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Escolla un aplicativo", "See application page at apps.owncloud.com" => "Consulte a páxina do aplicativo en apps.owncloud.com", "-licensed by " => "-licenciado por", -"User Documentation" => "Documentación do usuario", "Administrator Documentation" => "Documentación do administrador", "Online Documentation" => "Documentación na Rede", "Forum" => "Foro", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Nome completo", "Email" => "Correo", "Your email address" => "O seu enderezo de correo", -"Fill in an email address to enable password recovery" => "Escriba un enderezo de correo para activar o contrasinal de recuperación", "Profile picture" => "Imaxe do perfil", "Upload new" => "Novo envío", "Select new from Files" => "Seleccione unha nova de ficheiros", "Remove image" => "Retirar a imaxe", "Either png or jpg. Ideally square but you will be able to crop it." => "Calquera png ou jpg. É preferíbel que sexa cadrada, mais poderá recortala.", "Your avatar is provided by your original account." => "O seu avatar é fornecido pola súa conta orixinal.", -"Abort" => "Cancelar", "Choose as profile image" => "Escolla unha imaxe para o perfil", "Language" => "Idioma", "Help translate" => "Axude na tradución", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Empregue esta ligazón para acceder aos sus ficheiros mediante WebDAV", -"Encryption" => "Cifrado", "The encryption app is no longer enabled, please decrypt all your files" => "O aplicativo de cifrado non está activado, descifre todos os ficheiros", "Log-in password" => "Contrasinal de acceso", "Decrypt all Files" => "Descifrar todos os ficheiros", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 21c32d0f8e..90b52485da 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -1,5 +1,6 @@ "הצפנה", "Unable to load list from App Store" => "לא ניתן לטעון רשימה מה־App Store", "Authentication error" => "שגיאת הזדהות", "Group already exists" => "הקבוצה כבר קיימת", @@ -14,6 +15,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "לא ניתן להוסיף משתמש לקבוצה %s", "Unable to remove user from group %s" => "לא ניתן להסיר משתמש מהקבוצה %s", "Couldn't update app." => "לא ניתן לעדכן את היישום.", +"User Documentation" => "תיעוד משתמש", "Update to {appversion}" => "עדכון לגרסה {appversion}", "Disable" => "בטל", "Enable" => "הפעלה", @@ -23,7 +25,6 @@ $TRANSLATIONS = array( "Error" => "שגיאה", "Update" => "עדכון", "Updated" => "מעודכן", -"Saving..." => "שמירה…", "deleted" => "נמחק", "undo" => "ביטול", "Unable to remove user" => "לא ניתן להסיר את המשתמש", @@ -64,7 +65,6 @@ $TRANSLATIONS = array( "Select an App" => "בחירת יישום", "See application page at apps.owncloud.com" => "צפה בעמוד הישום ב apps.owncloud.com", "-licensed by " => "ברישיון לטובת ", -"User Documentation" => "תיעוד משתמש", "Administrator Documentation" => "תיעוד מנהלים", "Online Documentation" => "תיעוד מקוון", "Forum" => "פורום", @@ -81,12 +81,10 @@ $TRANSLATIONS = array( "Change password" => "שינוי ססמה", "Email" => "דואר אלקטרוני", "Your email address" => "כתובת הדוא״ל שלך", -"Fill in an email address to enable password recovery" => "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה", "Profile picture" => "תמונת פרופיל", "Language" => "פה", "Help translate" => "עזרה בתרגום", "WebDAV" => "WebDAV", -"Encryption" => "הצפנה", "Login Name" => "שם כניסה", "Create" => "יצירה", "Admin Recovery Password" => "ססמת השחזור של המנהל", diff --git a/settings/l10n/hi.php b/settings/l10n/hi.php index 2c65a26dae..ae32b56262 100644 --- a/settings/l10n/hi.php +++ b/settings/l10n/hi.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "Security Warning" => "सुरक्षा चेतावनी ", "Password" => "पासवर्ड", "New password" => "नया पासवर्ड", -"Abort" => "रद्द करना ", "Username" => "प्रयोक्ता का नाम" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 4a225ed4b8..9d35d243e2 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -9,7 +9,6 @@ $TRANSLATIONS = array( "Disable" => "Isključi", "Enable" => "Uključi", "Error" => "Greška", -"Saving..." => "Spremanje...", "deleted" => "izbrisano", "undo" => "vrati", "Groups" => "Grupe", @@ -29,7 +28,6 @@ $TRANSLATIONS = array( "Change password" => "Izmjena lozinke", "Email" => "e-mail adresa", "Your email address" => "Vaša e-mail adresa", -"Fill in an email address to enable password recovery" => "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke", "Language" => "Jezik", "Help translate" => "Pomoć prevesti", "Create" => "Izradi", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 6b2dc3e017..17cd588d9e 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,5 +1,6 @@ "Titkosítás", "Unable to load list from App Store" => "Nem tölthető le a lista az App Store-ból", "Authentication error" => "Azonosítási hiba", "Your full name has been changed." => "Az Ön teljes nevét módosítottuk.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Hibás admin helyreállítási jelszó. Ellenörizd a jelszót és próbáld újra.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "A back-end nem támogatja a jelszó módosítást, de felhasználó titkosítási kulcsa sikeresen frissítve lett.", "Unable to change password" => "Nem sikerült megváltoztatni a jelszót", +"User Documentation" => "Felhasználói leírás", "Update to {appversion}" => "Frissítés erre a verzióra: {appversion}", "Disable" => "Letiltás", "Enable" => "engedélyezve", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Frissítve", "Select a profile picture" => "Válassz profil képet", "Decrypting files... Please wait, this can take some time." => "File-ok kititkosítása folyamatban... Kérlek várj, ez hosszabb ideig is eltarthat ...", -"Saving..." => "Mentés...", "deleted" => "törölve", "undo" => "visszavonás", "Unable to remove user" => "A felhasználót nem sikerült eltávolítáni", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Válasszon egy alkalmazást", "See application page at apps.owncloud.com" => "Lásd apps.owncloud.com, alkalmazások oldal", "-licensed by " => "-a jogtuladonos ", -"User Documentation" => "Felhasználói leírás", "Administrator Documentation" => "Üzemeltetői leírás", "Online Documentation" => "Online leírás", "Forum" => "Fórum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Teljes név", "Email" => "Email", "Your email address" => "Az Ön email címe", -"Fill in an email address to enable password recovery" => "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!", "Profile picture" => "Profilkép", "Upload new" => "Új feltöltése", "Select new from Files" => "Új kiválasztása Fileokból", "Remove image" => "Kép eltávolítása", "Either png or jpg. Ideally square but you will be able to crop it." => "Egyaránt png vagy jpg. Az ideális ha négyzet alaku, de késöbb még átszabható", "Your avatar is provided by your original account." => "Az avatarod az eredeti fiókod alapján van beállítva.", -"Abort" => "Megszakítás", "Choose as profile image" => "Válassz profil képet", "Language" => "Nyelv", "Help translate" => "Segítsen a fordításban!", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Ezt a címet használd, hogy hozzáférj a fileokhoz WebDAV-on keresztül", -"Encryption" => "Titkosítás", "The encryption app is no longer enabled, please decrypt all your files" => "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak.", "Log-in password" => "Bejelentkezési jelszó", "Decrypt all Files" => "Kititkosítja az összes file-t", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 2ff3f57296..47cc645a71 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,5 +1,6 @@ "Enkripsi", "Unable to load list from App Store" => "Tidak dapat memuat daftar dari App Store", "Authentication error" => "Galat saat autentikasi", "Your full name has been changed." => "Nama lengkap Anda telah diubah", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Sandi pemulihan admin salah. Periksa sandi dan ulangi kembali.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Back-end tidak mendukung perubahan password, tetapi kunci enkripsi pengguna berhasil diperbarui.", "Unable to change password" => "Tidak dapat mengubah sandi", +"User Documentation" => "Dokumentasi Pengguna", "Update to {appversion}" => "Perbarui ke {appversion}", "Disable" => "Nonaktifkan", "Enable" => "Aktifkan", @@ -34,7 +36,6 @@ $TRANSLATIONS = array( "Updated" => "Diperbarui", "Select a profile picture" => "Pilih foto profil", "Decrypting files... Please wait, this can take some time." => "Mendeskripsi berkas... Modon tunggu, ini memerlukan beberapa saat.", -"Saving..." => "Menyimpan...", "deleted" => "dihapus", "undo" => "urungkan", "Unable to remove user" => "Tidak dapat menghapus pengguna", @@ -99,7 +100,6 @@ $TRANSLATIONS = array( "Select an App" => "Pilih Aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman aplikasi di apps.owncloud.com", "-licensed by " => "-dilisensikan oleh ", -"User Documentation" => "Dokumentasi Pengguna", "Administrator Documentation" => "Dokumentasi Administrator", "Online Documentation" => "Dokumentasi Online", "Forum" => "Forum", @@ -117,20 +117,17 @@ $TRANSLATIONS = array( "Full Name" => "Nama Lengkap", "Email" => "Email", "Your email address" => "Alamat email Anda", -"Fill in an email address to enable password recovery" => "Masukkan alamat email untuk mengaktifkan pemulihan sandi", "Profile picture" => "Foto profil", "Upload new" => "Unggah baru", "Select new from Files" => "Pilih baru dari Berkas", "Remove image" => "Hapus gambar", "Either png or jpg. Ideally square but you will be able to crop it." => "Bisa png atau jpg. Idealnya berbentuk persegi tetapi jika tidak Anda bisa memotongnya nanti.", "Your avatar is provided by your original account." => "Avatar disediakan oleh akun asli Anda.", -"Abort" => "Batal", "Choose as profile image" => "Pilih sebagai gambar profil", "Language" => "Bahasa", "Help translate" => "Bantu menerjemahkan", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Gunakan alamat ini untuk mengakses Berkas via WebDAV", -"Encryption" => "Enkripsi", "The encryption app is no longer enabled, please decrypt all your files" => "Aplikasi enkripsi tidak lagi diaktifkan, silahkan mendekripsi semua file Anda", "Log-in password" => "Sandi masuk", "Decrypt all Files" => "Deskripsi semua Berkas", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 6798783f83..26eb70053c 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -1,5 +1,6 @@ "Dulkóðun", "Unable to load list from App Store" => "Ekki tókst að hlaða lista frá forrita síðu", "Authentication error" => "Villa við auðkenningu", "Group already exists" => "Hópur er þegar til", @@ -13,6 +14,7 @@ $TRANSLATIONS = array( "Admins can't remove themself from the admin group" => "Stjórnendur geta ekki fjarlægt sjálfa sig úr stjórnendahóp", "Unable to add user to group %s" => "Ekki tókst að bæta notenda við hópinn %s", "Unable to remove user from group %s" => "Ekki tókst að fjarlægja notanda úr hópnum %s", +"User Documentation" => "Notenda handbók", "Disable" => "Gera óvirkt", "Enable" => "Virkja", "Please wait...." => "Andartak....", @@ -20,7 +22,6 @@ $TRANSLATIONS = array( "Error" => "Villa", "Update" => "Uppfæra", "Updated" => "Uppfært", -"Saving..." => "Er að vista ...", "deleted" => "eytt", "undo" => "afturkalla", "Groups" => "Hópar", @@ -37,7 +38,6 @@ $TRANSLATIONS = array( "Select an App" => "Veldu forrit", "See application page at apps.owncloud.com" => "Skoða síðu forrits hjá apps.owncloud.com", "-licensed by " => "-leyfi skráð af ", -"User Documentation" => "Notenda handbók", "Administrator Documentation" => "Stjórnenda handbók", "Online Documentation" => "Handbók á netinu", "Forum" => "Vefspjall", @@ -52,11 +52,9 @@ $TRANSLATIONS = array( "Change password" => "Breyta lykilorði", "Email" => "Netfang", "Your email address" => "Netfangið þitt", -"Fill in an email address to enable password recovery" => "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði", "Language" => "Tungumál", "Help translate" => "Hjálpa við þýðingu", "WebDAV" => "WebDAV", -"Encryption" => "Dulkóðun", "Create" => "Búa til", "Default Storage" => "Sjálfgefin gagnageymsla", "Unlimited" => "Ótakmarkað", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 08bab35244..363b849d03 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,5 +1,6 @@ "Cifratura", "Unable to load list from App Store" => "Impossibile caricare l'elenco dall'App Store", "Authentication error" => "Errore di autenticazione", "Your full name has been changed." => "Il tuo nome completo è stato cambiato.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Password amministrativa di ripristino errata. Controlla la password e prova ancora.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Il motore non supporta la modifica della password, ma la chiave di cifratura dell'utente è stata aggiornata correttamente.", "Unable to change password" => "Impossibile cambiare la password", +"User Documentation" => "Documentazione utente", "Update to {appversion}" => "Aggiorna a {appversion}", "Disable" => "Disabilita", "Enable" => "Abilita", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Aggiornato", "Select a profile picture" => "Seleziona un'immagine del profilo", "Decrypting files... Please wait, this can take some time." => "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo.", -"Saving..." => "Salvataggio in corso...", "deleted" => "eliminati", "undo" => "annulla", "Unable to remove user" => "Impossibile rimuovere l'utente", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", "-licensed by " => "-licenziato da ", -"User Documentation" => "Documentazione utente", "Administrator Documentation" => "Documentazione amministratore", "Online Documentation" => "Documentazione in linea", "Forum" => "Forum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Nome completo", "Email" => "Posta elettronica", "Your email address" => "Il tuo indirizzo email", -"Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", "Profile picture" => "Immagine del profilo", "Upload new" => "Carica nuova", "Select new from Files" => "Seleziona nuova da file", "Remove image" => "Rimuovi immagine", "Either png or jpg. Ideally square but you will be able to crop it." => "Sia png che jpg. Preferibilmente quadrata, ma potrai ritagliarla.", "Your avatar is provided by your original account." => "Il tuo avatar è ottenuto dal tuo account originale.", -"Abort" => "Interrompi", "Choose as profile image" => "Scegli come immagine del profilo", "Language" => "Lingua", "Help translate" => "Migliora la traduzione", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Utilizza questo indirizzo per accedere ai tuoi file con WebDAV", -"Encryption" => "Cifratura", "The encryption app is no longer enabled, please decrypt all your files" => "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file", "Log-in password" => "Password di accesso", "Decrypt all Files" => "Decifra tutti i file", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index b151564a18..72c91798ae 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,68 +1,69 @@ "暗号化", "Unable to load list from App Store" => "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", -"Your full name has been changed." => "姓名が変更されました", -"Unable to change full name" => "姓名を変更できません", -"Group already exists" => "グループは既に存在しています", +"Your full name has been changed." => "フルネームを変更しました。", +"Unable to change full name" => "フルネームを変更できません", +"Group already exists" => "グループはすでに存在します", "Unable to add group" => "グループを追加できません", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", "Unable to delete group" => "グループを削除できません", -"Unable to delete user" => "ユーザを削除できません", +"Unable to delete user" => "ユーザーを削除できません", "Language changed" => "言語が変更されました", "Invalid request" => "不正なリクエスト", "Admins can't remove themself from the admin group" => "管理者は自身を管理者グループから削除できません。", -"Unable to add user to group %s" => "ユーザをグループ %s に追加できません", -"Unable to remove user from group %s" => "ユーザをグループ %s から削除できません", -"Couldn't update app." => "アプリを更新出来ませんでした。", +"Unable to add user to group %s" => "ユーザーをグループ %s に追加できません", +"Unable to remove user from group %s" => "ユーザーをグループ %s から削除できません", +"Couldn't update app." => "アプリをアップデートできませんでした。", "Wrong password" => "無効なパスワード", -"No user supplied" => "ユーザが指定されていません", -"Please provide an admin recovery password, otherwise all user data will be lost" => "復元用の管理者パスワードを入力してください。そうでない場合は、全ユーザのデータが失われます。", -"Wrong admin recovery password. Please check the password and try again." => "無効な復元用の管理者パスワード。パスワードを確認して再度実行してください。", -"Back-end doesn't support password change, but the users encryption key was successfully updated." => "バックエンドはパスワード変更をサポートしていませんが、ユーザの暗号化キーは正常に更新されました。", +"No user supplied" => "ユーザーが指定されていません", +"Please provide an admin recovery password, otherwise all user data will be lost" => "リカバリ用の管理者パスワードを入力してください。そうでない場合は、全ユーザーのデータが失われます。", +"Wrong admin recovery password. Please check the password and try again." => "リカバリ用の管理者パスワードが間違っています。パスワードを確認して再度実行してください。", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "バックエンドはパスワード変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。", "Unable to change password" => "パスワードを変更できません", -"Update to {appversion}" => "{appversion} に更新", +"User Documentation" => "ユーザードキュメント", +"Update to {appversion}" => "{appversion} にアップデート", "Disable" => "無効", -"Enable" => "有効化", +"Enable" => "有効にする", "Please wait...." => "しばらくお待ちください。", "Error while disabling app" => "アプリ無効化中にエラーが発生", -"Error while enabling app" => "アプリ有効化中にエラーが発生", +"Error while enabling app" => "アプリを有効にする際にエラーが発生", "Updating...." => "更新中....", "Error while updating app" => "アプリの更新中にエラーが発生", "Error" => "エラー", -"Update" => "更新", -"Updated" => "更新済み", +"Update" => "アップデート", +"Updated" => "アップデート済み", "Select a profile picture" => "プロファイル画像を選択", "Decrypting files... Please wait, this can take some time." => "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。", -"Saving..." => "保存中...", "deleted" => "削除", "undo" => "元に戻す", -"Unable to remove user" => "ユーザを削除出来ません", +"Unable to remove user" => "ユーザーを削除できません", "Groups" => "グループ", "Group Admin" => "グループ管理者", "Delete" => "削除", "add group" => "グループを追加", -"A valid username must be provided" => "有効なユーザ名を指定する必要があります", -"Error creating user" => "ユーザ作成エラー", +"A valid username must be provided" => "有効なユーザー名を指定する必要があります", +"Error creating user" => "ユーザー作成エラー", "A valid password must be provided" => "有効なパスワードを指定する必要があります", -"Warning: Home directory for user \"{user}\" already exists" => "警告: ユーザ \"{user}\" のホームディレクトリはすでに存在します", +"Warning: Home directory for user \"{user}\" already exists" => "警告: ユーザー \"{user}\" のホームディレクトリはすでに存在します", "__language_name__" => "Japanese (日本語)", "Everything (fatal issues, errors, warnings, info, debug)" => "すべて (致命的な問題、エラー、警告、情報、デバッグ)", -"Info, warnings, errors and fatal issues" => "情報と警告、エラー、致命的な問題", -"Warnings, errors and fatal issues" => "警告とエラー、致命的な問題", -"Errors and fatal issues" => "エラーと致命的な問題", +"Info, warnings, errors and fatal issues" => "情報、警告、エラー、致命的な問題", +"Warnings, errors and fatal issues" => "警告、エラー、致命的な問題", +"Errors and fatal issues" => "エラー、致命的な問題", "Fatal issues only" => "致命的な問題のみ", "Security Warning" => "セキュリティ警告", -"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "HTTP 経由で %s にアクセスしています。HTTPS を使用するようにサーバの設定を行うことを強くおすすめします。", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "HTTP経由で %s にアクセスしています。HTTPSを使用するようサーバーを設定することを強くおすすめします。", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。", "Setup Warning" => "セットアップ警告", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。", "Please double check the installation guides." => "installation guidesをもう一度チェックするようにお願いいたします。", "Module 'fileinfo' missing" => "モジュール 'fileinfo' が見つかりません", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", -"Your PHP version is outdated" => "PHPバーションが古くなっております。", -"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHPバーションが古くなっております。このプログラムが不正な行為を発生する可能性はある為、PHPバーション5.3.8以降にアップグレードをください。", +"Your PHP version is outdated" => "PHPバーションが古くなっています。", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHPバーションが古くなっています。古いバージョンには既知の問題があるため、5.3.8以降のバージョンにアップデートすることを強く推奨します。このインストール状態では正常に動作しない可能性があります。", "Locale not working" => "ロケールが動作していません", "System locale can not be set to a one which supports UTF-8." => "システムロケールを UTF-8 をサポートするロケールに設定できません。", "This means that there might be problems with certain characters in file names." => "これは、ファイル名の特定の文字に問題があることを意味しています。", @@ -71,25 +72,25 @@ $TRANSLATIONS = array( "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。", "Cron" => "Cron", "Execute one task with each page loaded" => "各ページの読み込み時にタスクを実行する", -"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "HTTPを通して15分間隔で cron.php を実行するように、cron.php は webcron サービスに登録されています。", -"Use systems cron service to call the cron.php file every 15 minutes." => "15分間隔で cron.php ファイルを実行するためにシステムの cron サービスを利用する", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されています", +"Use systems cron service to call the cron.php file every 15 minutes." => "システムのcronサービスを利用して15分ごとにcron.phpファイルを実行します。", "Sharing" => "共有", "Enable Share API" => "共有APIを有効にする", "Allow apps to use the Share API" => "アプリからの共有APIの利用を許可する", "Allow links" => "リンクを許可する", -"Allow users to share items to the public with links" => "リンクによりアイテムを公開することを許可する", +"Allow users to share items to the public with links" => "ユーザーがリンクによりアイテムを公開することを許可する", "Allow public uploads" => "パブリックなアップロードを許可", -"Allow users to enable others to upload into their publicly shared folders" => "公開している共有フォルダへのアップロードを共有しているメンバーにも許可", +"Allow users to enable others to upload into their publicly shared folders" => "公開している共有フォルダーへのアップロードを共有しているメンバーにも許可", "Allow resharing" => "再共有を許可する", -"Allow users to share items shared with them again" => "ユーザが共有しているアイテムの再共有を許可する", -"Allow users to share with anyone" => "ユーザが誰とでも共有することを許可する", -"Allow users to only share with users in their groups" => "ユーザにグループ内のユーザとのみ共有を許可する", +"Allow users to share items shared with them again" => "ユーザーが共有しているアイテムの再共有を許可する", +"Allow users to share with anyone" => "ユーザーに誰とでも共有することを許可する", +"Allow users to only share with users in their groups" => "ユーザーにグループ内のユーザーとのみ共有を許可する", "Allow mail notification" => "メール通知を許可", -"Allow user to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザに許可する", +"Allow user to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザーに許可する", "Security" => "セキュリティ", "Enforce HTTPS" => "常にHTTPSを使用する", -"Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化する。", -"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。", +"Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化します。", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。", "Log" => "ログ", "Log level" => "ログレベル", "More" => "もっと見る", @@ -101,12 +102,11 @@ $TRANSLATIONS = array( "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", "-licensed by " => "-ライセンス: ", -"User Documentation" => "ユーザドキュメント", "Administrator Documentation" => "管理者ドキュメント", "Online Documentation" => "オンラインドキュメント", "Forum" => "フォーラム", "Bugtracker" => "バグトラッカー", -"Commercial Support" => "コマーシャルサポート", +"Commercial Support" => "商用サポート", "Get the apps to sync your files" => "ファイルを同期するためのアプリを取得", "Show First Run Wizard again" => "初回ウィザードを再表示する", "You have used %s of the available %s" => "現在、%s / %s を利用しています", @@ -116,37 +116,34 @@ $TRANSLATIONS = array( "Current password" => "Current password", "New password" => "新しいパスワードを入力", "Change password" => "パスワードを変更", -"Full Name" => "姓名", +"Full Name" => "名前", "Email" => "メール", "Your email address" => "あなたのメールアドレス", -"Fill in an email address to enable password recovery" => "※パスワード回復を有効にするにはメールアドレスの入力が必要です", "Profile picture" => "プロフィール写真", "Upload new" => "新規にアップロード", "Select new from Files" => "ファイルから新規に選択", "Remove image" => "画像を削除", "Either png or jpg. Ideally square but you will be able to crop it." => "png と jpg のいずれか。正方形が理想ですが、切り取って加工することも可能です。", "Your avatar is provided by your original account." => "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。", -"Abort" => "中止", "Choose as profile image" => "プロファイル画像として選択", "Language" => "言語", "Help translate" => "翻訳に協力する", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "WebDAV 経由でファイルにアクセス するにはこのアドレスを利用してください", -"Encryption" => "暗号化", "The encryption app is no longer enabled, please decrypt all your files" => "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください", "Log-in password" => "ログインパスワード", "Decrypt all Files" => "すべてのファイルを複合する", "Login Name" => "ログイン名", "Create" => "作成", -"Admin Recovery Password" => "管理者復旧パスワード", -"Enter the recovery password in order to recover the users files during password change" => "パスワード変更の間のユーザーのファイルを回復するために、リカバリパスワードを入力してください", +"Admin Recovery Password" => "管理者リカバリパスワード", +"Enter the recovery password in order to recover the users files during password change" => "パスワード変更時のユーザーのファイルを回復するため、リカバリパスワードを入力してください", "Default Storage" => "デフォルトストレージ", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "ストレージの割り当てを入力してください (例: \"512MB\" や \"12 GB\")", "Unlimited" => "無制限", "Other" => "その他", "Username" => "ユーザー名", "Storage" => "ストレージ", -"change full name" => "姓名を変更", +"change full name" => "フルネームを変更", "set new password" => "新しいパスワードを設定", "Default" => "デフォルト" ); diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index ba844736a5..bfbb7e6bc6 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -1,5 +1,6 @@ "ენკრიპცია", "Unable to load list from App Store" => "აპლიკაციების სია ვერ ჩამოიტვირთა App Store", "Authentication error" => "ავთენტიფიკაციის შეცდომა", "Group already exists" => "ჯგუფი უკვე არსებობს", @@ -14,6 +15,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", "Unable to remove user from group %s" => "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", "Couldn't update app." => "ვერ მოხერხდა აპლიკაციის განახლება.", +"User Documentation" => "მომხმარებლის დოკუმენტაცია", "Update to {appversion}" => "განაახლე {appversion}–მდე", "Disable" => "გამორთვა", "Enable" => "ჩართვა", @@ -23,7 +25,6 @@ $TRANSLATIONS = array( "Error" => "შეცდომა", "Update" => "განახლება", "Updated" => "განახლებულია", -"Saving..." => "შენახვა...", "deleted" => "წაშლილი", "undo" => "დაბრუნება", "Unable to remove user" => "მომხმარებლის წაშლა ვერ მოხერხდა", @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "Select an App" => "აირჩიეთ აპლიკაცია", "See application page at apps.owncloud.com" => "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე", "-licensed by " => "-ლიცენსირებულია ", -"User Documentation" => "მომხმარებლის დოკუმენტაცია", "Administrator Documentation" => "ადმინისტრატორის დოკუმენტაცია", "Online Documentation" => "ონლაინ დოკუმენტაცია", "Forum" => "ფორუმი", @@ -83,11 +83,9 @@ $TRANSLATIONS = array( "Change password" => "პაროლის შეცვლა", "Email" => "იმეილი", "Your email address" => "თქვენი იმეილ მისამართი", -"Fill in an email address to enable password recovery" => "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად", "Language" => "ენა", "Help translate" => "თარგმნის დახმარება", "WebDAV" => "WebDAV", -"Encryption" => "ენკრიპცია", "Login Name" => "მომხმარებლის სახელი", "Create" => "შექმნა", "Default Storage" => "საწყისი საცავი", diff --git a/settings/l10n/km.php b/settings/l10n/km.php index f7d9faa38c..3ba7fd7281 100644 --- a/settings/l10n/km.php +++ b/settings/l10n/km.php @@ -1,5 +1,77 @@ "លុប" +"Unable to load list from App Store" => "មិនអាចផ្ទុកបញ្ជីកម្មវិធីពី App Store", +"Authentication error" => "កំហុស​ការ​ផ្ទៀង​ផ្ទាត់​ភាព​ត្រឹម​ត្រូវ", +"Group already exists" => "មាន​ក្រុម​នេះ​រួច​ហើយ", +"Unable to add group" => "មិន​អាច​បន្ថែម​ក្រុម", +"Email saved" => "បាន​រក្សា​ទុក​អ៊ីមែល", +"Invalid email" => "អ៊ីមែល​មិន​ត្រឹម​ត្រូវ", +"Unable to delete group" => "មិន​អាច​លុប​ក្រុម​បាន", +"Unable to delete user" => "មិន​អាច​លុប​អ្នក​ប្រើ​បាន", +"Language changed" => "បាន​ប្ដូរ​ភាសា", +"Invalid request" => "សំណើ​មិន​ត្រឹម​ត្រូវ", +"Admins can't remove themself from the admin group" => "អ្នក​គ្រប់​គ្រង​មិន​អាច​លុប​ខ្លួន​ឯង​ចេញ​ពី​ក្រុម​អ្នក​គ្រប់​គ្រង​ឡើយ", +"Unable to add user to group %s" => "មិន​អាច​បន្ថែម​អ្នក​ប្រើ​ទៅ​ក្រុម %s", +"Unable to remove user from group %s" => "មិន​អាច​ដក​អ្នក​ប្រើ​ចេញ​ពី​ក្រុម​ %s", +"Couldn't update app." => "មិន​អាច​ធ្វើ​បច្ចុប្បន្នភាព​កម្មវិធី។", +"User Documentation" => "ឯកសារ​សម្រាប់​អ្នក​ប្រើប្រាស់", +"Update to {appversion}" => "ធ្វើ​បច្ចុប្បន្នភាព​ទៅ {appversion}", +"Disable" => "បិទ", +"Enable" => "បើក", +"Please wait...." => "សូម​រង់​ចាំ....", +"Updating...." => "កំពុង​ធ្វើ​បច្ចុប្បន្នភាព....", +"Error while updating app" => "មាន​កំហុស​ពេល​ធ្វើ​បច្ចុប្បន្នភាព​កម្មវិធី", +"Error" => "កំហុស", +"Update" => "ធ្វើ​បច្ចុប្បន្នភាព", +"Updated" => "បាន​ធ្វើ​បច្ចុប្បន្នភាព", +"deleted" => "បាន​លុប", +"undo" => "មិន​ធ្វើ​វិញ", +"Unable to remove user" => "មិន​អាច​ដក​អ្នក​ប្រើ​ចេញ", +"Groups" => "ក្រុ", +"Group Admin" => "ក្រុម​អ្នក​គ្រប់គ្រង", +"Delete" => "លុប", +"add group" => "បន្ថែម​ក្រុម", +"A valid username must be provided" => "ត្រូវ​ផ្ដល់​ឈ្មោះ​អ្នក​ប្រើ​ឲ្យ​បាន​ត្រឹម​ត្រូវ", +"Error creating user" => "មាន​កំហុស​ក្នុង​ការ​បង្កើត​អ្នក​ប្រើ", +"A valid password must be provided" => "ត្រូវ​ផ្ដល់​ពាក្យ​សម្ងាត់​ឲ្យ​បាន​ត្រឹម​ត្រូវ", +"__language_name__" => "__language_name__", +"Security Warning" => "បម្រាម​សុវត្ថិភាព", +"Setup Warning" => "បម្រាម​ការ​ដំឡើង", +"Module 'fileinfo' missing" => "ខ្វះ​ម៉ូឌុល 'fileinfo'", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "ខ្វះ​ម៉ូឌុល 'fileinfo' ។ យើង​សូម​ណែនាំ​ឲ្យ​បើក​ម៉ូឌុល​នេះ ដើម្បី​ទទួល​បាន​លទ្ធផល​ល្អ​នៃ​ការ​សម្គាល់​ប្រភេទ mime ។", +"Locale not working" => "Locale មិន​ដំណើរការ", +"Internet connection not working" => "ការ​តភ្ជាប់​អ៊ីនធឺណិត​មិន​មាន​ដំណើរ​ការ", +"Sharing" => "ការ​ចែក​រំលែក", +"Enable Share API" => "បើក API ចែក​រំលែក", +"Allow apps to use the Share API" => "អនុញ្ញាត​ឲ្យ​កម្មវិធី​ប្រើ API ចែក​រំលែក", +"Allow links" => "អនុញ្ញាត​តំណ", +"Allow users to share items to the public with links" => "អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ចែក​រំលែក​របស់​ទៅ​សាធារណៈ​ជាមួយ​តំណ", +"Allow resharing" => "អនុញ្ញាត​ការ​ចែក​រំលែក​ម្ដង​ទៀត", +"Allow users to share with anyone" => "អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ចែក​រំលែក​ជាមួយ​នរណា​ម្នាក់", +"Security" => "សុវត្ថិភាព", +"Enforce HTTPS" => "បង្ខំ HTTPS", +"Log" => "Log", +"Log level" => "កម្រិត Log", +"More" => "ច្រើន​ទៀត", +"Less" => "តិច", +"Version" => "កំណែ", +"Add your App" => "បន្ថែម​កម្មវិធី​របស់​អ្នក", +"More Apps" => "កម្មវិធី​ច្រើន​ទៀត", +"Select an App" => "ជ្រើស​កម្មវិធី​មួយ", +"Administrator Documentation" => "ឯកសារ​សម្រាប់​​អ្នក​​គ្រប់​គ្រង​ប្រព័ន្ធ", +"Online Documentation" => "ឯកសារ Online", +"Forum" => "វេទិកាពិភាក្សា", +"Bugtracker" => "Bugtracker", +"Password" => "ពាក្យសម្ងាត់", +"Current password" => "ពាក្យសម្ងាត់​បច្ចុប្បន្ន", +"New password" => "ពាក្យ​សម្ងាត់​ថ្មី", +"Change password" => "ប្តូរ​ពាក្យសម្ងាត់", +"Email" => "អ៊ីមែល", +"Your email address" => "អ៊ីម៉ែល​របស់​អ្នក", +"Language" => "ភាសា", +"Help translate" => "ជួយ​បក​ប្រែ", +"WebDAV" => "WebDAV", +"Other" => "ផ្សេងៗ", +"Username" => "ឈ្មោះ​អ្នកប្រើ" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 83c92bba0f..dc8ba370f0 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,5 +1,6 @@ "암호화", "Unable to load list from App Store" => "앱 스토어에서 목록을 가져올 수 없습니다", "Authentication error" => "인증 오류", "Your full name has been changed." => "전체 이름이 변경되었습니다.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "관리자 복구 암호가 잘못되었습니다. 암호를 다시 확인하십시오.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "백엔드에서 암호 변경을 지원하지 않지만, 사용자의 암호화 키는 갱신되었습니다.", "Unable to change password" => "암호를 변경할 수 없음", +"User Documentation" => "사용자 문서", "Update to {appversion}" => "버전 {appversion}(으)로 업데이트", "Disable" => "사용 안함", "Enable" => "사용함", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "업데이트됨", "Select a profile picture" => "프로필 사진 선택", "Decrypting files... Please wait, this can take some time." => "파일 복호화 중... 시간이 걸릴 수도 있으니 기다려 주십시오.", -"Saving..." => "저장 중...", "deleted" => "삭제됨", "undo" => "실행 취소", "Unable to remove user" => "사용자를 삭제할 수 없음", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "앱 선택", "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", "-licensed by " => "-라이선스됨: ", -"User Documentation" => "사용자 문서", "Administrator Documentation" => "관리자 문서", "Online Documentation" => "온라인 문서", "Forum" => "포럼", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "전체 이름", "Email" => "이메일", "Your email address" => "이메일 주소", -"Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오", "Profile picture" => "프로필 사진", "Upload new" => "새로 업로드", "Select new from Files" => "파일에서 선택", "Remove image" => "그림 삭제", "Either png or jpg. Ideally square but you will be able to crop it." => "png나 jpg를 사용하십시오. 정사각형 형태가 가장 좋지만 잘라낼 수 있습니다.", "Your avatar is provided by your original account." => "원본 계정의 아바타를 사용합니다.", -"Abort" => "중지", "Choose as profile image" => "프로필 이미지로 사용", "Language" => "언어", "Help translate" => "번역 돕기", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "WebDAV로 파일에 접근하려면 이 주소를 사용하십시오", -"Encryption" => "암호화", "The encryption app is no longer enabled, please decrypt all your files" => "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다.", "Log-in password" => "로그인 암호", "Decrypt all Files" => "모든 파일 복호화", diff --git a/settings/l10n/ku_IQ.php b/settings/l10n/ku_IQ.php index d0a8abea71..8aeb20cafe 100644 --- a/settings/l10n/ku_IQ.php +++ b/settings/l10n/ku_IQ.php @@ -1,14 +1,13 @@ "نهێنیکردن", "Invalid request" => "داواکارى نادروستە", "Enable" => "چالاککردن", "Error" => "هه‌ڵه", "Update" => "نوێکردنه‌وه", -"Saving..." => "پاشکه‌وتده‌کات...", "Password" => "وشەی تێپەربو", "New password" => "وشەی نهێنی نوێ", "Email" => "ئیمه‌یل", -"Encryption" => "نهێنیکردن", "Username" => "ناوی به‌کارهێنه‌ر" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index ac8c1b6a16..3d74f422d3 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -16,7 +16,6 @@ $TRANSLATIONS = array( "Enable" => "Aschalten", "Error" => "Fehler", "Update" => "Update", -"Saving..." => "Speicheren...", "deleted" => "geläscht", "undo" => "réckgängeg man", "Groups" => "Gruppen", @@ -44,7 +43,6 @@ $TRANSLATIONS = array( "Change password" => "Passwuert änneren", "Email" => "Email", "Your email address" => "Deng Email Adress", -"Fill in an email address to enable password recovery" => "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben", "Language" => "Sprooch", "Help translate" => "Hëllef iwwersetzen", "Create" => "Erstellen", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index f2cb6a3026..07a8f7ef31 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,5 +1,6 @@ "Šifravimas", "Unable to load list from App Store" => "Neįmanoma įkelti sąrašo iš Programų Katalogo", "Authentication error" => "Autentikacijos klaida", "Group already exists" => "Grupė jau egzistuoja", @@ -20,6 +21,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Netinkamas administratoriau atkūrimo slaptažodis. Prašome pasitikrinti ir bandyti vėl.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Sistema nepalaiko slaptažodžio keitimo, bet naudotojo šifravimo raktas buvo sėkmingai atnaujintas.", "Unable to change password" => "Nepavyksta pakeisti slaptažodžio", +"User Documentation" => "Naudotojo dokumentacija", "Update to {appversion}" => "Atnaujinti iki {appversion}", "Disable" => "Išjungti", "Enable" => "Įjungti", @@ -33,7 +35,6 @@ $TRANSLATIONS = array( "Updated" => "Atnaujinta", "Select a profile picture" => "Pažymėkite profilio paveikslėlį", "Decrypting files... Please wait, this can take some time." => "Iššifruojami failai... Prašome palaukti, tai gali užtrukti.", -"Saving..." => "Saugoma...", "deleted" => "ištrinta", "undo" => "anuliuoti", "Unable to remove user" => "Nepavyko ištrinti vartotojo", @@ -46,6 +47,7 @@ $TRANSLATIONS = array( "A valid password must be provided" => "Slaptažodis turi būti tinkamas", "Warning: Home directory for user \"{user}\" already exists" => "Įspėjimas: Vartotojo \"{user}\" namų aplankas jau egzistuoja", "__language_name__" => "Kalba", +"Fatal issues only" => "Tik kritinės problemos", "Security Warning" => "Saugumo pranešimas", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Jūsų duomenų katalogas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess neveikia. Mes labai rekomenduojame sukonfigūruoti serverį taip, kad katalogas nebūtų daugiau pasiekiamas, arba iškelkite duomenis kitur iš webserverio šakninio aplanko.", "Setup Warning" => "Nustatyti perspėjimą", @@ -88,7 +90,6 @@ $TRANSLATIONS = array( "Select an App" => "Pasirinkite programą", "See application page at apps.owncloud.com" => "Žiūrėti programos puslapį svetainėje apps.owncloud.com", "-licensed by " => "- autorius", -"User Documentation" => "Naudotojo dokumentacija", "Administrator Documentation" => "Administratoriaus dokumentacija", "Online Documentation" => "Dokumentacija tinkle", "Forum" => "Forumas", @@ -103,21 +104,19 @@ $TRANSLATIONS = array( "Current password" => "Dabartinis slaptažodis", "New password" => "Naujas slaptažodis", "Change password" => "Pakeisti slaptažodį", +"Full Name" => "Pilnas vardas", "Email" => "El. Paštas", "Your email address" => "Jūsų el. pašto adresas", -"Fill in an email address to enable password recovery" => "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą", "Profile picture" => "Profilio paveikslėlis", "Upload new" => "Įkelti naują", "Select new from Files" => "Pasirinkti naują iš failų", "Remove image" => "Pašalinti paveikslėlį", "Either png or jpg. Ideally square but you will be able to crop it." => "Arba png arba jpg. Geriausia kvadratinį, bet galėsite jį apkarpyti.", -"Abort" => "Atšaukti", "Choose as profile image" => "Pasirinkite profilio paveiksliuką", "Language" => "Kalba", "Help translate" => "Padėkite išversti", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Naudokite šį adresą, kad pasiektumėte savo failus per WebDAV", -"Encryption" => "Šifravimas", "Log-in password" => "Prisijungimo slaptažodis", "Decrypt all Files" => "Iššifruoti visus failus", "Login Name" => "Vartotojo vardas", @@ -129,6 +128,7 @@ $TRANSLATIONS = array( "Other" => "Kita", "Username" => "Prisijungimo vardas", "Storage" => "Saugojimas", +"change full name" => "keisti pilną vardą", "set new password" => "nustatyti naują slaptažodį", "Default" => "Numatytasis" ); diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index de5d6460d6..4101e52478 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -1,5 +1,6 @@ "Šifrēšana", "Unable to load list from App Store" => "Nevar lejupielādēt sarakstu no lietotņu veikala", "Authentication error" => "Autentifikācijas kļūda", "Group already exists" => "Grupa jau eksistē", @@ -14,6 +15,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Nevar pievienot lietotāju grupai %s", "Unable to remove user from group %s" => "Nevar izņemt lietotāju no grupas %s", "Couldn't update app." => "Nevarēja atjaunināt lietotni.", +"User Documentation" => "Lietotāja dokumentācija", "Update to {appversion}" => "Atjaunināt uz {appversion}", "Disable" => "Deaktivēt", "Enable" => "Aktivēt", @@ -24,7 +26,6 @@ $TRANSLATIONS = array( "Update" => "Atjaunināt", "Updated" => "Atjaunināta", "Decrypting files... Please wait, this can take some time." => "Atšifrēju failus... Uzgaidiet tas var ilgt kādu laiku.", -"Saving..." => "Saglabā...", "deleted" => "izdzests", "undo" => "atsaukt", "Unable to remove user" => "Nevar izņemt lietotāju", @@ -74,7 +75,6 @@ $TRANSLATIONS = array( "Select an App" => "Izvēlies lietotni", "See application page at apps.owncloud.com" => "Apskati lietotņu lapu — apps.owncloud.com", "-licensed by " => "-licencēts no ", -"User Documentation" => "Lietotāja dokumentācija", "Administrator Documentation" => "Administratora dokumentācija", "Online Documentation" => "Tiešsaistes dokumentācija", "Forum" => "Forums", @@ -91,11 +91,9 @@ $TRANSLATIONS = array( "Change password" => "Mainīt paroli", "Email" => "E-pasts", "Your email address" => "Jūsu e-pasta adrese", -"Fill in an email address to enable password recovery" => "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība", "Language" => "Valoda", "Help translate" => "Palīdzi tulkot", "WebDAV" => "WebDAV", -"Encryption" => "Šifrēšana", "Log-in password" => "Pieslēgšanās parole", "Decrypt all Files" => "Atšifrēt visus failus", "Login Name" => "Ierakstīšanās vārds", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index f9b4bbc942..59dbe85315 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -1,5 +1,6 @@ "Енкрипција", "Unable to load list from App Store" => "Неможам да вчитам листа од App Store", "Authentication error" => "Грешка во автентикација", "Group already exists" => "Групата веќе постои", @@ -17,6 +18,7 @@ $TRANSLATIONS = array( "Wrong password" => "Погрешна лозинка", "No user supplied" => "Нема корисничко име", "Unable to change password" => "Вашата лозинка неможе да се смени", +"User Documentation" => "Корисничка документација", "Update to {appversion}" => "Надгради на {appversion}", "Disable" => "Оневозможи", "Enable" => "Овозможи", @@ -29,7 +31,6 @@ $TRANSLATIONS = array( "Update" => "Ажурирај", "Updated" => "Надграден", "Select a profile picture" => "Одбери фотографија за профилот", -"Saving..." => "Снимам...", "deleted" => "избришан", "undo" => "врати", "Unable to remove user" => "Не можам да го одстранам корисникот", @@ -67,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "Избери аппликација", "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", "-licensed by " => "-лиценцирано од ", -"User Documentation" => "Корисничка документација", "Administrator Documentation" => "Администраторска документација", "Online Documentation" => "Документација на интернет", "Forum" => "Форум", @@ -82,18 +82,15 @@ $TRANSLATIONS = array( "Change password" => "Смени лозинка", "Email" => "Е-пошта", "Your email address" => "Вашата адреса за е-пошта", -"Fill in an email address to enable password recovery" => "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката", "Profile picture" => "Фотографија за профил", "Upload new" => "Префрли нова", "Select new from Files" => "Одбери нова од датотеките", "Remove image" => "Отстрани ја фотографијата", "Either png or jpg. Ideally square but you will be able to crop it." => "Мора де биде png или jpg. Идеално квадрат, но ќе бидете во можност да ја исечете.", -"Abort" => "Прекини", "Choose as profile image" => "Одбери фотографија за профилот", "Language" => "Јазик", "Help translate" => "Помогни во преводот", "WebDAV" => "WebDAV", -"Encryption" => "Енкрипција", "Log-in password" => "Лозинка за најавување", "Decrypt all Files" => "Дешифрирај ги сите датотеки", "Login Name" => "Име за најава", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 0ba601dd72..e9241b3fac 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -9,7 +9,6 @@ $TRANSLATIONS = array( "Enable" => "Aktif", "Error" => "Ralat", "Update" => "Kemaskini", -"Saving..." => "Simpan...", "deleted" => "dihapus", "Groups" => "Kumpulan", "Delete" => "Padam", @@ -28,7 +27,6 @@ $TRANSLATIONS = array( "Change password" => "Ubah kata laluan", "Email" => "Email", "Your email address" => "Alamat emel anda", -"Fill in an email address to enable password recovery" => "Isi alamat emel anda untuk membolehkan pemulihan kata laluan", "Profile picture" => "Gambar profil", "Language" => "Bahasa", "Help translate" => "Bantu terjemah", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index cb3e7c670c..ecf1067539 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -1,7 +1,10 @@ "Kryptering", "Unable to load list from App Store" => "Lasting av liste fra App Store feilet.", "Authentication error" => "Autentiseringsfeil", +"Your full name has been changed." => "Ditt fulle navn er blitt endret.", +"Unable to change full name" => "Klarte ikke å endre fullt navn", "Group already exists" => "Gruppen finnes allerede", "Unable to add group" => "Kan ikke legge til gruppe", "Email saved" => "Epost lagret", @@ -14,16 +17,26 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Kan ikke legge bruker til gruppen %s", "Unable to remove user from group %s" => "Kan ikke slette bruker fra gruppen %s", "Couldn't update app." => "Kunne ikke oppdatere app.", +"Wrong password" => "Feil passord", +"No user supplied" => "Ingen bruker angitt", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Vennligst oppgi et administrativt gjenopprettingspassord. Ellers vil alle brukerdata gå tapt", +"Wrong admin recovery password. Please check the password and try again." => "Feil administrativt gjenopprettingspassord. Sjekk passordet og prøv igjen.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Serveren støtter ikke endring av passord, men oppdatering av brukerens krypteringsnøkkel var vellykket.", +"Unable to change password" => "Kunne ikke endre passord", +"User Documentation" => "Brukerdokumentasjon", "Update to {appversion}" => "Oppdater til {appversion}", "Disable" => "Slå avBehandle ", "Enable" => "Aktiver", "Please wait...." => "Vennligst vent...", +"Error while disabling app" => "Deaktivering av app feilet", +"Error while enabling app" => "Aktivering av app feilet", "Updating...." => "Oppdaterer...", "Error while updating app" => "Feil ved oppdatering av app", "Error" => "Feil", "Update" => "Oppdater", "Updated" => "Oppdatert", -"Saving..." => "Lagrer...", +"Select a profile picture" => "Velg et profilbilde", +"Decrypting files... Please wait, this can take some time." => "Dekrypterer filer... Vennligst vent, dette kan ta litt tid.", "deleted" => "slettet", "undo" => "angre", "Unable to remove user" => "Kunne ikke slette bruker", @@ -34,27 +47,50 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Oppgi et gyldig brukernavn", "Error creating user" => "Feil ved oppretting av bruker", "A valid password must be provided" => "Oppgi et gyldig passord", +"Warning: Home directory for user \"{user}\" already exists" => "Advarsel: Hjemmemappe for bruker \"{user}\" eksisterer allerede", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "Alt (fatale problemer, feil, advarsler, info, debug)", +"Info, warnings, errors and fatal issues" => "Info, advarsler, feil og fatale problemer", +"Warnings, errors and fatal issues" => "Advarsler, feil og fatale problemer", +"Errors and fatal issues" => "Feil og fatale problemer", +"Fatal issues only" => "Kun fatale problemer", "Security Warning" => "Sikkerhetsadvarsel", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du aksesserer %s via HTTP. Vi anbefaler på det sterkeste at du konfigurerer serveren til å kreve bruk av HTTPS i stedet.", +"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Datamappen og filene dine er sannsynligvis tilgjengelig fra Internett fordi .htaccess-filen ikke fungerer. Vi anbefaler på det sterkeste at du konfigurerer web-serveren din slik at datamappen ikke lenger er tilgjengelig eller at du flytter datamappen ut av web-serverens dokument-rotmappe.", "Setup Warning" => "Installasjonsadvarsel", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere.", +"Please double check the installation guides." => "Vennligst dobbeltsjekk installasjonsveilederne.", "Module 'fileinfo' missing" => "Modulen 'fileinfo' mangler", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt.", +"Your PHP version is outdated" => "Din PHP-versjon er udatert", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHP-versjonen din er utdatert. Vi anbefaler på det sterkeste at du oppdaterer til 5.3.8 eller nyere fordi eldre versjoner ikke vil virke. Det er mulig at denne installasjoner ikke fungerer korrekt.", "Locale not working" => "Språk virker ikke", +"System locale can not be set to a one which supports UTF-8." => "Kan ikke sette systemets nasjonale innstillinger til en som støtter UTF-8.", +"This means that there might be problems with certain characters in file names." => "Dette betyr at det kan forekomme problemer med visse tegn i filnavn.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Vi anbefaler på det sterkeste å installere pakkene som er nødvendig for at systemet skal støtte en av følgende nasjonale innstillinger: %s.", "Internet connection not working" => "Ingen internettilkopling", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Denne serveren har ikke en fungerende Internett-tilkobling. Dette betyr at noen av funksjonene, slik som montering av ekstern lagring, påminnelser om oppdatering eller installering av 3-parts apper ikke fungerer. Fjerntilgang til filer og utsending av påminnelser i e-post virker kanskje ikke heller. Vi anbefaler at Internett-forbindelsen for denne serveren aktiveres hvis du vil ha full funksjonalitet.", "Cron" => "Cron", "Execute one task with each page loaded" => "Utfør en oppgave med hver side som blir lastet", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php er registrert i en webcron-tjeneste for å kalle cron.php hvert 15. minutt over http.", +"Use systems cron service to call the cron.php file every 15 minutes." => "Bruk systemets cron-tjeneste for å kalle cron.php hvert 15. minutt.", "Sharing" => "Deling", "Enable Share API" => "Aktiver API for Deling", "Allow apps to use the Share API" => "Tillat apps å bruke API for Deling", "Allow links" => "Tillat lenker", -"Allow users to share items to the public with links" => "Tillat brukere å dele filer med lenker", +"Allow users to share items to the public with links" => "Tillat brukere å dele filer offentlig med lenker", +"Allow public uploads" => "Tillat offentlig opplasting", +"Allow users to enable others to upload into their publicly shared folders" => "Tillat at brukere lar andre laste opp til deres offentlig delte mapper", "Allow resharing" => "TIllat videredeling", "Allow users to share items shared with them again" => "Tillat brukere å dele filer som allerede har blitt delt med dem", "Allow users to share with anyone" => "Tillat brukere å dele med alle", "Allow users to only share with users in their groups" => "Tillat kun deling med andre brukere i samme gruppe", +"Allow mail notification" => "Tillat påminnelser i e-post", +"Allow user to send mail notification for shared files" => "Tillat at brukere sender epost-påminnelser for delte filer", "Security" => "Sikkerhet", "Enforce HTTPS" => "Tving HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Tvinger klientene til å koble til %s via en kryptert forbindelse.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Vennligst koble til din %s via HTTPS for å aktivere eller deaktivere tvungen SSL.", "Log" => "Logg", "Log level" => "Loggnivå", "More" => "Mer", @@ -66,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Velg en app", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", "-licensed by " => "-lisensiert av ", -"User Documentation" => "Brukerdokumentasjon", "Administrator Documentation" => "Administratordokumentasjon", "Online Documentation" => "Online dokumentasjon", "Forum" => "Forum", @@ -81,21 +116,34 @@ $TRANSLATIONS = array( "Current password" => "Nåværende passord", "New password" => "Nytt passord", "Change password" => "Endre passord", +"Full Name" => "Fullt navn", "Email" => "Epost", "Your email address" => "Din e-postadresse", -"Fill in an email address to enable password recovery" => "Oppi epostadressen du vil tilbakestille passordet for", "Profile picture" => "Profilbilde", +"Upload new" => "Last opp nytt", +"Select new from Files" => "Velg nytt fra Filer", +"Remove image" => "Fjern bilde", +"Either png or jpg. Ideally square but you will be able to crop it." => "Enten png eller jpg. Helst kvadratisk men du kan beskjære det.", +"Your avatar is provided by your original account." => "Avataren din kommer fra din opprinnelige konto.", +"Choose as profile image" => "Velg som profilbilde", "Language" => "Språk", "Help translate" => "Bidra til oversettelsen", "WebDAV" => "WebDAV", -"Encryption" => "Kryptering", +"Use this address to access your Files via WebDAV" => "Bruk denne adressen for å aksessere filene dine via WebDAV", +"The encryption app is no longer enabled, please decrypt all your files" => "Krypterings-appen er ikke aktiv lenger. Vennligst dekrypter alle filene dine", +"Log-in password" => "Innloggingspassord", +"Decrypt all Files" => "Dekrypter alle filer", "Login Name" => "Logginn navn", "Create" => "Opprett", +"Admin Recovery Password" => "Administrativt gjenopprettingspassord", +"Enter the recovery password in order to recover the users files during password change" => "Legg inn gjenopprettingspassordet for å gjenopprette brukerfilene når passordet endres", "Default Storage" => "Standard lager", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Legg inn lagringskvote (f.eks. \"512 MB\" eller \"12 GB\")", "Unlimited" => "Ubegrenset", "Other" => "Annet", "Username" => "Brukernavn", "Storage" => "Lager", +"change full name" => "endre fullt navn", "set new password" => "sett nytt passord", "Default" => "Standard" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 9931063ac9..8b47ac8879 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,5 +1,6 @@ "Versleuteling", "Unable to load list from App Store" => "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", "Your full name has been changed." => "Uw volledige naam is gewijzigd.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Onjuist beheerdersherstelwachtwoord. Controleer het wachtwoord en probeer het opnieuw.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "De Back-end ondersteunt geen wachtwoordwijzigingen, maar de cryptosleutel van de gebruiker is succesvol bijgewerkt.", "Unable to change password" => "Kan wachtwoord niet wijzigen", +"User Documentation" => "Gebruikersdocumentatie", "Update to {appversion}" => "Bijwerken naar {appversion}", "Disable" => "Uitschakelen", "Enable" => "Activeer", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Bijgewerkt", "Select a profile picture" => "Kies een profielafbeelding", "Decrypting files... Please wait, this can take some time." => "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren.", -"Saving..." => "Opslaan", "deleted" => "verwijderd", "undo" => "ongedaan maken", "Unable to remove user" => "Kon gebruiker niet verwijderen", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", "-licensed by " => "-Gelicenseerd door ", -"User Documentation" => "Gebruikersdocumentatie", "Administrator Documentation" => "Beheerdersdocumentatie", "Online Documentation" => "Online documentatie", "Forum" => "Forum", @@ -119,25 +119,22 @@ $TRANSLATIONS = array( "Full Name" => "Volledige naam", "Email" => "E-mailadres", "Your email address" => "Uw e-mailadres", -"Fill in an email address to enable password recovery" => "Vul een mailadres in om je wachtwoord te kunnen herstellen", "Profile picture" => "Profielafbeelding", "Upload new" => "Upload een nieuwe", "Select new from Files" => "Selecteer een nieuwe vanuit bestanden", "Remove image" => "Verwijder afbeelding", "Either png or jpg. Ideally square but you will be able to crop it." => "Of png, of jpg. Bij voorkeur vierkant, maar u kunt bijsnijden.", "Your avatar is provided by your original account." => "Uw avatar is verstrekt door uw originele account.", -"Abort" => "Afbreken", "Choose as profile image" => "Kies als profielafbeelding", "Language" => "Taal", "Help translate" => "Help met vertalen", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Gebruik deze link om uw bestanden via WebDAV te benaderen", -"Encryption" => "Versleuteling", "The encryption app is no longer enabled, please decrypt all your files" => "De crypto app is niet langer geactiveerd, u moet alle bestanden decrypten.", "Log-in password" => "Inlog-wachtwoord", "Decrypt all Files" => "Decodeer alle bestanden", "Login Name" => "Inlognaam", -"Create" => "Creëer", +"Create" => "Aanmaken", "Admin Recovery Password" => "Beheer herstel wachtwoord", "Enter the recovery password in order to recover the users files during password change" => "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen bij wachtwoordwijziging", "Default Storage" => "Standaard Opslaglimiet", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 5fd2f57b5a..c6c80773dd 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -1,5 +1,6 @@ "Kryptering", "Unable to load list from App Store" => "Klarer ikkje å lasta inn liste fra app-butikken", "Authentication error" => "Autentiseringsfeil", "Group already exists" => "Gruppa finst allereie", @@ -20,6 +21,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Feil admingjenopprettingspassord. Ver venleg og sjekk passordet og prøv igjen.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Bakstykket støttar ikkje passordendring, men krypteringsnøkkelen til brukaren blei oppdatert.", "Unable to change password" => "Klarte ikkje å endra passordet", +"User Documentation" => "Brukardokumentasjon", "Update to {appversion}" => "Oppdater til {appversion}", "Disable" => "Slå av", "Enable" => "Slå på", @@ -33,7 +35,6 @@ $TRANSLATIONS = array( "Updated" => "Oppdatert", "Select a profile picture" => "Vel eit profilbilete", "Decrypting files... Please wait, this can take some time." => "Dekrypterer filer … Ver venleg og vent, dette kan ta ei stund.", -"Saving..." => "Lagrar …", "deleted" => "sletta", "undo" => "angra", "Unable to remove user" => "Klarte ikkje fjerna brukaren", @@ -83,7 +84,6 @@ $TRANSLATIONS = array( "Select an App" => "Vel eit program", "See application page at apps.owncloud.com" => "Sjå programsida på apps.owncloud.com", "-licensed by " => "Lisensiert under av ", -"User Documentation" => "Brukardokumentasjon", "Administrator Documentation" => "Administratordokumentasjon", "Online Documentation" => "Dokumentasjon på nett", "Forum" => "Forum", @@ -100,18 +100,15 @@ $TRANSLATIONS = array( "Change password" => "Endra passord", "Email" => "E-post", "Your email address" => "Di epost-adresse", -"Fill in an email address to enable password recovery" => "Fyll inn e-postadressa di for å gjera passordgjenoppretting mogleg", "Profile picture" => "Profilbilete", "Upload new" => "Last opp ny", "Select new from Files" => "Vel ny frå Filer", "Remove image" => "Fjern bilete", "Either png or jpg. Ideally square but you will be able to crop it." => "Anten PNG eller JPG. Helst kvadratisk, men du får moglegheita til å beskjera det.", -"Abort" => "Avbryt", "Choose as profile image" => "Vel som profilbilete", "Language" => "Språk", "Help translate" => "Hjelp oss å omsetja", "WebDAV" => "WebDAV", -"Encryption" => "Kryptering", "Log-in password" => "Innloggingspassord", "Decrypt all Files" => "Dekrypter alle filene", "Login Name" => "Innloggingsnamn", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index 7606ac5992..07f57ff39b 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -15,7 +15,6 @@ $TRANSLATIONS = array( "Disable" => "Desactiva", "Enable" => "Activa", "Error" => "Error", -"Saving..." => "Enregistra...", "deleted" => "escafat", "undo" => "defar", "Groups" => "Grops", @@ -41,7 +40,6 @@ $TRANSLATIONS = array( "Change password" => "Cambia lo senhal", "Email" => "Corrièl", "Your email address" => "Ton adreiça de corrièl", -"Fill in an email address to enable password recovery" => "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut", "Language" => "Lenga", "Help translate" => "Ajuda a la revirada", "Create" => "Crea", diff --git a/settings/l10n/pa.php b/settings/l10n/pa.php index 795a80f7d4..2db3182d2a 100644 --- a/settings/l10n/pa.php +++ b/settings/l10n/pa.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "Updating...." => "...ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ", "Error" => "ਗਲਤੀ", "Updated" => "ਅੱਪਡੇਟ ਕੀਤਾ", -"Saving..." => "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ", "deleted" => "ਹਟਾਈ", "undo" => "ਵਾਪਸ", "Groups" => "ਗਰੁੱਪ", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index bd6d3dbf1c..df53eed2a9 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,5 +1,6 @@ "Szyfrowanie", "Unable to load list from App Store" => "Nie można wczytać listy aplikacji", "Authentication error" => "Błąd uwierzytelniania", "Your full name has been changed." => "Twoja pełna nazwa została zmieniona.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Błędne hasło odzyskiwania. Sprawdź hasło i spróbuj ponownie.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Zaplecze nie obsługuje zmiany hasła, ale klucz szyfrowania użytkownika został pomyślnie zaktualizowany.", "Unable to change password" => "Nie można zmienić hasła", +"User Documentation" => "Dokumentacja użytkownika", "Update to {appversion}" => "Aktualizacja do {appversion}", "Disable" => "Wyłącz", "Enable" => "Włącz", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Zaktualizowano", "Select a profile picture" => "Wybierz zdjęcie profilu", "Decrypting files... Please wait, this can take some time." => "Odszyfrowuje pliki... Proszę czekać, to może zająć jakiś czas.", -"Saving..." => "Zapisywanie...", "deleted" => "usunięto", "undo" => "cofnij", "Unable to remove user" => "Nie można usunąć użytkownika", @@ -54,6 +55,7 @@ $TRANSLATIONS = array( "Errors and fatal issues" => "Błędy i poważne problemy", "Fatal issues only" => "Tylko poważne problemy", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Uzyskujesz dostęp do %s za pomocą protokołu HTTP. Zalecamy skonfigurować swój serwer z użyciem protokołu HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW.", "Setup Warning" => "Ostrzeżenia konfiguracji", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony.", @@ -64,6 +66,8 @@ $TRANSLATIONS = array( "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." => "Twoja wersja PHP jest za stara. Rekomendujemy przynajmniej wersje 5.3.8. Jeśli masz starsza wersję ownCloud może nie działać poprawnie.", "Locale not working" => "Lokalizacja nie działa", "System locale can not be set to a one which supports UTF-8." => "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8.", +"This means that there might be problems with certain characters in file names." => "Oznacza to, że mogą być problemy z niektórymi znakami w nazwach plików.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Zalecamy, aby zainstalować wymagane pakiety w systemie, jeden z następujących języków: %s.", "Internet connection not working" => "Połączenie internetowe nie działa", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje.", "Cron" => "Cron", @@ -98,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Zaznacz aplikację", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "-licensed by " => "-licencjonowane przez ", -"User Documentation" => "Dokumentacja użytkownika", "Administrator Documentation" => "Dokumentacja administratora", "Online Documentation" => "Dokumentacja online", "Forum" => "Forum", @@ -116,19 +119,18 @@ $TRANSLATIONS = array( "Full Name" => "Pełna nazwa", "Email" => "Email", "Your email address" => "Twój adres e-mail", -"Fill in an email address to enable password recovery" => "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła", "Profile picture" => "Zdjęcie profilu", "Upload new" => "Wczytaj nowe", "Select new from Files" => "Wybierz nowe z plików", "Remove image" => "Usuń zdjęcie", "Either png or jpg. Ideally square but you will be able to crop it." => "Png lub jpg. Idealnie kwadratowy, ale będzie można je przyciąć.", -"Abort" => "Anuluj", +"Your avatar is provided by your original account." => "Twój awatar jest ustawiony jako domyślny.", "Choose as profile image" => "Wybierz zdjęcie profilu", "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Użyj tego adresu do dostępu do twoich plików przez WebDAV", -"Encryption" => "Szyfrowanie", +"The encryption app is no longer enabled, please decrypt all your files" => "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik", "Log-in password" => "Hasło logowania", "Decrypt all Files" => "Odszyfruj wszystkie pliki", "Login Name" => "Login", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 7577ea1d5f..98ac61eba1 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -1,5 +1,6 @@ "Criptografia", "Unable to load list from App Store" => "Não foi possível carregar lista da App Store", "Authentication error" => "Erro de autenticação", "Your full name has been changed." => "Seu nome completo foi alterado.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Senha de recuperação do administrador errada. Por favor verifique a senha e tente novamente.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Back-end não suporta alteração de senha, mas a chave de criptografia de usuários foi atualizado com sucesso....", "Unable to change password" => "Impossível modificar senha", +"User Documentation" => "Documentação de Usuário", "Update to {appversion}" => "Atualizar para {appversion}", "Disable" => "Desabilitar", "Enable" => "Habilitar", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Atualizado", "Select a profile picture" => "Selecione uma imagem para o perfil", "Decrypting files... Please wait, this can take some time." => "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo.", -"Saving..." => "Salvando...", "deleted" => "excluído", "undo" => "desfazer", "Unable to remove user" => "Impossível remover usuário", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Selecione um Aplicativo", "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", "-licensed by " => "-licenciado por ", -"User Documentation" => "Documentação de Usuário", "Administrator Documentation" => "Documentação de Administrador", "Online Documentation" => "Documentação Online", "Forum" => "Fórum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Nome Completo", "Email" => "E-mail", "Your email address" => "Seu endereço de e-mail", -"Fill in an email address to enable password recovery" => "Preencha um endereço de e-mail para habilitar a recuperação de senha", "Profile picture" => "Imagem para o perfil", "Upload new" => "Enviar nova foto", "Select new from Files" => "Selecinar uma nova dos Arquivos", "Remove image" => "Remover imagem", "Either png or jpg. Ideally square but you will be able to crop it." => "Ou png ou jpg. O ideal é quadrado, mas você vai ser capaz de cortá-la.", "Your avatar is provided by your original account." => "Seu avatar é fornecido por sua conta original.", -"Abort" => "Abortar", "Choose as profile image" => "Escolha como imagem para o perfil", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Use este endereço para ter acesso a seus Arquivos via WebDAV", -"Encryption" => "Criptografia", "The encryption app is no longer enabled, please decrypt all your files" => "O aplicativo de criptografia não está habilitado, por favor descriptar todos os seus arquivos", "Log-in password" => "Senha de login", "Decrypt all Files" => "Decripti todos os Arquivos", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 89bed08597..1c001cd999 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,5 +1,6 @@ "Encriptação", "Unable to load list from App Store" => "Incapaz de carregar a lista da App Store", "Authentication error" => "Erro na autenticação", "Your full name has been changed." => "O seu nome completo foi alterado.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Palavra chave de recuperação de administrador errada. Por favor verifique a palavra chave e tente de novo.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Não foi possível alterar a sua palavra-passe, mas a chave de encriptação foi atualizada.", "Unable to change password" => "Não foi possível alterar a sua password", +"User Documentation" => "Documentação de Utilizador", "Update to {appversion}" => "Actualizar para a versão {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Actualizado", "Select a profile picture" => "Seleccione uma fotografia de perfil", "Decrypting files... Please wait, this can take some time." => "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo.", -"Saving..." => "A guardar...", "deleted" => "apagado", "undo" => "desfazer", "Unable to remove user" => "Não foi possível remover o utilizador", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Selecione uma aplicação", "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", "-licensed by " => "-licenciado por ", -"User Documentation" => "Documentação de Utilizador", "Administrator Documentation" => "Documentação de administrador.", "Online Documentation" => "Documentação Online", "Forum" => "Fórum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Nome completo", "Email" => "Email", "Your email address" => "O seu endereço de email", -"Fill in an email address to enable password recovery" => "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave", "Profile picture" => "Foto do perfil", "Upload new" => "Carregar novo", "Select new from Files" => "Seleccionar novo a partir dos ficheiros", "Remove image" => "Remover imagem", "Either png or jpg. Ideally square but you will be able to crop it." => "Apenas png ou jpg. Idealmente quadrada, mas poderá corta-la depois.", "Your avatar is provided by your original account." => "O seu avatar é fornecido pela sua conta original.", -"Abort" => "Abortar", "Choose as profile image" => "Escolha uma fotografia de perfil", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Utilize esta ligação para aceder aos seus ficheiros via WebDAV", -"Encryption" => "Encriptação", "The encryption app is no longer enabled, please decrypt all your files" => "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros", "Log-in password" => "Password de entrada", "Decrypt all Files" => "Desencriptar todos os ficheiros", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 1433185430..f5227f15e2 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,5 +1,6 @@ "Încriptare", "Unable to load list from App Store" => "Imposibil de actualizat lista din App Store.", "Authentication error" => "Eroare la autentificare", "Group already exists" => "Grupul există deja", @@ -16,6 +17,7 @@ $TRANSLATIONS = array( "Couldn't update app." => "Aplicaţia nu s-a putut actualiza.", "Wrong password" => "Parolă greșită", "Unable to change password" => "Imposibil de schimbat parola", +"User Documentation" => "Documentație utilizator", "Update to {appversion}" => "Actualizat la {versiuneaaplicaţiei}", "Disable" => "Dezactivați", "Enable" => "Activare", @@ -25,7 +27,6 @@ $TRANSLATIONS = array( "Error" => "Eroare", "Update" => "Actualizare", "Updated" => "Actualizat", -"Saving..." => "Se salvează...", "deleted" => "șters", "undo" => "Anulează ultima acțiune", "Unable to remove user" => "Imposibil de eliminat utilizatorul", @@ -68,7 +69,6 @@ $TRANSLATIONS = array( "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", "-licensed by " => "-licențiat ", -"User Documentation" => "Documentație utilizator", "Administrator Documentation" => "Documentație administrator", "Online Documentation" => "Documentație online", "Forum" => "Forum", @@ -84,14 +84,12 @@ $TRANSLATIONS = array( "Change password" => "Schimbă parola", "Email" => "Email", "Your email address" => "Adresa ta de email", -"Fill in an email address to enable password recovery" => "Completează o adresă de mail pentru a-ți putea recupera parola", "Profile picture" => "Imagine de profil", "Remove image" => "Înlătură imagine", "Choose as profile image" => "Alege drept imagine de profil", "Language" => "Limba", "Help translate" => "Ajută la traducere", "WebDAV" => "WebDAV", -"Encryption" => "Încriptare", "Create" => "Crează", "Default Storage" => "Stocare implicită", "Unlimited" => "Nelimitată", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 8a9ae156f1..f2497e4f4e 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,5 +1,6 @@ "Шифрование", "Unable to load list from App Store" => "Не удалось загрузить список из App Store", "Authentication error" => "Ошибка аутентификации", "Your full name has been changed." => "Ваше полное имя было изменено.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Неправильный пароль восстановления. Проверьте пароль и попробуйте еще раз.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Используемый механизм не поддерживает смену паролей, но пользовательский ключ шифрования был успешно обновлён", "Unable to change password" => "Невозможно изменить пароль", +"User Documentation" => "Пользовательская документация", "Update to {appversion}" => "Обновить до {версия приложения}", "Disable" => "Выключить", "Enable" => "Включить", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Обновлено", "Select a profile picture" => "Выберите картинку профиля", "Decrypting files... Please wait, this can take some time." => "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время.", -"Saving..." => "Сохранение...", "deleted" => "удален", "undo" => "отмена", "Unable to remove user" => "Невозможно удалить пользователя", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "-licensed by " => " лицензия. Автор ", -"User Documentation" => "Пользовательская документация", "Administrator Documentation" => "Документация администратора", "Online Documentation" => "Online документация", "Forum" => "Форум", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Полное имя", "Email" => "E-mail", "Your email address" => "Ваш адрес электронной почты", -"Fill in an email address to enable password recovery" => "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля", "Profile picture" => "Фото профиля", "Upload new" => "Загрузить новую", "Select new from Files" => "Выберите новый из файлов", "Remove image" => "Удалить изображение", "Either png or jpg. Ideally square but you will be able to crop it." => "Либо png, либо jpg. Изображение должно быть квадратным, но вы сможете обрезать его позже.", "Your avatar is provided by your original account." => "Будет использован аватар вашей оригинальной учетной записи.", -"Abort" => "Отмена", "Choose as profile image" => "Выберите изображение профиля", "Language" => "Язык", "Help translate" => "Помочь с переводом", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Используйте этот адресс для доступа к вашим файлам через WebDAV", -"Encryption" => "Шифрование", "The encryption app is no longer enabled, please decrypt all your files" => "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы", "Log-in password" => "Пароль входа", "Decrypt all Files" => "Снять шифрование со всех файлов", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 8c90d1c995..92adc1b9fa 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -1,5 +1,6 @@ "ගුප්ත කේතනය", "Authentication error" => "සත්‍යාපන දෝෂයක්", "Group already exists" => "කණ්ඩායම දැනටමත් තිබේ", "Unable to add group" => "කාණඩයක් එක් කළ නොහැකි විය", @@ -15,7 +16,6 @@ $TRANSLATIONS = array( "Enable" => "සක්‍රිය කරන්න", "Error" => "දෝෂයක්", "Update" => "යාවත්කාල කිරීම", -"Saving..." => "සුරැකෙමින් පවතී...", "undo" => "නිෂ්ප්‍රභ කරන්න", "Groups" => "කණ්ඩායම්", "Group Admin" => "කාණ්ඩ පරිපාලක", @@ -42,10 +42,8 @@ $TRANSLATIONS = array( "Change password" => "මුරපදය වෙනස් කිරීම", "Email" => "විද්‍යුත් තැපෑල", "Your email address" => "ඔබගේ විද්‍යුත් තැපෑල", -"Fill in an email address to enable password recovery" => "මුරපද ප්‍රතිස්ථාපනය සඳහා විද්‍යුත් තැපැල් විස්තර ලබා දෙන්න", "Language" => "භාෂාව", "Help translate" => "පරිවර්ථන සහය", -"Encryption" => "ගුප්ත කේතනය", "Create" => "තනන්න", "Other" => "වෙනත්", "Username" => "පරිශීලක නම" diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index fc3fe54075..2fc34d57e3 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,5 +1,6 @@ "Šifrovanie", "Unable to load list from App Store" => "Nie je možné nahrať zoznam z App Store", "Authentication error" => "Chyba autentifikácie", "Your full name has been changed." => "Vaše meno a priezvisko bolo zmenené.", @@ -22,11 +23,12 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Chybné administrátorské heslo pre obnovu. Skontrolujte správnosť hesla a skúste to znovu.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Úložisko nepodporuje zmenu hesla, ale šifrovací kľúč používateľov bol úspešne zmenený.", "Unable to change password" => "Zmena hesla sa nepodarila", +"User Documentation" => "Príručka používateľa", "Update to {appversion}" => "Aktualizovať na {appversion}", "Disable" => "Zakázať", "Enable" => "Zapnúť", "Please wait...." => "Čakajte prosím...", -"Error while disabling app" => "Chyba pri zablokovaní aplikácie", +"Error while disabling app" => "Chyba pri zakázaní aplikácie", "Error while enabling app" => "Chyba pri povoľovaní aplikácie", "Updating...." => "Aktualizujem...", "Error while updating app" => "chyba pri aktualizácii aplikácie", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Aktualizované", "Select a profile picture" => "Vybrať avatara", "Decrypting files... Please wait, this can take some time." => "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať.", -"Saving..." => "Ukladám...", "deleted" => "zmazané", "undo" => "vrátiť", "Unable to remove user" => "Nemožno odobrať používateľa", @@ -62,7 +63,7 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "Chýba modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.", "Your PHP version is outdated" => "Vaša PHP verzia je zastaraná", -"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto instalácia nebude fungovat správne.", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto inštalácia nebude fungovať správne.", "Locale not working" => "Lokalizácia nefunguje", "System locale can not be set to a one which supports UTF-8." => "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8.", "This means that there might be problems with certain characters in file names." => "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov.", @@ -84,8 +85,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "Povoliť používateľom ďalej zdieľať zdieľané položky", "Allow users to share with anyone" => "Povoliť používateľom zdieľať s kýmkoľvek", "Allow users to only share with users in their groups" => "Povoliť používateľom zdieľať len s používateľmi v ich skupinách", -"Allow mail notification" => "Povoliť upozornenia emailom", -"Allow user to send mail notification for shared files" => "Povoliť používateľom upozornenia emailom pre svoje zdieľané súbory", +"Allow mail notification" => "Povoliť odosielať upozornenia emailom", +"Allow user to send mail notification for shared files" => "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory", "Security" => "Zabezpečenie", "Enforce HTTPS" => "Vynútiť HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Vyberte aplikáciu", "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácií na apps.owncloud.com", "-licensed by " => "-licencované ", -"User Documentation" => "Príručka používateľa", "Administrator Documentation" => "Príručka administrátora", "Online Documentation" => "Online príručka", "Forum" => "Fórum", @@ -111,7 +111,7 @@ $TRANSLATIONS = array( "Show First Run Wizard again" => "Znovu zobraziť sprievodcu prvým spustením", "You have used %s of the available %s" => "Použili ste %s z %s dostupných ", "Password" => "Heslo", -"Your password was changed" => "Heslo bolo zmenené", +"Your password was changed" => "Vaše heslo bolo zmenené", "Unable to change your password" => "Nie je možné zmeniť vaše heslo", "Current password" => "Aktuálne heslo", "New password" => "Nové heslo", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Meno a priezvisko", "Email" => "Email", "Your email address" => "Vaša emailová adresa", -"Fill in an email address to enable password recovery" => "Vyplňte emailovú adresu pre aktivovanie obnovy hesla", "Profile picture" => "Avatar", "Upload new" => "Nahrať nový", "Select new from Files" => "Vyberte nový zo súborov", "Remove image" => "Zmazať obrázok", -"Either png or jpg. Ideally square but you will be able to crop it." => "Buď png alebo jpg. V ideálnom prípade štvorec, ale budete mať možnosť ho orezať.", -"Your avatar is provided by your original account." => "Váš avatar je použiý z pôvodného účtu.", -"Abort" => "Prerušiť", +"Either png or jpg. Ideally square but you will be able to crop it." => "Formát súboru png alebo jpg. V ideálnom prípade štvorec, ale budete mať možnosť ho orezať.", +"Your avatar is provided by your original account." => "Váš avatar je použitý z pôvodného účtu.", "Choose as profile image" => "Vybrať ako avatara", "Language" => "Jazyk", "Help translate" => "Pomôcť s prekladom", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Použite túto linku pre prístup k vašim súborom cez WebDAV", -"Encryption" => "Šifrovanie", "The encryption app is no longer enabled, please decrypt all your files" => "Šifrovacia aplikácia už nie je spustená, dešifrujte všetky svoje súbory.", "Log-in password" => "Prihlasovacie heslo", "Decrypt all Files" => "Dešifrovať všetky súbory", @@ -144,7 +141,7 @@ $TRANSLATIONS = array( "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB​​\" alebo \"12 GB\")", "Unlimited" => "Nelimitované", "Other" => "Iné", -"Username" => "Meno používateľa", +"Username" => "Používateľské meno", "Storage" => "Úložisko", "change full name" => "zmeniť meno a priezvisko", "set new password" => "nastaviť nové heslo", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 0bd4ef50fe..815a83d52e 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,5 +1,6 @@ "Šifriranje", "Unable to load list from App Store" => "Ni mogoče naložiti seznama iz programskega središča", "Authentication error" => "Napaka med overjanjem", "Your full name has been changed." => "Vaše polno ime je spremenjeno.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Napačno navedeno skrbniško obnovitveno geslo. Preverite geslo in poskusite znova.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Hrbtišče programa ne podpira spreminjanja gesla, je pa uspešno posodobljeno uporabniško šifriranje.", "Unable to change password" => "Ni mogoče spremeniti gesla", +"User Documentation" => "Uporabniška dokumentacija", "Update to {appversion}" => "Posodobi na {appversion}", "Disable" => "Onemogoči", "Enable" => "Omogoči", @@ -35,7 +37,6 @@ $TRANSLATIONS = array( "Updated" => "Posodobljeno", "Select a profile picture" => "Izbor slike profila", "Decrypting files... Please wait, this can take some time." => "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno.", -"Saving..." => "Poteka shranjevanje ...", "deleted" => "izbrisano", "undo" => "razveljavi", "Unable to remove user" => "Uporabnika ni mogoče odstraniti", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Izbor programa", "See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", "-licensed by " => "-z dovoljenjem ", -"User Documentation" => "Uporabniška dokumentacija", "Administrator Documentation" => "Skrbniška dokumentacija", "Online Documentation" => "Spletna dokumentacija", "Forum" => "Forum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Polno ime", "Email" => "Elektronski naslov", "Your email address" => "Osebni elektronski naslov", -"Fill in an email address to enable password recovery" => "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla", "Profile picture" => "Slika profila", "Upload new" => "Pošlji novo", "Select new from Files" => "Izberi novo iz menija datotek", "Remove image" => "Odstrani sliko", "Either png or jpg. Ideally square but you will be able to crop it." => "Slika je lahko png ali jpg. Slika naj bo kvadratna, ni pa to pogoj, saj jo bo mogoče obrezati.", "Your avatar is provided by your original account." => "Podoba je podana v izvornem računu.", -"Abort" => "Prekini", "Choose as profile image" => "Izberi kot sliko profila", "Language" => "Jezik", "Help translate" => "Sodelujte pri prevajanju", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Uporabite naslov za dostop do datotek rpeko sistema WebDAV.", -"Encryption" => "Šifriranje", "The encryption app is no longer enabled, please decrypt all your files" => "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke.", "Log-in password" => "Prijavno geslo", "Decrypt all Files" => "Odšifriraj vse datoteke", diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index 4bb2576a88..6414087bc7 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -14,6 +14,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "E pamundur t'i shtohet përdoruesi grupit %s", "Unable to remove user from group %s" => "E pamundur të hiqet përdoruesi nga grupi %s", "Couldn't update app." => "E pamundur të përditësohet app.", +"User Documentation" => "Dokumentacion përdoruesi", "Update to {appversion}" => "Përditësim për {appversion}", "Disable" => "Çaktivizo", "Enable" => "Aktivizo", @@ -23,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Gabim", "Update" => "Përditësim", "Updated" => "I përditësuar", -"Saving..." => "Duke ruajtur...", "deleted" => "fshirë", "undo" => "anullo veprimin", "Unable to remove user" => "E pamundur të fshiet përdoruesi", @@ -60,6 +60,7 @@ $TRANSLATIONS = array( "Log" => "Historik aktiviteti", "Log level" => "Niveli i Historikut", "More" => "Më tepër", +"Less" => "M'pak", "Version" => "Versioni", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Zhvilluar nga Komuniteti OwnCloud, gjithashtu source code është licensuar me anë të AGPL.", "Add your App" => "Shtoni apliakcionin tuaj", @@ -67,7 +68,6 @@ $TRANSLATIONS = array( "Select an App" => "Zgjidhni një Aplikacion", "See application page at apps.owncloud.com" => "Shihni faqen e aplikacionit tek apps.owncloud.com", "-licensed by " => "-licensuar nga ", -"User Documentation" => "Dokumentacion përdoruesi", "Administrator Documentation" => "Dokumentacion administratori", "Online Documentation" => "Dokumentacion online", "Forum" => "Forumi", @@ -84,7 +84,6 @@ $TRANSLATIONS = array( "Change password" => "Ndrysho fjalëkalimin", "Email" => "Email", "Your email address" => "Adresa juaj email", -"Fill in an email address to enable password recovery" => "Jepni një adresë email për të aktivizuar rigjetjen e fjalëkalimit", "Language" => "Gjuha", "Help translate" => "Ndihmoni në përkthim", "WebDAV" => "WebDAV", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index b521ad7ce5..384d3c676c 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -1,5 +1,6 @@ "Шифровање", "Unable to load list from App Store" => "Грешка приликом учитавања списка из Складишта Програма", "Authentication error" => "Грешка при провери идентитета", "Group already exists" => "Група већ постоји", @@ -14,6 +15,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Не могу да додам корисника у групу %s", "Unable to remove user from group %s" => "Не могу да уклоним корисника из групе %s", "Couldn't update app." => "Не могу да ажурирам апликацију.", +"User Documentation" => "Корисничка документација", "Update to {appversion}" => "Ажурирај на {appversion}", "Disable" => "Искључи", "Enable" => "Омогући", @@ -23,7 +25,6 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Update" => "Ажурирај", "Updated" => "Ажурирано", -"Saving..." => "Чување у току...", "deleted" => "обрисано", "undo" => "опозови", "Unable to remove user" => "Не могу да уклоним корисника", @@ -65,7 +66,6 @@ $TRANSLATIONS = array( "Select an App" => "Изаберите програм", "See application page at apps.owncloud.com" => "Погледајте страницу са програмима на apps.owncloud.com", "-licensed by " => "-лиценцирао ", -"User Documentation" => "Корисничка документација", "Administrator Documentation" => "Администраторска документација", "Online Documentation" => "Мрежна документација", "Forum" => "Форум", @@ -82,11 +82,9 @@ $TRANSLATIONS = array( "Change password" => "Измени лозинку", "Email" => "Е-пошта", "Your email address" => "Ваша адреса е-поште", -"Fill in an email address to enable password recovery" => "Ун", "Language" => "Језик", "Help translate" => " Помозите у превођењу", "WebDAV" => "WebDAV", -"Encryption" => "Шифровање", "Login Name" => "Корисничко име", "Create" => "Направи", "Default Storage" => "Подразумевано складиште", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 9f83a18373..ede6495790 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,5 +1,6 @@ "Kryptering", "Unable to load list from App Store" => "Kan inte ladda listan från App Store", "Authentication error" => "Fel vid autentisering", "Unable to change full name" => "Kunde inte ändra hela namnet", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Felaktigt återställningslösenord för administratör. Kolla lösenordet och prova igen.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Gränssnittet stödjer inte byte av lösenord, men användarnas krypteringsnyckel blev uppdaterad.", "Unable to change password" => "Kunde inte ändra lösenord", +"User Documentation" => "Användardokumentation", "Update to {appversion}" => "Uppdatera till {appversion}", "Disable" => "Deaktivera", "Enable" => "Aktivera", @@ -34,7 +36,6 @@ $TRANSLATIONS = array( "Updated" => "Uppdaterad", "Select a profile picture" => "Välj en profilbild", "Decrypting files... Please wait, this can take some time." => "Dekrypterar filer... Vänligen vänta, detta kan ta en stund.", -"Saving..." => "Sparar...", "deleted" => "raderad", "undo" => "ångra", "Unable to remove user" => "Kan inte ta bort användare", @@ -89,7 +90,6 @@ $TRANSLATIONS = array( "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", "-licensed by " => "-licensierad av ", -"User Documentation" => "Användardokumentation", "Administrator Documentation" => "Administratörsdokumentation", "Online Documentation" => "Onlinedokumentation", "Forum" => "Forum", @@ -107,19 +107,16 @@ $TRANSLATIONS = array( "Full Name" => "Hela namnet", "Email" => "E-post", "Your email address" => "Din e-postadress", -"Fill in an email address to enable password recovery" => "Fyll i en e-postadress för att aktivera återställning av lösenord", "Profile picture" => "Profilbild", "Upload new" => "Ladda upp ny", "Select new from Files" => "Välj ny från filer", "Remove image" => "Radera bild", "Either png or jpg. Ideally square but you will be able to crop it." => "Antingen png eller jpg. Helst fyrkantig, men du kommer att kunna beskära den.", -"Abort" => "Avbryt", "Choose as profile image" => "Välj som profilbild", "Language" => "Språk", "Help translate" => "Hjälp att översätta", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Använd denna adress till nå dina Filer via WebDAV", -"Encryption" => "Kryptering", "Log-in password" => "Inloggningslösenord", "Decrypt all Files" => "Dekryptera alla filer", "Login Name" => "Inloggningsnamn", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index bfb6cace99..9605ef0fa0 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -1,5 +1,6 @@ "மறைக்குறியீடு", "Unable to load list from App Store" => "செயலி சேமிப்பிலிருந்து பட்டியலை ஏற்றமுடியாதுள்ளது", "Authentication error" => "அத்தாட்சிப்படுத்தலில் வழு", "Group already exists" => "குழு ஏற்கனவே உள்ளது", @@ -16,7 +17,6 @@ $TRANSLATIONS = array( "Enable" => "இயலுமைப்படுத்துக", "Error" => "வழு", "Update" => "இற்றைப்படுத்தல்", -"Saving..." => "சேமிக்கப்படுகிறது...", "undo" => "முன் செயல் நீக்கம் ", "Groups" => "குழுக்கள்", "Group Admin" => "குழு நிர்வாகி", @@ -40,10 +40,8 @@ $TRANSLATIONS = array( "Change password" => "கடவுச்சொல்லை மாற்றுக", "Email" => "மின்னஞ்சல்", "Your email address" => "உங்களுடைய மின்னஞ்சல் முகவரி", -"Fill in an email address to enable password recovery" => "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக", "Language" => "மொழி", "Help translate" => "மொழிபெயர்க்க உதவி", -"Encryption" => "மறைக்குறியீடு", "Create" => "உருவாக்குக", "Other" => "மற்றவை", "Username" => "பயனாளர் பெயர்" diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 60e53da323..3c5ac57969 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,5 +1,6 @@ "การเข้ารหัส", "Unable to load list from App Store" => "ไม่สามารถโหลดรายการจาก App Store ได้", "Authentication error" => "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", "Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", @@ -14,6 +15,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "ไม่สามารถเพิ่มผู้ใช้งานเข้าไปที่กลุ่ม %s ได้", "Unable to remove user from group %s" => "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", "Couldn't update app." => "ไม่สามารถอัพเดทแอปฯ", +"User Documentation" => "เอกสารคู่มือการใช้งานสำหรับผู้ใช้งาน", "Update to {appversion}" => "อัพเดทไปเป็นรุ่น {appversion}", "Disable" => "ปิดใช้งาน", "Enable" => "เปิดใช้งาน", @@ -23,7 +25,6 @@ $TRANSLATIONS = array( "Error" => "ข้อผิดพลาด", "Update" => "อัพเดท", "Updated" => "อัพเดทแล้ว", -"Saving..." => "กำลังบันทึกข้อมูล...", "deleted" => "ลบแล้ว", "undo" => "เลิกทำ", "Groups" => "กลุ่ม", @@ -53,7 +54,6 @@ $TRANSLATIONS = array( "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", "-licensed by " => "-ลิขสิทธิ์การใช้งานโดย ", -"User Documentation" => "เอกสารคู่มือการใช้งานสำหรับผู้ใช้งาน", "Administrator Documentation" => "เอกสารคู่มือการใช้งานสำหรับผู้ดูแลระบบ", "Online Documentation" => "เอกสารคู่มือการใช้งานออนไลน์", "Forum" => "กระดานสนทนา", @@ -69,12 +69,10 @@ $TRANSLATIONS = array( "Change password" => "เปลี่ยนรหัสผ่าน", "Email" => "อีเมล", "Your email address" => "ที่อยู่อีเมล์ของคุณ", -"Fill in an email address to enable password recovery" => "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้", "Profile picture" => "รูปภาพโปรไฟล์", "Language" => "ภาษา", "Help translate" => "ช่วยกันแปล", "WebDAV" => "WebDAV", -"Encryption" => "การเข้ารหัส", "Login Name" => "ชื่อที่ใช้สำหรับเข้าสู่ระบบ", "Create" => "สร้าง", "Default Storage" => "พื้นที่จำกัดข้อมูลเริ่มต้น", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 211b87d79d..e334b8b3ba 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -1,5 +1,6 @@ "Şifreleme", "Unable to load list from App Store" => "App Store'dan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", "Your full name has been changed." => "Tam adınız değiştirildi.", @@ -12,7 +13,7 @@ $TRANSLATIONS = array( "Unable to delete user" => "Kullanıcı silinemiyor", "Language changed" => "Dil değiştirildi", "Invalid request" => "Geçersiz istek", -"Admins can't remove themself from the admin group" => "Yöneticiler kendilerini yönetici grubundan kaldıramaz", +"Admins can't remove themself from the admin group" => "Yöneticiler kendilerini admin grubundan kaldıramaz", "Unable to add user to group %s" => "Kullanıcı %s grubuna eklenemiyor", "Unable to remove user from group %s" => "%s grubundan kullanıcı kaldırılamıyor", "Couldn't update app." => "Uygulama güncellenemedi.", @@ -22,6 +23,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Arka uç parola değişimini desteklemiyor ancak kullanıcı şifreleme anahtarı başarıyla güncellendi.", "Unable to change password" => "Parola değiştirilemiyor", +"User Documentation" => "Kullanıcı Belgelendirmesi", "Update to {appversion}" => "{appversion} Güncelle", "Disable" => "Devre dışı bırak", "Enable" => "Etkinleştir", @@ -35,12 +37,11 @@ $TRANSLATIONS = array( "Updated" => "Güncellendi", "Select a profile picture" => "Bir profil fotoğrafı seçin", "Decrypting files... Please wait, this can take some time." => "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir.", -"Saving..." => "Kaydediliyor...", -"deleted" => "silindi", +"deleted" => "silinen:", "undo" => "geri al", "Unable to remove user" => "Kullanıcı kaldırılamıyor", "Groups" => "Gruplar", -"Group Admin" => "Yönetici Grubu ", +"Group Admin" => "Grup Yöneticisi", "Delete" => "Sil", "add group" => "grup ekle", "A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı", @@ -101,7 +102,6 @@ $TRANSLATIONS = array( "Select an App" => "Bir Uygulama Seçin", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", "-licensed by " => "-lisanslayan ", -"User Documentation" => "Kullanıcı Belgelendirmesi", "Administrator Documentation" => "Yönetici Belgelendirmesi", "Online Documentation" => "Çevrimiçi Belgelendirme", "Forum" => "Forum", @@ -119,20 +119,17 @@ $TRANSLATIONS = array( "Full Name" => "Tam Adı", "Email" => "E-posta", "Your email address" => "E-posta adresiniz", -"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir e-posta adresi girin", "Profile picture" => "Profil resmi", "Upload new" => "Yeni yükle", "Select new from Files" => "Dosyalardan seç", "Remove image" => "Resmi kaldır", "Either png or jpg. Ideally square but you will be able to crop it." => "PNG veya JPG. Genellikle karedir ancak kesebileceksiniz.", "Your avatar is provided by your original account." => "Görüntü resminiz, özgün hesabınız tarafından sağlanıyor.", -"Abort" => "İptal Et", "Choose as profile image" => "Profil resmi olarak seç", "Language" => "Dil", "Help translate" => "Çevirilere yardım edin", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Dosyalarınıza WebDAV aracılığıyla erişmek için bu adresi kullanın", -"Encryption" => "Şifreleme", "The encryption app is no longer enabled, please decrypt all your files" => "Şifreleme uygulaması artık etkin değil, tüm dosyalarınızın şifrelemesini kaldırın", "Log-in password" => "Oturum açma parolası", "Decrypt all Files" => "Tüm dosyaların şifresini çöz", diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php index e0e5e74005..cb83c708f2 100644 --- a/settings/l10n/ug.php +++ b/settings/l10n/ug.php @@ -1,5 +1,6 @@ "شىفىرلاش", "Unable to load list from App Store" => "ئەپ بازىرىدىن تىزىمنى يۈكلىيەلمىدى", "Authentication error" => "سالاھىيەت دەلىللەش خاتالىقى", "Group already exists" => "گۇرۇپپا مەۋجۇت", @@ -14,6 +15,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "ئىشلەتكۈچىنى %s گۇرۇپپىغا قوشالمايدۇ", "Unable to remove user from group %s" => "ئىشلەتكۈچىنى %s گۇرۇپپىدىن چىقىرىۋېتەلمەيدۇ", "Couldn't update app." => "ئەپنى يېڭىلىيالمايدۇ.", +"User Documentation" => "ئىشلەتكۈچى قوللانمىسى", "Update to {appversion}" => "{appversion} غا يېڭىلايدۇ", "Disable" => "چەكلە", "Enable" => "قوزغات", @@ -23,7 +25,6 @@ $TRANSLATIONS = array( "Error" => "خاتالىق", "Update" => "يېڭىلا", "Updated" => "يېڭىلاندى", -"Saving..." => "ساقلاۋاتىدۇ…", "deleted" => "ئۆچۈرۈلگەن", "undo" => "يېنىۋال", "Unable to remove user" => "ئىشلەتكۈچىنى چىقىرىۋېتەلمەيدۇ", @@ -49,7 +50,6 @@ $TRANSLATIONS = array( "Add your App" => "ئەپىڭىزنى قوشۇڭ", "More Apps" => "تېخىمۇ كۆپ ئەپلەر", "Select an App" => "بىر ئەپ تاللاڭ", -"User Documentation" => "ئىشلەتكۈچى قوللانمىسى", "Administrator Documentation" => "باشقۇرغۇچى قوللانمىسى", "Online Documentation" => "توردىكى قوللانما", "Forum" => "مۇنبەر", @@ -61,11 +61,9 @@ $TRANSLATIONS = array( "Change password" => "ئىم ئۆزگەرت", "Email" => "تورخەت", "Your email address" => "تورخەت ئادرېسىڭىز", -"Fill in an email address to enable password recovery" => "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ", "Language" => "تىل", "Help translate" => "تەرجىمىگە ياردەم", "WebDAV" => "WebDAV", -"Encryption" => "شىفىرلاش", "Login Name" => "تىزىمغا كىرىش ئاتى", "Create" => "قۇر", "Default Storage" => "كۆڭۈلدىكى ساقلىغۇچ", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 353e4f1988..211c4cf863 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -1,5 +1,6 @@ "Шифрування", "Unable to load list from App Store" => "Не вдалося завантажити список з App Store", "Authentication error" => "Помилка автентифікації", "Group already exists" => "Група вже існує", @@ -14,6 +15,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Не вдалося додати користувача у групу %s", "Unable to remove user from group %s" => "Не вдалося видалити користувача із групи %s", "Couldn't update app." => "Не вдалося оновити програму. ", +"User Documentation" => "Документація Користувача", "Update to {appversion}" => "Оновити до {appversion}", "Disable" => "Вимкнути", "Enable" => "Включити", @@ -23,7 +25,6 @@ $TRANSLATIONS = array( "Error" => "Помилка", "Update" => "Оновити", "Updated" => "Оновлено", -"Saving..." => "Зберігаю...", "deleted" => "видалені", "undo" => "відмінити", "Unable to remove user" => "Неможливо видалити користувача", @@ -66,7 +67,6 @@ $TRANSLATIONS = array( "Select an App" => "Вибрати додаток", "See application page at apps.owncloud.com" => "Перегляньте сторінку програм на apps.owncloud.com", "-licensed by " => "-licensed by ", -"User Documentation" => "Документація Користувача", "Administrator Documentation" => "Документація Адміністратора", "Online Documentation" => "Он-Лайн Документація", "Forum" => "Форум", @@ -83,11 +83,9 @@ $TRANSLATIONS = array( "Change password" => "Змінити пароль", "Email" => "Ел.пошта", "Your email address" => "Ваша адреса електронної пошти", -"Fill in an email address to enable password recovery" => "Введіть адресу електронної пошти для відновлення паролю", "Language" => "Мова", "Help translate" => "Допомогти з перекладом", "WebDAV" => "WebDAV", -"Encryption" => "Шифрування", "Login Name" => "Ім'я Логіну", "Create" => "Створити", "Default Storage" => "сховище за замовчуванням", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index e2e1364902..b93e50e51e 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -1,7 +1,10 @@ "Mã hóa", "Unable to load list from App Store" => "Không thể tải danh sách ứng dụng từ App Store", "Authentication error" => "Lỗi xác thực", +"Your full name has been changed." => "Họ và tên đã được thay đổi.", +"Unable to change full name" => "Họ và tên không thể đổi ", "Group already exists" => "Nhóm đã tồn tại", "Unable to add group" => "Không thể thêm nhóm", "Email saved" => "Lưu email", @@ -14,6 +17,7 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "Không thể thêm người dùng vào nhóm %s", "Unable to remove user from group %s" => "Không thể xóa người dùng từ nhóm %s", "Couldn't update app." => "Không thể cập nhật ứng dụng", +"User Documentation" => "Tài liệu người sử dụng", "Update to {appversion}" => "Cập nhật lên {appversion}", "Disable" => "Tắt", "Enable" => "Bật", @@ -23,14 +27,15 @@ $TRANSLATIONS = array( "Error" => "Lỗi", "Update" => "Cập nhật", "Updated" => "Đã cập nhật", -"Saving..." => "Đang lưu...", "deleted" => "đã xóa", "undo" => "lùi lại", +"Unable to remove user" => "Không thể xóa người ", "Groups" => "Nhóm", "Group Admin" => "Nhóm quản trị", "Delete" => "Xóa", "__language_name__" => "__Ngôn ngữ___", "Security Warning" => "Cảnh bảo bảo mật", +"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Thư mục và các tập tin của bạn có thể được truy cập từ Internet. Tập tin .htaccess không làm việc. Chúng tôi đề nghị bạn cấu hình ebserver ,phân quyền lại thư mục dữ liệu và cấp quyền truy cập hoặc di chuyển thư mục dữ liệu bên ngoài tài liệu gốc máy chủ web.", "Cron" => "Cron", "Execute one task with each page loaded" => "Thực thi tác vụ mỗi khi trang được tải", "Sharing" => "Chia sẻ", @@ -52,7 +57,6 @@ $TRANSLATIONS = array( "Select an App" => "Chọn một ứng dụng", "See application page at apps.owncloud.com" => "Xem nhiều ứng dụng hơn tại apps.owncloud.com", "-licensed by " => "-Giấy phép được cấp bởi ", -"User Documentation" => "Tài liệu người sử dụng", "Administrator Documentation" => "Tài liệu quản trị", "Online Documentation" => "Tài liệu trực tuyến", "Forum" => "Diễn đàn", @@ -67,13 +71,15 @@ $TRANSLATIONS = array( "Current password" => "Mật khẩu cũ", "New password" => "Mật khẩu mới", "Change password" => "Đổi mật khẩu", +"Full Name" => "Họ và tên", "Email" => "Email", "Your email address" => "Email của bạn", -"Fill in an email address to enable password recovery" => "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu", +"Upload new" => "Tải lên", +"Remove image" => "Xóa ", +"Choose as profile image" => "Chọn hình ảnh như hồ sơ cá nhân", "Language" => "Ngôn ngữ", "Help translate" => "Hỗ trợ dịch thuật", "WebDAV" => "WebDAV", -"Encryption" => "Mã hóa", "Login Name" => "Tên đăng nhập", "Create" => "Tạo", "Default Storage" => "Bộ nhớ mặc định", @@ -81,6 +87,7 @@ $TRANSLATIONS = array( "Other" => "Khác", "Username" => "Tên đăng nhập", "Storage" => "Bộ nhớ", +"change full name" => "Đổi họ và t", "set new password" => "đặt mật khẩu mới", "Default" => "Mặc định" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 4733a9e429..6042be9200 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,7 +1,10 @@ "加密", "Unable to load list from App Store" => "无法从应用商店载入列表", "Authentication error" => "认证出错", +"Your full name has been changed." => "您的全名已修改。", +"Unable to change full name" => "无法修改全名", "Group already exists" => "已存在该组", "Unable to add group" => "无法添加组", "Email saved" => "电子邮件已保存", @@ -14,6 +17,10 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "无法把用户添加到组 %s", "Unable to remove user from group %s" => "无法从组%s中移除用户", "Couldn't update app." => "无法更新 app。", +"Wrong password" => "错误密码", +"No user supplied" => "没有满足的用户", +"Unable to change password" => "不能更改密码", +"User Documentation" => "用户文档", "Update to {appversion}" => "更新至 {appversion}", "Disable" => "禁用", "Enable" => "开启", @@ -26,7 +33,6 @@ $TRANSLATIONS = array( "Update" => "更新", "Updated" => "已更新", "Decrypting files... Please wait, this can take some time." => "正在解密文件... 请稍等,可能需要一些时间。", -"Saving..." => "保存中", "deleted" => "已经删除", "undo" => "撤销", "Unable to remove user" => "无法移除用户", @@ -37,7 +43,13 @@ $TRANSLATIONS = array( "A valid username must be provided" => "必须提供合法的用户名", "Error creating user" => "创建用户出错", "A valid password must be provided" => "必须提供合法的密码", +"Warning: Home directory for user \"{user}\" already exists" => "警告:用户 \"{user}\" 的家目录已存在", "__language_name__" => "简体中文", +"Everything (fatal issues, errors, warnings, info, debug)" => "所有(灾难性问题,错误,警告,信息,调试)", +"Info, warnings, errors and fatal issues" => "信息,警告,错误和灾难性问题", +"Warnings, errors and fatal issues" => "警告,错误和灾难性问题", +"Errors and fatal issues" => "错误和灾难性问题", +"Fatal issues only" => "仅灾难性问题", "Security Warning" => "安全警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Setup Warning" => "设置警告", @@ -45,11 +57,13 @@ $TRANSLATIONS = array( "Please double check the installation guides." => "请认真检查安装指南.", "Module 'fileinfo' missing" => "模块'文件信息'丢失", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.", +"Your PHP version is outdated" => "您的 PHP 版本不是最新版", "Locale not working" => "本地化无法工作", "Internet connection not working" => "因特网连接无法工作", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接.", "Cron" => "计划任务", "Execute one task with each page loaded" => "每个页面加载后执行一个任务", +"Use systems cron service to call the cron.php file every 15 minutes." => "使用系统 cron 服务每15分钟调用一次 cron.php 文件。", "Sharing" => "共享", "Enable Share API" => "启用共享API", "Allow apps to use the Share API" => "允许应用软件使用共享API", @@ -61,6 +75,8 @@ $TRANSLATIONS = array( "Allow users to share items shared with them again" => "允许用户将共享给他们的项目再次共享", "Allow users to share with anyone" => "允许用户向任何人共享", "Allow users to only share with users in their groups" => "允许用户只向同组用户共享", +"Allow mail notification" => "允许邮件通知", +"Allow user to send mail notification for shared files" => "允许用户为共享的文件发送邮件通知", "Security" => "安全", "Enforce HTTPS" => "强制使用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "强制客户端通过加密连接连接到%s。", @@ -76,7 +92,6 @@ $TRANSLATIONS = array( "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "-licensed by " => "-核准: ", -"User Documentation" => "用户文档", "Administrator Documentation" => "管理员文档", "Online Documentation" => "在线文档", "Forum" => "论坛", @@ -91,14 +106,18 @@ $TRANSLATIONS = array( "Current password" => "当前密码", "New password" => "新密码", "Change password" => "修改密码", +"Full Name" => "全名", "Email" => "电子邮件", "Your email address" => "您的电子邮件", -"Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能", "Profile picture" => "联系人图片", +"Upload new" => "上传新的", +"Select new from Files" => "从文件中选择一个新的", +"Remove image" => "移除图片", +"Your avatar is provided by your original account." => "您的头像由您的原始账户所提供。", "Language" => "语言", "Help translate" => "帮助翻译", "WebDAV" => "WebDAV", -"Encryption" => "加密", +"Use this address to access your Files via WebDAV" => "使用这个地址 通过 WebDAV 访问您的文件", "Log-in password" => "登录密码", "Decrypt all Files" => "解密所有文件", "Login Name" => "登录名称", @@ -106,10 +125,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "管理恢复密码", "Enter the recovery password in order to recover the users files during password change" => "输入恢复密码来在更改密码的时候恢复用户文件", "Default Storage" => "默认存储", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "请输入存储限额 (ex: \"512 MB\" or \"12 GB\")", "Unlimited" => "无限", "Other" => "其它", "Username" => "用户名", "Storage" => "存储", +"change full name" => "更改全名", "set new password" => "设置新密码", "Default" => "默认" ); diff --git a/settings/l10n/zh_HK.php b/settings/l10n/zh_HK.php index 10fce11fb5..131dc85244 100644 --- a/settings/l10n/zh_HK.php +++ b/settings/l10n/zh_HK.php @@ -1,12 +1,12 @@ "加密", "Error" => "錯誤", "Groups" => "群組", "Delete" => "刪除", "Password" => "密碼", "New password" => "新密碼", "Email" => "電郵", -"Encryption" => "加密", "Username" => "用戶名稱" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 4f7d6ff9cf..82e02725d4 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,5 +1,6 @@ "加密", "Unable to load list from App Store" => "無法從 App Store 讀取清單", "Authentication error" => "認證錯誤", "Group already exists" => "群組已存在", @@ -20,6 +21,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "錯誤的管理者還原密碼", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "後端不支援變更密碼,但成功更新使用者的加密金鑰", "Unable to change password" => "無法修改密碼", +"User Documentation" => "用戶說明文件", "Update to {appversion}" => "更新至 {appversion}", "Disable" => "停用", "Enable" => "啟用", @@ -33,7 +35,6 @@ $TRANSLATIONS = array( "Updated" => "已更新", "Select a profile picture" => "選擇大頭貼", "Decrypting files... Please wait, this can take some time." => "檔案解密中,請稍候。", -"Saving..." => "儲存中...", "deleted" => "已刪除", "undo" => "復原", "Unable to remove user" => "無法刪除用戶", @@ -88,7 +89,6 @@ $TRANSLATIONS = array( "Select an App" => "選擇一個應用程式", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "-licensed by " => "-核准: ", -"User Documentation" => "用戶說明文件", "Administrator Documentation" => "管理者說明文件", "Online Documentation" => "線上說明文件", "Forum" => "論壇", @@ -105,19 +105,16 @@ $TRANSLATIONS = array( "Change password" => "變更密碼", "Email" => "信箱", "Your email address" => "您的電子郵件信箱", -"Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", "Profile picture" => "個人資料照片", "Upload new" => "上傳新的", "Select new from Files" => "從已上傳的檔案中選一個", "Remove image" => "移除圖片", "Either png or jpg. Ideally square but you will be able to crop it." => "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它", -"Abort" => "中斷", "Choose as profile image" => "設定為大頭貼", "Language" => "語言", "Help translate" => "幫助翻譯", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "使用這個地址來透過 WebDAV 存取檔案", -"Encryption" => "加密", "Log-in password" => "登入密碼", "Decrypt all Files" => "解密所有檔案", "Login Name" => "登入名稱", From 36885dc64ced99737b3eff49a623494ec3bc9e92 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 11 Mar 2014 12:58:46 +0100 Subject: [PATCH 127/333] fix path creation for re-shares, issue #7662 --- apps/files_sharing/tests/api.php | 203 ++++++++++++++++++++++++++++++- lib/public/share.php | 9 +- 2 files changed, 204 insertions(+), 8 deletions(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 073e2dd8c5..30deb07c5b 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -34,15 +34,17 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->folder = '/folder_share_api_test'; $this->subfolder = '/subfolder_share_api_test'; + $this->subsubfolder = '/subsubfolder_share_api_test'; - $this->filename = 'share-api-test.txt'; + $this->filename = '/share-api-test.txt'; // save file with content $this->view->file_put_contents($this->filename, $this->data); $this->view->mkdir($this->folder); - $this->view->mkdir($this->folder . '/' . $this->subfolder); - $this->view->file_put_contents($this->folder.'/'.$this->filename, $this->data); - $this->view->file_put_contents($this->folder.'/' . $this->subfolder . '/' .$this->filename, $this->data); + $this->view->mkdir($this->folder . $this->subfolder); + $this->view->mkdir($this->folder . $this->subfolder . $this->subsubfolder); + $this->view->file_put_contents($this->folder.$this->filename, $this->data); + $this->view->file_put_contents($this->folder . $this->subfolder . $this->filename, $this->data); } function tearDown() { @@ -323,9 +325,9 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $testValues=array( array('query' => 'Shared/' . $this->folder, - 'expectedResult' => '/Shared' . $this->folder . '/' . $this->filename), + 'expectedResult' => '/Shared' . $this->folder . $this->filename), array('query' => 'Shared/' . $this->folder . $this->subfolder, - 'expectedResult' => '/Shared' . $this->folder . $this->subfolder . '/' . $this->filename), + 'expectedResult' => '/Shared' . $this->folder . $this->subfolder . $this->filename), ); foreach ($testValues as $value) { @@ -354,6 +356,195 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } + /** + * @brief reshare a sub folder and check if we get the correct path + * @medium + */ + function testGetShareFromSubFolderReShares() { + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + + $fileInfo = $this->view->getFileInfo($this->folder . $this->subfolder); + + // share sub-folder to user2 + $result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // share was successful? + $this->assertTrue($result); + + // login as user2 + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + + // reshare subfolder + $result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); + + // share was successful? + $this->assertTrue(is_string($result)); + + $_GET['path'] = '/Shared'; + $_GET['subfiles'] = 'true'; + + $result = Share\Api::getAllShares(array()); + + $this->assertTrue($result->succeeded()); + + // test should return one share within $this->folder + $data = $result->getData(); + + // we should get exactly one result + $this->assertEquals(1, count($data)); + + $expectedPath = '/Shared' . $this->subfolder; + $this->assertEquals($expectedPath, $data[0]['path']); + + // cleanup + $result = \OCP\Share::unshare('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_LINK, null); + $this->assertTrue($result); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + $result = \OCP\Share::unshare('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + $this->assertTrue($result); + + } + + /** + * @brief test re-re-share of folder if the path gets constructed correctly + * @medium + */ + function testGetShareFromFolderReReShares() { + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + + $fileInfo1 = $this->view->getFileInfo($this->folder . $this->subfolder); + $fileInfo2 = $this->view->getFileInfo($this->folder . $this->subfolder . $this->subsubfolder); + + // share sub-folder to user2 + $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // share was successful? + $this->assertTrue($result); + + // login as user2 + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + + // reshare subsubfolder + $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31); + // share was successful? + $this->assertTrue($result); + + // login as user3 + self::loginHelper(self::TEST_FILES_SHARING_API_USER3); + + $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); + // share was successful? + $this->assertTrue(is_string($result)); + + + $_GET['path'] = '/Shared'; + $_GET['subfiles'] = 'true'; + + $result = Share\Api::getAllShares(array()); + + $this->assertTrue($result->succeeded()); + + // test should return one share within $this->folder + $data = $result->getData(); + + // we should get exactly one result + $this->assertEquals(1, count($data)); + + $expectedPath = '/Shared' . $this->subsubfolder; + $this->assertEquals($expectedPath, $data[0]['path']); + + + // cleanup + $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null); + $this->assertTrue($result); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3); + $this->assertTrue($result); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + $this->assertTrue($result); + + } + + /** + * @brief test re-re-share of folder if the path gets constructed correctly + * @medium + */ + function testGetShareFromFileReReShares() { + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + + $fileInfo1 = $this->view->getFileInfo($this->folder . $this->subfolder); + $fileInfo2 = $this->view->getFileInfo($this->folder. $this->subfolder . $this->filename); + + // share sub-folder to user2 + $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // share was successful? + $this->assertTrue($result); + + // login as user2 + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + + // reshare subsubfolder + $result = \OCP\Share::shareItem('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31); + // share was successful? + $this->assertTrue($result); + + // login as user3 + self::loginHelper(self::TEST_FILES_SHARING_API_USER3); + + $result = \OCP\Share::shareItem('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); + // share was successful? + $this->assertTrue(is_string($result)); + + + $_GET['path'] = '/Shared'; + $_GET['subfiles'] = 'true'; + + $result = Share\Api::getAllShares(array()); + + $this->assertTrue($result->succeeded()); + + // test should return one share within $this->folder + $data = $result->getData(); + + // we should get exactly one result + $this->assertEquals(1, count($data)); + + $expectedPath = '/Shared' . $this->filename; + $this->assertEquals($expectedPath, $data[0]['path']); + + + // cleanup + $result = \OCP\Share::unshare('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null); + $this->assertTrue($result); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + $result = \OCP\Share::unshare('file', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3); + $this->assertTrue($result); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + $this->assertTrue($result); + + } + /** * @medium */ diff --git a/lib/public/share.php b/lib/public/share.php index 2fed41488c..dd9e1bbf9a 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -1252,18 +1252,23 @@ class Share { if (isset($row['parent'])) { $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); $parentResult = $query->execute(array($row['parent'])); + //$query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); + //$parentResult = $query->execute(array($row['id'])); if (\OC_DB::isError($result)) { \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, \OC_Log::ERROR); } else { $parentRow = $parentResult->fetchRow(); - $splitPath = explode('/', $row['path']); $tmpPath = '/Shared' . $parentRow['file_target']; + // find the right position where the row path continues from the target path + $pos = strrpos($row['path'], $parentRow['file_target']); + $subPath = substr($row['path'], $pos); + $splitPath = explode('/', $subPath); foreach (array_slice($splitPath, 2) as $pathPart) { $tmpPath = $tmpPath . '/' . $pathPart; } - $row['path'] = $tmpPath; + $row['path'] = $tmpPath; } } else { if (!isset($mounts[$row['storage']])) { From a09df0083e6fa5c465c85d58ea04981538b41c32 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 11 Mar 2014 12:59:37 +0100 Subject: [PATCH 128/333] add 'received_from' info to the share, so that every share can have a different value --- apps/files_sharing/lib/api.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index dc95a791d2..7adbcab2f9 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -175,8 +175,10 @@ class Api { if($share) { $receivedFrom = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']); if ($receivedFrom) { - $share['received_from'] = $receivedFrom['uid_owner']; - $share['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); + reset($share); + $key = key($share); + $share[$key]['received_from'] = $receivedFrom['uid_owner']; + $share[$key]['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); } $result = array_merge($result, $share); } From 0f864c38bba9e3ad352064db76a3d46be46eba2d Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Tue, 11 Mar 2014 14:10:12 +0100 Subject: [PATCH 129/333] add preDelete hook for files_trashbin app --- apps/files_trashbin/lib/trashbin.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index f6816b2b4c..7e91f8a59f 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -563,6 +563,7 @@ class Trashbin { } else { $size += $view->filesize('/files_trashbin/files/' . $file); } + \OC_Hook::emit('\OCP\Trashbin', 'preDelete', array('path' => '/files_trashbin/files/' . $file)); $view->unlink('/files_trashbin/files/' . $file); \OC_Hook::emit('\OCP\Trashbin', 'delete', array('path' => '/files_trashbin/files/' . $file)); From 9a5c2d0080d60b74444c7f807a1e0b91e1888ef0 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Tue, 11 Mar 2014 14:17:08 +0100 Subject: [PATCH 130/333] add preDelete hook for files_versions app --- apps/files_versions/lib/versions.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 2bd9c15bae..290264a90c 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -178,6 +178,7 @@ class Storage { $versionsSize = self::calculateSize($uid); } foreach ($versions as $v) { + \OC_Hook::emit('\OCP\Versions', 'preDelete', array('path' => $abs_path . $v['version'])); unlink($abs_path . $v['version']); \OC_Hook::emit('\OCP\Versions', 'delete', array('path' => $abs_path . $v['version'])); $versionsSize -= $v['size']; @@ -542,8 +543,9 @@ class Storage { } foreach($toDelete as $key => $path) { - \OC_Hook::emit('\OCP\Versions', 'delete', array('path' => $path)); + \OC_Hook::emit('\OCP\Versions', 'preDelete', array('path' => $path)); $versionsFileview->unlink($path); + \OC_Hook::emit('\OCP\Versions', 'delete', array('path' => $path)); unset($allVersions[$key]); // update array with the versions we keep \OCP\Util::writeLog('files_versions', "Expire: " . $path, \OCP\Util::DEBUG); } @@ -555,6 +557,7 @@ class Storage { $i = 0; while ($availableSpace < 0 && $i < $numOfVersions) { $version = current($allVersions); + \OC_Hook::emit('\OCP\Versions', 'preDelete', array('path' => $version['path'].'.v'.$version['version'])); $versionsFileview->unlink($version['path'].'.v'.$version['version']); \OC_Hook::emit('\OCP\Versions', 'delete', array('path' => $version['path'].'.v'.$version['version'])); \OCP\Util::writeLog('files_versions', 'running out of space! Delete oldest version: ' . $version['path'].'.v'.$version['version'] , \OCP\Util::DEBUG); From 3f4a0778c8ec6005c7686ea18586ed9f5f782036 Mon Sep 17 00:00:00 2001 From: "Francesco Piraneo G." Date: Tue, 11 Mar 2014 14:29:26 +0100 Subject: [PATCH 131/333] Update index.php On line #69 added id="selectedActionsList" to allow an easy adding of new actions customs apps wants to perform on selected files; --- apps/files/templates/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index ed15e46a5a..faf24d82b8 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -66,7 +66,7 @@ t( 'Name' )); ?> - + Download Date: Tue, 11 Mar 2014 15:40:14 +0100 Subject: [PATCH 132/333] Fix 3rdparty submodule after transifex sync broke it --- 3rdparty | 1 + 1 file changed, 1 insertion(+) create mode 160000 3rdparty diff --git a/3rdparty b/3rdparty new file mode 160000 index 0000000000..184f0a59f8 --- /dev/null +++ b/3rdparty @@ -0,0 +1 @@ +Subproject commit 184f0a59f87c590ee7e89ced401205a87f213954 From 5713b0dedb5a5bc5f88c4ba89bad856bac0ea9f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 11 Mar 2014 16:24:50 +0100 Subject: [PATCH 133/333] Authentification -> Authentication --- settings/admin/controller.php | 2 +- settings/templates/admin.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/admin/controller.php b/settings/admin/controller.php index 7019f9a4d2..a95ede790e 100644 --- a/settings/admin/controller.php +++ b/settings/admin/controller.php @@ -117,7 +117,7 @@ class Controller { case 'mail_smtpsecure': return $l->t( 'Encryption' ); case 'mail_smtpauthtype': - return $l->t( 'Authentification method' ); + return $l->t( 'Authentication method' ); } } } diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 487da036e7..8f786ba76e 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -314,7 +314,7 @@ if (!$_['internetconnectionworking']) {

- -

- - - t("Last cron was executed at %s.", array($human_time))); - else: ?> - - t("Last cron was executed at %s. This is more than an hour ago, something seems wrong.", array($human_time))); - endif; - else: ?> - - t("Cron was not executed yet!")); - endif; ?> -

-
From 556c6eca2397eaa03c4503822d647c8b6cb5e70e Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 12 Mar 2014 17:53:39 +0100 Subject: [PATCH 146/333] Use OC_Util::formatDate() --- settings/templates/admin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 08a0a8f5e6..bb402f9f78 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -157,7 +157,7 @@ if (!$_['internetconnectionworking']) {

t("Last cron was executed at %s.", array($human_time))); From 820b161fc42a9a696d9de8c640a7e389b87da454 Mon Sep 17 00:00:00 2001 From: rnveach Date: Wed, 12 Mar 2014 19:20:59 -0400 Subject: [PATCH 147/333] added missing ignores for files and directories created by "autotest-js" --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index e61ec6f035..b24edc9128 100644 --- a/.gitignore +++ b/.gitignore @@ -86,6 +86,11 @@ nbproject # Node Modules /build/node_modules/ +# nodejs +/build/lib/ +/npm-debug.log + + # Tests - auto-generated files /data-autotest /tests/coverage* From e37455493b3db5f89e734ae840bd65b71ee46b6e Mon Sep 17 00:00:00 2001 From: rnveach Date: Wed, 12 Mar 2014 19:22:11 -0400 Subject: [PATCH 148/333] added missing packages required to run "karma" and "phantomjs" inside "autotest-js" --- build/package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/package.json b/build/package.json index c9ed7b96c6..0c395839cf 100644 --- a/build/package.json +++ b/build/package.json @@ -14,7 +14,9 @@ "karma": "*", "karma-jasmine": "*", "karma-junit-reporter": "*", - "karma-coverage": "*" + "karma-coverage": "*", + "karma-phantomjs-launcher": "*", + "phantomjs": "*" }, "engine": "node >= 0.8" } From 8048868bd7cc55716127d1c9fa40a0c32db8b901 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Tue, 11 Mar 2014 14:21:27 +0100 Subject: [PATCH 149/333] use preDelete instead of postDelete hook --- lib/base.php | 5 ++++- lib/private/preview.php | 37 ++++++++++++++++++++++++++++++++++--- 2 files changed, 38 insertions(+), 4 deletions(-) diff --git a/lib/base.php b/lib/base.php index 86ee534982..6ad3a84bca 100644 --- a/lib/base.php +++ b/lib/base.php @@ -661,7 +661,10 @@ class OC { */ public static function registerPreviewHooks() { OC_Hook::connect('OC_Filesystem', 'post_write', 'OC\Preview', 'post_write'); - OC_Hook::connect('OC_Filesystem', 'delete', 'OC\Preview', 'post_delete'); + OC_Hook::connect('OC_Filesystem', 'preDelete', 'OC\Preview', 'prepare_delete_files'); + OC_Hook::connect('\OCP\Versions', 'preDelete', 'OC\Preview', 'prepare_delete'); + OC_Hook::connect('\OCP\Trashbin', 'preDelete', 'OC\Preview', 'prepare_delete'); + OC_Hook::connect('OC_Filesystem', 'delete', 'OC\Preview', 'post_delete_files'); OC_Hook::connect('\OCP\Versions', 'delete', 'OC\Preview', 'post_delete'); OC_Hook::connect('\OCP\Trashbin', 'delete', 'OC\Preview', 'post_delete'); } diff --git a/lib/private/preview.php b/lib/private/preview.php index 74051fbc2a..8cef1ade01 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -42,6 +42,10 @@ class Preview { private $scalingup; private $mimetype; + //filemapper used for deleting previews + // index is path, value is fileinfo + static public $deleteFileMapper = array(); + //preview images object /** * @var \OC_Image @@ -166,7 +170,11 @@ class Preview { } protected function getFileInfo() { - if (!$this->info) { + $absPath = $this->fileView->getAbsolutePath($this->file); + $absPath = Files\Filesystem::normalizePath($absPath); + if(array_key_exists($absPath, self::$deleteFileMapper)) { + $this->info = self::$deleteFileMapper[$absPath]; + } else if (!$this->info) { $this->info = $this->fileView->getFileInfo($this->file); } return $this->info; @@ -623,12 +631,35 @@ class Preview { self::post_delete($args); } - public static function post_delete($args) { + public static function prepare_delete_files($args) { + self::prepare_delete($args, 'files/'); + } + + public static function prepare_delete($args, $prefix='') { $path = $args['path']; if (substr($path, 0, 1) === '/') { $path = substr($path, 1); } - $preview = new Preview(\OC_User::getUser(), 'files/', $path); + + $view = new \OC\Files\View('/' . \OC_User::getUser() . '/' . $prefix); + $info = $view->getFileInfo($path); + + \OC\Preview::$deleteFileMapper = array_merge( + \OC\Preview::$deleteFileMapper, + array( + Files\Filesystem::normalizePath($view->getAbsolutePath($path)) => $info, + ) + ); + } + + public static function post_delete_files($args) { + self::post_delete($args, 'files/'); + } + + public static function post_delete($args, $prefix='') { + $path = Files\Filesystem::normalizePath($args['path']); + + $preview = new Preview(\OC_User::getUser(), $prefix, $path); $preview->deleteAllPreviews(); } From 1295e541736f3bf073013db72a49416821f5d4bc Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 13 Mar 2014 01:55:50 -0400 Subject: [PATCH 150/333] [tx-robot] updated from transifex --- apps/files/l10n/tr.php | 5 + apps/files_encryption/l10n/da.php | 1 + apps/files_encryption/l10n/tr.php | 1 + apps/files_external/l10n/fr.php | 1 + apps/files_external/l10n/tr.php | 2 + apps/files_sharing/l10n/fr.php | 1 + apps/files_sharing/l10n/tr.php | 1 + apps/user_ldap/l10n/es.php | 5 + apps/user_ldap/l10n/tr.php | 5 + core/l10n/tr.php | 8 ++ l10n/da/files_encryption.po | 10 +- l10n/de/settings.po | 122 +++++++++--------- l10n/de_DE/settings.po | 124 +++++++++--------- l10n/en_GB/settings.po | 122 +++++++++--------- l10n/es/settings.po | 125 +++++++++--------- l10n/es/user_ldap.po | 17 +-- l10n/fi_FI/settings.po | 126 +++++++++--------- l10n/fr/files_external.po | 6 +- l10n/fr/files_sharing.po | 10 +- l10n/fr/settings.po | 127 ++++++++++--------- l10n/ja_JP/settings.po | 122 +++++++++--------- l10n/nl/settings.po | 122 +++++++++--------- l10n/pt_BR/settings.po | 122 +++++++++--------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 4 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 20 +-- l10n/templates/private.pot | 14 +- l10n/templates/settings.pot | 116 ++++++++--------- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 22 ++-- l10n/tr/files.po | 16 +-- l10n/tr/files_encryption.po | 10 +- l10n/tr/files_external.po | 12 +- l10n/tr/files_sharing.po | 10 +- l10n/tr/lib.po | 36 +++--- l10n/tr/settings.po | 190 ++++++++++++++-------------- l10n/tr/user_ldap.po | 18 +-- lib/l10n/tr.php | 6 + settings/l10n/de.php | 1 + settings/l10n/de_DE.php | 1 + settings/l10n/en_GB.php | 1 + settings/l10n/es.php | 2 + settings/l10n/fi_FI.php | 3 + settings/l10n/fr.php | 3 + settings/l10n/ja_JP.php | 1 + settings/l10n/nl.php | 1 + settings/l10n/pt_BR.php | 1 + settings/l10n/tr.php | 31 +++++ 54 files changed, 902 insertions(+), 818 deletions(-) diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 8105095d61..01208430b0 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s taşınamadı - Bu isimde dosya zaten var", "Could not move %s" => "%s taşınamadı", "File name cannot be empty." => "Dosya adı boş olamaz.", +"\"%s\" is an invalid file name." => "'%s' geçersiz bir dosya adı.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", +"The target folder has been moved or deleted." => "Hedef klasör taşındı veya silindi.", "The name %s is already used in the folder %s. Please choose a different name." => "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim seçin.", "Not a valid source" => "Geçerli bir kaynak değil", "Server is not allowed to open URLs, please check the server configuration" => "Sunucunun adresleri açma izi yok, lütfen sunucu yapılandırmasını denetleyin", @@ -27,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Geçersiz dizin.", "Files" => "Dosyalar", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi", +"Total file size {size1} exceeds upload limit {size2}" => "Toplam dosya boyutu {size1} gönderme sınırını {size2} aşıyor", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Yeterince boş alan yok. Gönderdiğiniz boyut {size1} ancak {size2} alan mevcut", "Upload cancelled." => "Yükleme iptal edildi.", "Could not get result from server." => "Sunucudan sonuç alınamadı.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", @@ -48,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n dosya","%n dosya"), "{dirs} and {files}" => "{dirs} ve {files}", "_Uploading %n file_::_Uploading %n files_" => array("%n dosya yükleniyor","%n dosya yükleniyor"), +"\"{name}\" is an invalid file name." => "\"{name}\" geçersiz bir dosya adı.", "Your storage is full, files can not be updated or synced anymore!" => "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek.", "Your storage is almost full ({usedSpacePercent}%)" => "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın", diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 464c95cda4..f0f1580049 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.", "Following users are not set up for encryption:" => "Følgende brugere er ikke sat op til kryptering:", "Initial encryption started... This can take some time. Please wait." => "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent venligst.", +"Initial encryption running... Please try again later." => "Kryptering foretages... Prøv venligst igen senere.", "Go directly to your " => "Gå direkte til din ", "personal settings" => "Personlige indstillinger", "Encryption" => "Kryptering", diff --git a/apps/files_encryption/l10n/tr.php b/apps/files_encryption/l10n/tr.php index 59bb010e3d..85e35f5ddd 100644 --- a/apps/files_encryption/l10n/tr.php +++ b/apps/files_encryption/l10n/tr.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "PHP 5.3.3 veya daha sürümü ile birlikte OpenSSL ve OpenSSL PHP uzantısının birlikte etkin olduğunu ve doğru bir şekilde yapılandırıldığından emin olun. Şimdilik şifreleme uygulaması devre dışı bırakıldı", "Following users are not set up for encryption:" => "Aşağıdaki kullanıcılar şifreleme için ayarlanmadılar:", "Initial encryption started... This can take some time. Please wait." => "İlk şifreleme başladı... Bu biraz zaman alabilir. Lütfen bekleyin.", +"Initial encryption running... Please try again later." => "İlk şifreleme çalışıyor... Lütfen daha sonra tekrar deneyin.", "Go directly to your " => "Doğrudan şuraya gidin:", "personal settings" => "kişisel ayarlar", "Encryption" => "Şifreleme", diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index 43e19669cc..356fa8b6ac 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Autoriser l'accès", "Please provide a valid Dropbox app key and secret." => "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de passe valides.", "Error configuring Google Drive storage" => "Erreur lors de la configuration du support de stockage Google Drive", +"Saved" => "Sauvegarder", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer.", "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." => "Attention : Le support FTP de PHP n'est pas activé ou installé. Le montage des partages FTP n'est pas disponible. Contactez votre administrateur système pour l'installer.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Attention : Le support de Curl n'est pas activé ou installé dans PHP. Le montage de ownCloud / WebDAV ou GoogleDrive n'est pas possible. Contactez votre administrateur système pour l'installer.", diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index b5f9cade3d..a835d6f174 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Erişim sağlandı", "Please provide a valid Dropbox app key and secret." => "Lütfen Dropbox app key ve secret temin ediniz", "Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası", +"Saved" => "Kaydedildi", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Uyarı: \"smbclient\" kurulu değil. CIFS/SMB paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın.", "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." => "Uyarı: PHP içerisinde FTP desteği etkin veya yüklü değil. FTP paylaşımlarını bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinize danışın.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Uyarı: PHP içerisinde Curl desteği etkin veya yüklü değil. OwnCloud / WebDAV veya GoogleDrive bağlama işlemi mümkün olmadı. Lütfen kurulumu için sistem yöneticinizde danışın.", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Kullanıcılar", "Delete" => "Sil", "Enable User External Storage" => "Kullanıcılar için Harici Depolamayı Etkinleştir", +"Allow users to mount the following external storage" => "Kullanıcıların aşağıdaki harici depolamayı bağlamalarına izin ver", "SSL root certificates" => "SSL kök sertifikaları", "Import Root Certificate" => "Kök Sertifikalarını İçe Aktar" ); diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index 7f9a69331a..8e083f4ca0 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "sharing is disabled" => "le partage est désactivé", "For more info, please ask the person who sent this link." => "Pour plus d'informations, veuillez contacter la personne qui a envoyé ce lien.", "shared by %s" => "partagé par %s", +"Download %s" => "Télécharger %s", "Direct link" => "Lien direct" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/tr.php b/apps/files_sharing/l10n/tr.php index 51a248bfb2..4177221e10 100644 --- a/apps/files_sharing/l10n/tr.php +++ b/apps/files_sharing/l10n/tr.php @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "sharing is disabled" => "paylaşım devre dışı", "For more info, please ask the person who sent this link." => "Daha fazla bilgi için bu bağlantıyı aldığınız kişi ile iletişime geçin.", "shared by %s" => "paylaşan: %s", +"Download %s" => "İndir: %s", "Direct link" => "Doğrudan bağlantı" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 5ca2d41e69..1821aa8d44 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Guardar", "Test Configuration" => "Configuración de prueba", "Help" => "Ayuda", +"Groups meeting these criteria are available in %s:" => "Los grupos que cumplen estos criterios están disponibles en %s:", "only those object classes:" => "solamente de estas clases de objeto:", "only from those groups:" => "solamente de estos grupos:", "Edit raw filter instead" => "Editar el filtro en bruto en su lugar", "Raw LDAP filter" => "Filtro LDAP en bruto", "The filter specifies which LDAP groups shall have access to the %s instance." => "El filtro especifica que grupos LDAP tendrán acceso a %s.", "groups found" => "grupos encontrados", +"Users login with this attribute:" => "Los usuarios inician sesión con este atributo:", "LDAP Username:" => "Nombre de usuario LDAP:", "LDAP Email Address:" => "Dirección e-mail LDAP:", "Other Attributes:" => "Otros atributos:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Para acceso anónimo, deje DN y contraseña vacíos.", "One Base DN per line" => "Un DN Base por línea", "You can specify Base DN for users and groups in the Advanced tab" => "Puede especificar el DN base para usuarios y grupos en la pestaña Avanzado", +"Limit %s access to users meeting these criteria:" => "Limitar el acceso a %s a los usuarios que cumplan estos criterios:", "The filter specifies which LDAP users shall have access to the %s instance." => "El filtro especifica que usuarios LDAP pueden tener acceso a %s.", "users found" => "usuarios encontrados", "Back" => "Atrás", @@ -85,6 +88,8 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Un DN Base de Grupo por línea", "Group Search Attributes" => "Atributos de busqueda de grupo", "Group-Member association" => "Asociación Grupo-Miembro", +"Nested Groups" => "Grupos anidados", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Cuando se active, se permitirán grupos que contenga otros grupos (solo funciona si el atributo de miembro de grupo contiene DNs).", "Special Attributes" => "Atributos especiales", "Quota Field" => "Cuota", "Quota Default" => "Cuota por defecto", diff --git a/apps/user_ldap/l10n/tr.php b/apps/user_ldap/l10n/tr.php index eaeee1ebf1..fa829a7427 100644 --- a/apps/user_ldap/l10n/tr.php +++ b/apps/user_ldap/l10n/tr.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Kaydet", "Test Configuration" => "Test Yapılandırması", "Help" => "Yardım", +"Groups meeting these criteria are available in %s:" => "Bu kriterle eşleşen gruplar %s içinde mevcut:", "only those object classes:" => "sadece bu nesne sınıflarına:", "only from those groups:" => "sadece bu gruplardan:", "Edit raw filter instead" => "Bunun yerine ham filtreyi düzenle", "Raw LDAP filter" => "Ham LDAP filtresi", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filtre, %s örneğine erişmesi gereken LDAP gruplarını belirtir.", "groups found" => "grup bulundu", +"Users login with this attribute:" => "Bu nitelikle oturum açan kullanıcılar:", "LDAP Username:" => "LDAP Kullanıcı Adı:", "LDAP Email Address:" => "LDAP E-posta Adresi:", "Other Attributes:" => "Diğer Nitelikler", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Anonim erişim için DN ve Parola alanlarını boş bırakın.", "One Base DN per line" => "Bir Tabani DN herbir dizi. ", "You can specify Base DN for users and groups in the Advanced tab" => "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek ederiz. ", +"Limit %s access to users meeting these criteria:" => "%s erişimini, şu kriterle eşleşen kullanıcılara sınırla:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filtre, %s örneğine erişmesi gereken LDAP kullanıcılarını belirtir.", "users found" => "kullanıcı bulundu", "Back" => "Geri", @@ -85,6 +88,8 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Bir Grubu Tabani DN her dizgi. ", "Group Search Attributes" => "Kategorii Arama Grubu", "Group-Member association" => "Grup-Üye işbirliği", +"Nested Groups" => "İç içe Gruplar", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Etkinleştirildiğinde, grup içeren gruplar desteklenir (Sadece grup üyesi DN niteliği içeriyorsa çalışır).", "Special Attributes" => "Özel Öznitelikler", "Quota Field" => "Kota Alanı", "Quota Default" => "Öntanımlı Kota", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index f37aeb5106..3c00a5aaea 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -59,6 +59,11 @@ $TRANSLATIONS = array( "(all selected)" => "(tümü seçildi)", "({count} selected)" => "({count} seçildi)", "Error loading file exists template" => "Dosya mevcut şablonu yüklenirken hata", +"Very weak password" => "Çok güçsüz parola", +"Weak password" => "Güçsüz parola", +"So-so password" => "Normal parola", +"Good password" => "İyi parola", +"Strong password" => "Güçlü parola", "Shared" => "Paylaşılan", "Share" => "Paylaş", "Error" => "Hata", @@ -106,6 +111,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the ownCloud community." => "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.", "%s password reset" => "%s parola sıfırlama", +"A problem has occurred whilst sending the email, please contact your administrator." => "E-posta gönderilirken bir hata oluştu. Lütfen yönetinizle iletişime geçin.", "Use the following link to reset your password: {link}" => "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
Eğer orada da bulamazsanız sistem yöneticinize sorunuz.", "Request failed!
Did you make sure your email/username was right?" => "İstek başarısız!
E-posta ve/veya kullanıcı adınızın doğru olduğundan emin misiniz?", @@ -143,6 +149,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için internet'ten erişime açık.", "For information how to properly configure your server, please see the documentation." => "Sunucunuzu nasıl ayarlayacağınıza dair bilgi için, lütfen belgelendirme sayfasını ziyaret edin.", "Create an admin account" => "Bir yönetici hesabı oluşturun", +"Storage & database" => "Depolama ve veritabanı", "Data folder" => "Veri klasörü", "Configure the database" => "Veritabanını ayarla", "will be used" => "kullanılacak", @@ -165,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "hatırla", "Log in" => "Giriş yap", "Alternative Logins" => "Alternatif Girişler", +"Hey there,

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

" => "Merhaba,

%s sizinle %s paylaşımında bulundu.
Paylaşımı gör!

", "This ownCloud instance is currently in single user mode." => "Bu ownCloud örneği şu anda tek kullanıcı kipinde.", "This means only administrators can use the instance." => "Bu, örneği sadece yöneticiler kullanabilir demektir.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Eğer bu ileti görünmeye devam ederse veya beklenmedik şekilde ortaya çıkmışsa sistem yöneticinizle iletişime geçin.", diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 629dba066a..83a7a04974 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe, 2013 +# Sappe, 2013-2014 # claus_chr , 2013 # lodahl , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 12:00+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -104,7 +104,7 @@ msgstr "Førstegangskryptering er påbegyndt... Dette kan tage nogen tid. Vent v #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Kryptering foretages... Prøv venligst igen senere." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 37c6a5d163..64f6540e12 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 11:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,17 +55,17 @@ msgstr "E-Mail wurde verschickt" msgid "You need to set your user email before being able to send test emails." msgstr "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E-Mail verschicken kannst." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Authentifizierungsmethode" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -340,18 +340,18 @@ msgstr "SSL" msgid "TLS" msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Sicherheitswarnung" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Du greifst auf %s via HTTP zu. Wir empfehlen Dir dringend, Deinen Server so konfigurieren, das stattdessen HTTPS verlangt wird." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -360,68 +360,68 @@ msgid "" "root." msgstr "Dein Datenverzeichnis und deine Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfe nochmals die Installationsanleitungen." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modul 'fileinfo' fehlt " -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Deine PHP-Version ist veraltet" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Deine PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Ländereinstellung funktioniert nicht" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Keine Netzwerkverbindung" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -430,162 +430,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Benutze den System-Crondienst um die cron.php alle 15 Minuten aufzurufen." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Aktiviere Sharing-API" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Erlaubt Apps die Nutzung der Share-API" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Erlaubt Links" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt es Benutzern, andere Benutzer einzurichten, dass diese in deren öffentlich freigegebenen Ordner hochladen dürfen" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "Dies wird zum Senden von Benachrichtigungen verwendet." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "SMTP Passwor" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "Teste E-Mail-Einstellunge" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "Sende E-Mail" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Mehr" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Weniger" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the , 2013-2014 # stefanniedermann , 2014 -# traductor , 2013 +# traductor, 2013 # noxin , 2013 # Mirodin , 2013 # kabum , 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 11:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,17 +56,17 @@ msgstr "Email gesendet" msgid "You need to set your user email before being able to send test emails." msgstr "Sie müssen Ihre Benutzer-E-Mail-Adresse setzen, bevor Sie Test-E-Mails versenden können." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Authentifizierungsmethode" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -341,18 +341,18 @@ msgstr "SSL" msgid "TLS" msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Sie greifen auf %s via HTTP zu. Wir empfehlen Ihnen dringend, Ihren Server so konfigurieren, das stattdessen HTTPS verlangt wird." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -361,68 +361,68 @@ msgid "" "root." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicherweise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie nochmals die Installationsanleitungen." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Ihre PHP-Version ist veraltet" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Ihre PHP-Version ist veraltet. Wir empfehlen dringend auf die Version 5.3.8 oder neuer zu aktualisieren, da ältere Versionen kompromittiert werden können. Es ist möglich, dass diese Installation nicht richtig funktioniert." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Systemgebietsschema kann nicht auf eine UTF-8 unterstützende eingestellt werden." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dies bedeutet, dass Probleme mit bestimmten Zeichen in den Dateinamen geben kann." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Wir empfehlen dringend, die erforderlichen Pakete auf Ihrem System zu installieren, damit eine der folgenden Gebietsschemas unterstützt wird: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -431,162 +431,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Versenden von Mail-Benachrichtigungen funktionieren eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt es Benutzern, andere Benutzer einzurichten, dass diese in deren öffentlich freigegebenen Ordner hochladen dürfen" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "Dies wird für das Senden von Benachrichtigungen verwendet." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "SMTP Passwort" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "E-Mail-Einstellungen testen" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "E-Mail senden" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Mehr" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Weniger" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,17 +48,17 @@ msgstr "Email sent" msgid "You need to set your user email before being able to send test emails." msgstr "You need to set your user email before being able to send test emails." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "Send mode" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Encryption" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Authentication method" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -333,18 +333,18 @@ msgstr "SSL" msgid "TLS" msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Security Warning" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Setup Warning" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Please double check the installation guides." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' missing" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Your PHP version is outdated" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "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." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Locale not working" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "System locale can not be set to a one which supports UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "This means that there might be problems with certain characters in file names." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "We strongly suggest installing the required packages on your system to support one of the following locales: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Internet connection not working" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Execute one task with each page loaded" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use system's cron service to call the cron.php file every 15 minutes." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Sharing" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Enable Share API" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Allow apps to use the Share API" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Allow links" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Allow users to share items to the public with links" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Allow public uploads" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Allow users to enable others to upload into their publicly shared folders" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Allow resharing" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Allow users to share items shared with them again" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Allow users to share with anyone" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Allow users to only share with users in their groups" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Allow mail notification" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Allow user to send mail notification for shared files" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Security" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forces the clients to connect to %s via an encrypted connection." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "Email Server" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "This is used for sending out notifications." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "From address" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "Authentication required" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Server address" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Credentials" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "SMTP Username" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "SMTP Password" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "Test email settings" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "Send email" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Log level" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "More" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Less" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the , 2013 # ggam , 2013 # japaol , 2013 +# txelu , 2014 # juanman , 2013 # pablomillaquen , 2013 # Raul Fernandez Garcia , 2013 @@ -20,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 21:20+0000\n" +"Last-Translator: txelu \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,17 +61,17 @@ msgstr "Correo electrónico enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Tiene que configurar su dirección de correo electrónico antes de poder enviar mensajes de prueba." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Método de autenticación" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -331,7 +332,7 @@ msgstr "Iniciar sesión" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Plano" #: templates/admin.php:19 msgid "NT LAN Manager" @@ -345,18 +346,18 @@ msgstr "SSL" msgid "TLS" msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Está ingresando a %s vía HTTP. Le recomendamos encarecidamente que configure su servidor para que requiera HTTPS." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -365,68 +366,68 @@ msgid "" "root." msgstr "Su directorio de datos y archivos es probablemente accesible desde Internet pues el archivo .htaccess no está funcionando. Le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos no sea accesible o que mueva dicho directorio fuera de la raíz de documentos del servidor web." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Advertencia de configuración" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "No se ha encontrado el módulo \"fileinfo\"" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Su versión de PHP no está actualizada" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "No se puede escoger una configuración regional que soporte UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. " -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "La conexión a Internet no está funcionando" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -435,162 +436,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "Servidor de correo electrónico" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "Esto se usa para enviar notificaciones." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "Desde la dirección" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "Se necesita autenticación" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Puerto" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Credenciales" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "Nombre de usuario SMTP" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "Contraseña SMTP" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "Probar configuración de correo electrónico" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "Enviar mensaje" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Registro" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Más" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Menos" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the , 2013 +# txelu , 2014 # Maenso , 2013 # Raul Fernandez Garcia , 2013 # ordenet , 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 21:20+0000\n" +"Last-Translator: txelu \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,7 +172,7 @@ msgstr "Ayuda" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Los grupos que cumplen estos criterios están disponibles en %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -207,7 +208,7 @@ msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Los usuarios inician sesión con este atributo:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -275,7 +276,7 @@ msgstr "Puede especificar el DN base para usuarios y grupos en la pestaña Avanz #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Limitar el acceso a %s a los usuarios que cumplan estos criterios:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -419,13 +420,13 @@ msgstr "Asociación Grupo-Miembro" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Grupos anidados" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Cuando se active, se permitirán grupos que contenga otros grupos (solo funciona si el atributo de miembro de grupo contiene DNs)." #: templates/settings.php:41 msgid "Special Attributes" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 9162c25d65..d98d93147a 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 11:00+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Virheellinen arvo kohdassa %s" #: admin/controller.php:73 msgid "Saved" @@ -46,19 +46,19 @@ msgstr "Sähköposti lähetetty" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "Lähetystila" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Salaus" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Tunnistautumistapa" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -333,18 +333,18 @@ msgstr "SSL" msgid "TLS" msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Turvallisuusvaroitus" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -353,68 +353,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Asetusvaroitus" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Lue asennusohjeet tarkasti." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Moduuli 'fileinfo' puuttuu" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Käytössä oleva PHP-versio on vanhentunut" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Käytössä oleva PHP on vanhentunut. Päivitä versioon 5.3.8 tai uudempaan, koska aiemmat versiot eivät ole toimivia. On mahdollista, että tämä ownCloud-asennus ei toimi kunnolla." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Maa-asetus ei toimi" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Järjestelmän maa-asetusta ei voi asettaa UTF-8:aa tukevaksi." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Suosittelemme vahvasti asentamaan vaaditut paketit järjestelmään, jotta jotain seuraavista maa-asetuksista on mahdollista tukea: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Internet-yhteys ei toimi" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein" -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita käyttäen linkkejä" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Salli julkiset lähetykset" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Salli sähköposti-ilmoitukset" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "Sähköpostipalvelin" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "Tätä käytetään ilmoitusten lähettämiseen." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "Lähettäjän osoite" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "Tunnistautuminen vaaditaan" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Palvelimen osoite" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Portti" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Tilitiedot" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "SMTP-käyttäjätunnus" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "SMTP-salasana" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "Testaa sähköpostiasetukset" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "Lähetä sähköpostiviesti" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Loki" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Enemmän" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Versio" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the , 2013 # Christophe Lherieau , 2013 -# etiess , 2013 +# etiess , 2013-2014 # ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 19:40+0000\n" +"Last-Translator: etiess \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" @@ -69,7 +69,7 @@ msgstr "partagé par %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "Télécharger %s" #: templates/public.php:48 msgid "Direct link" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index f985a8b2b1..22453981dd 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# 2rock , 2014 # Adalberto Rodrigues , 2013 # Christophe Lherieau , 2013 # etiess , 2013 @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-13 02:33+0000\n" +"Last-Translator: 2rock \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" @@ -30,11 +31,11 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Type de valeur METADATA invalide : \"%s\"." #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Sauvegarder" #: admin/controller.php:90 msgid "test email settings" @@ -42,7 +43,7 @@ msgstr "" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Si vous recevez cet email, c'est que les paramètres sont corrects" #: admin/controller.php:94 msgid "" @@ -57,15 +58,15 @@ msgstr "Email envoyé" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Chiffrement" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" msgstr "" @@ -342,18 +343,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Avertissement de sécurité" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Vous accédez à %s via HTTP. Nous vous recommandons fortement de configurer votre serveur pour forcer l'utilisation de HTTPS à la place." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -362,68 +363,68 @@ msgid "" "root." msgstr "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou bien de le déplacer à l'extérieur de la racine du serveur web." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Avertissement, problème de configuration" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez consulter à nouveau les guides d'installation." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' manquant" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "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." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Votre version de PHP est trop ancienne" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "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:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Localisation non fonctionnelle" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Les paramètres régionaux ne peuvent pas être configurés avec un qui supporte UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Cela signifie qu'il pourrait y avoir des problèmes avec certains caractères dans les noms de fichier." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Nous conseillons vivement d'installer les paquets requis sur votre système pour supporter l'un des paramètres régionaux suivants : %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "La connexion internet ne fonctionne pas" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -432,162 +433,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ce serveur ne peut se connecter à internet. Cela signifie que certaines fonctionnalités, telles que le montage de supports de stockage distants, les notifications de mises à jour ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne seront pas fonctionnels également. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez disposer de l'ensemble des fonctionnalités offertes." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php est enregistré en tant que service webcron pour appeler cron.php toutes les 15 minutes via http." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utilise le service cron du système pour appeler le fichier cron.php toutes les 15 minutes." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Autoriser les téléversements publics" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permet d'autoriser les autres utilisateurs à téléverser dans le dossier partagé public de l'utilisateur" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Autoriser les notifications par couriel" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forcer les clients à se connecter à %s via une connexion chiffrée." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Adresse du serveur" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Informations d'identification" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Plus" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Moins" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \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,17 +52,17 @@ msgstr "メールを送信しました" msgid "You need to set your user email before being able to send test emails." msgstr "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "送信モード" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "暗号化" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "認証方法" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -337,18 +337,18 @@ msgstr "SSL" msgid "TLS" msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "セキュリティ警告" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "HTTP経由で %s にアクセスしています。HTTPSを使用するようサーバーを設定することを強くおすすめします。" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -357,68 +357,68 @@ msgid "" "root." msgstr "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "セットアップ警告" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "installation guidesをもう一度チェックするようにお願いいたします。" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "モジュール 'fileinfo' が見つかりません" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "PHPバーションが古くなっています。" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "PHPバーションが古くなっています。古いバージョンには既知の問題があるため、5.3.8以降のバージョンにアップデートすることを強く推奨します。このインストール状態では正常に動作しない可能性があります。" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "ロケールが動作していません" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "システムロケールを UTF-8 をサポートするロケールに設定できません。" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "これは、ファイル名の特定の文字に問題があることを意味しています。" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "インターネット接続が動作していません" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -427,162 +427,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されています" -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "システムのcronサービスを利用して15分ごとにcron.phpファイルを実行します。" -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "共有" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "ユーザーがリンクによりアイテムを公開することを許可する" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "パブリックなアップロードを許可" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "公開している共有フォルダーへのアップロードを共有しているメンバーにも許可" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "ユーザーが共有しているアイテムの再共有を許可する" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "ユーザーに誰とでも共有することを許可する" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "ユーザーにグループ内のユーザーとのみ共有を許可する" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "メール通知を許可" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "共有ファイルに関するメール通知の送信をユーザーに許可する" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "クライアントから %sへの接続を常に暗号化します。" -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "メールサーバー" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "これは通知の送信に使われます。" -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "アドレスから" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "要求される認証" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "サーバーアドレス" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "ポート" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "資格情報" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "SMTP ユーザー名" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "SMTP パスワード" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "メールテスト設定" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "メールを送信" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "ログ" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "もっと見る" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "閉じる" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "バージョン" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,17 +51,17 @@ msgstr "E-mail verzonden" msgid "You need to set your user email before being able to send test emails." msgstr "U moet uw e-mailadres instellen voordat u testberichten kunt versturen." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "Verstuurmodus" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Versleuteling" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Authenticatiemethode" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -336,18 +336,18 @@ msgstr "SSL" msgid "TLS" msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Beveiligingswaarschuwing" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "U bent met %s verbonden over HTTP. We adviseren met klem uw server zo te configureren dat allen HTTPS kan worden gebruikt." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -356,68 +356,68 @@ msgid "" "root." msgstr "Uw data folder en uw bestanden zijn waarschijnlijk vanaf het internet bereikbaar. Het .htaccess-bestand werkt niet. We raden ten zeerste aan aan om uw webserver zodanig te configureren, dat de datamap niet bereikbaar is vanaf het internet of om uw datamap te verplaatsen naar een locatie buiten de document root van de webserver." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Instellingswaarschuwing" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Conntroleer de installatie handleiding goed." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' ontbreekt" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Uw PHP versie is verouderd" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Uw PHP versie is verouderd. We adviseren met klem om bij te werken naar versie 5.3.8 of later, omdat oudere versies corrupt kunnen zijn. Het is mogelijk dat deze installatie niet goed werkt." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Taalbestand werkt niet" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "De systeemtaal kan niet worden ingesteld op een taal die UTF-8 ondersteunt." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dat betekent dat er problemen kunnen optreden met bepaalde tekens in bestandsnamen." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "We adviseren met klem om de noodzakelijke pakketten op uw systeem te installeren om een van de volgende talen te ondersteunen: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Internet verbinding werkt niet" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -426,162 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Deze server heeft geen actieve internetverbinding. Dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internetverbinding voor deze server in te schakelen als u alle functies wilt gebruiken." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Sta publieke uploads toe" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Toestaan e-mailnotificaties" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "E-mailserver" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "Dit wordt gestuurd voor het verzenden van meldingen." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "Afzenderadres" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "Authenticatie vereist" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Server adres" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Poort" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Inloggegevens" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "SMTP gebruikersnaam" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "SMTP wachtwoord" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "Test e-mailinstellingen" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "Versturen e-mail" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Meer" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Minder" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Versie" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,17 +49,17 @@ msgstr "E-mail enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Você precisa configurar seu e-mail de usuário antes de ser capaz de enviar e-mails de teste." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "Modo enviar" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Criptografia" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Método de autenticação" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -334,18 +334,18 @@ msgstr "SSL" msgid "TLS" msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Você está acessando %s via HTTP. Sugerimos você configurar o servidor para exigir o uso de HTTPS em seu lugar." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -354,68 +354,68 @@ msgid "" "root." msgstr "Seu diretório de dados e seus arquivos são, provavelmente, acessíveis a partir da internet. O arquivo htaccess. não está funcionando. Nós sugerimos fortemente que você configure o seu servidor web de uma forma que o diretório de dados não esteja mais acessível ou mova o diretório de dados para fora do raiz do servidor." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Aviso de Configuração" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece não estar funcionando." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, verifique os guias de instalação." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Módulo 'fileinfo' faltando" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type)." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Sua versão de PHP está desatualizada" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "A sua versão do PHP está desatualizada. Recomendamos a atualização para 5.3.8 ou mais recente, pois as versões mais antigas são conhecidas por serem quebradas. É possível que esta instalação não esteja funcionando corretamente." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Localização não funcionando" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Localidade do sistema não pode ser definido como um que suporta UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Isso significa que pode haver problemas com certos caracteres nos nomes de arquivo." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Nós sugerimos para instalar os pacotes necessários no seu sistema para suportar uma das seguintes localidades: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Sem conexão com a internet" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Permitir que usuários compartilhem itens com o público usando links" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Permitir envio público" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que usuários deem permissão a outros para enviarem arquivios para suas pastas compartilhadas publicamente" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Permitir usuários enviar notificação por email de arquivos compartilhados" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Segurança" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Obrigar os clientes que se conectem a %s através de uma conexão criptografada." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "Servidor de Email" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "Isto é usado para o envio de notificações." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "Do Endereço" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "Autenticação é requerida" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Endereço do servidor" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Porta" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "Nome do Usuário SMTP" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "Senha SMTP" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "Configurações de e-mail de teste" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "Enviar email" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Registro" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Mais" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Menos" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Versão" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index fd77b84901..95e2858a86 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index ba54c7b374..34dfc635f8 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "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 32e0db5e6f..096a0d63d4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "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 3fa590d193..37f6fb64b2 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "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 a0c8864a9b..7b3414d7c8 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -35,7 +35,7 @@ msgstr "" msgid "Error" msgstr "" -#: lib/trashbin.php:852 lib/trashbin.php:854 +#: lib/trashbin.php:853 lib/trashbin.php:855 msgid "restored" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index a51b485700..7c780ed253 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "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 694a156a49..6c8f1dc38f 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -207,9 +207,9 @@ msgstr "" #: private/setup/oci.php:151 private/setup/oci.php:162 #: private/setup/oci.php:169 private/setup/oci.php:178 #: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" @@ -218,9 +218,9 @@ msgstr "" #: private/setup/oci.php:122 private/setup/oci.php:145 #: private/setup/oci.php:152 private/setup/oci.php:163 #: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -256,7 +256,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index cfb1eaf97c..b0da40c223 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -193,7 +193,7 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "" #: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 -#: setup/postgresql.php:24 setup/postgresql.php:70 +#: setup/postgresql.php:31 setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "" @@ -204,16 +204,16 @@ msgstr "" #: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:144 #: setup/oci.php:151 setup/oci.php:162 setup/oci.php:169 setup/oci.php:178 #: setup/oci.php:186 setup/oci.php:195 setup/oci.php:201 -#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 -#: setup/postgresql.php:125 setup/postgresql.php:134 +#: setup/postgresql.php:103 setup/postgresql.php:112 setup/postgresql.php:129 +#: setup/postgresql.php:139 setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "" #: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:145 #: setup/oci.php:152 setup/oci.php:163 setup/oci.php:179 setup/oci.php:187 -#: setup/oci.php:196 setup/postgresql.php:90 setup/postgresql.php:99 -#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#: setup/oci.php:196 setup/postgresql.php:104 setup/postgresql.php:113 +#: setup/postgresql.php:130 setup/postgresql.php:140 setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "" @@ -249,7 +249,7 @@ msgstr "" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup/postgresql.php:23 setup/postgresql.php:69 +#: setup/postgresql.php:30 setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index d21704a897..eb15b516af 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" msgstr "" @@ -331,18 +331,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server " "to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -351,68 +351,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -421,161 +421,161 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 3b71a9373c..50a97a0d70 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index f126f0fe4b..39d504da9f 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -273,23 +273,23 @@ msgstr "Dosya mevcut şablonu yüklenirken hata" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Çok güçsüz parola" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Güçsüz parola" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Normal parola" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "İyi parola" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Güçlü parola" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -488,7 +488,7 @@ msgstr "%s parola sıfırlama" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "E-posta gönderilirken bir hata oluştu. Lütfen yönetinizle iletişime geçin." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -666,7 +666,7 @@ msgstr "Bir yönetici hesabı oluşturun" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Depolama ve veritabanı" #: templates/installation.php:77 msgid "Data folder" @@ -767,7 +767,7 @@ msgstr "Alternatif Girişler" msgid "" "Hey there,

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

" -msgstr "" +msgstr "Merhaba,

%s sizinle %s paylaşımında bulundu.
Paylaşımı gör!

" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index afff85591a..70fb73bdcc 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +38,7 @@ msgstr "Dosya adı boş olamaz." #: ajax/newfile.php:62 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "'%s' geçersiz bir dosya adı." #: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" @@ -49,7 +49,7 @@ msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakter #: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Hedef klasör taşındı veya silindi." #: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format @@ -153,12 +153,12 @@ msgstr "Bir dizin veya 0 bayt olduğundan {filename} yüklenemedi" #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Toplam dosya boyutu {size1} gönderme sınırını {size2} aşıyor" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Yeterince boş alan yok. Gönderdiğiniz boyut {size1} ancak {size2} alan mevcut" #: js/file-upload.js:338 msgid "Upload cancelled." @@ -253,7 +253,7 @@ msgstr[1] "%n dosya yükleniyor" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" geçersiz bir dosya adı." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 0b56d0ae30..76d669faea 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -4,14 +4,14 @@ # # Translators: # ismail yenigül , 2013 -# volkangezer , 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -103,7 +103,7 @@ msgstr "İlk şifreleme başladı... Bu biraz zaman alabilir. Lütfen bekleyin." #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "İlk şifreleme çalışıyor... Lütfen daha sonra tekrar deneyin." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index c2e5200a79..0a942596ce 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# volkangezer , 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +40,7 @@ msgstr "Google Drive depo yapılandırma hatası" #: js/settings.js:313 js/settings.js:320 msgid "Saved" -msgstr "" +msgstr "Kaydedildi" #: lib/config.php:512 msgid "" @@ -117,7 +117,7 @@ msgstr "Kullanıcılar için Harici Depolamayı Etkinleştir" #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Kullanıcıların aşağıdaki harici depolamayı bağlamalarına izin ver" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 87321f7a77..e12ff2554c 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# volkangezer , 2013 +# volkangezer , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +66,7 @@ msgstr "paylaşan: %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "İndir: %s" #: templates/public.php:48 msgid "Direct link" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index b5d1c00581..d54faf7b56 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,7 +161,7 @@ msgstr "Jetonun süresi geçti. Lütfen sayfayı yenileyin." #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "Bilinmeyen kullanıcı" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -196,23 +196,23 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Bir konto veya kullanici birlemek ihtiyacin. " #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "MySQL/MariaDB kullanıcı adı ve/veya parolası geçersiz" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 #: private/setup/oci.php:151 private/setup/oci.php:162 #: private/setup/oci.php:169 private/setup/oci.php:178 #: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "DB Hata: ''%s''" @@ -221,9 +221,9 @@ msgstr "DB Hata: ''%s''" #: private/setup/oci.php:122 private/setup/oci.php:145 #: private/setup/oci.php:152 private/setup/oci.php:163 #: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Komut rahasiz ''%s''. " @@ -231,20 +231,20 @@ msgstr "Komut rahasiz ''%s''. " #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL/MariaDB kullanıcı '%s'@'localhost' zaten mevcut." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)" #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -259,7 +259,7 @@ msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 47dadcba30..37e17b1006 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,24 +24,24 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "%s için geçersiz değer sağlandı" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Kaydedildi" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "e-posta ayarlarını sına" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Eğer bu e-postayı aldıysanız, ayarlar doğru gibi görünüyor." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "E-posta gönderilirken bir hata oluştu. Lütfen ayarlarınızı tekrar ziyaret edin." #: admin/controller.php:99 msgid "Email sent" @@ -49,19 +49,19 @@ msgstr "E-posta gönderildi" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" -msgstr "" +msgstr "Gönderme kipi" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Şifreleme" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Kimlik doğrulama yöntemi" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -161,7 +161,7 @@ msgstr "Parola değiştirilemiyor" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Gönderiliyor..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -169,7 +169,7 @@ msgstr "Kullanıcı Belgelendirmesi" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Yönetici Belgelendirmesi" #: js/apps.js:67 msgid "Update to {appversion}" @@ -221,23 +221,23 @@ msgstr "Bir profil fotoğrafı seçin" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Çok güçsüz parola" #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Güçsüz parola" #: js/personal.js:276 msgid "So-so password" -msgstr "" +msgstr "Normal parola" #: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "İyi parola" #: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "Güçlü parola" #: js/personal.js:301 msgid "Decrypting files... Please wait, this can take some time." @@ -322,32 +322,32 @@ msgstr "Oturum Aç" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Düz" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "NT Ağ Yöneticisi" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Güvenlik Uyarısı" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -356,68 +356,68 @@ msgid "" "root." msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Kurulum Uyarısı" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını tekrar kontrol edin." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modül 'fileinfo' kayıp" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "PHP sürümünüz eski" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "PHP sürümünüz eski. Eski sürümlerde sorun olduğundan 5.3.8 veya daha yeni bir sürüme güncellemenizi şiddetle tavsiye ederiz. Bu kurulumun da doğru çalışmaması da olasıdır." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Locale çalışmıyor." -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "İnternet bağlantısı çalışmıyor" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -426,162 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Paylaşım API'sini etkinleştir" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Bağlantılara izin ver" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Herkes tarafından yüklemeye izin ver" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Kullanıcıların her şeyi paylaşmalarına izin ver" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Posta bilgilendirmesine izin ver" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s'a HTTPS ile bağlanın." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" -msgstr "" +msgstr "E-Posta Sunucusu" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." -msgstr "" +msgstr "Bu, bildirimler gönderilirken kullanılır." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" -msgstr "" - -#: templates/admin.php:330 -msgid "Authentication required" -msgstr "" +msgstr "Kimden adresi" #: templates/admin.php:334 +msgid "Authentication required" +msgstr "Kimlik doğrulama gerekli" + +#: templates/admin.php:338 msgid "Server address" msgstr "Sunucu adresi" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Port" -#: templates/admin.php:343 -msgid "Credentials" -msgstr "" - -#: templates/admin.php:344 -msgid "SMTP Username" -msgstr "" - #: templates/admin.php:347 -msgid "SMTP Password" -msgstr "" +msgid "Credentials" +msgstr "Kimlik Bilgileri" + +#: templates/admin.php:348 +msgid "SMTP Username" +msgstr "SMTP Kullanıcı Adı" #: templates/admin.php:351 +msgid "SMTP Password" +msgstr "SMTP Parolası" + +#: templates/admin.php:355 msgid "Test email settings" -msgstr "" +msgstr "E-posta ayarlarını sına" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" -msgstr "" +msgstr "E-posta gönder" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Günlük" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Az" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the -licensed by " @@ -692,7 +692,7 @@ msgstr "E-posta adresiniz" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "Parola kurtarmayı ve bildirim almayı açmak için bir e-posta adresi girin" #: templates/personal.php:96 msgid "Profile picture" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 6b16544154..29c83ca6b7 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -4,15 +4,15 @@ # # Translators: # ismail yenigül , 2013 -# volkangezer , 2013 +# volkangezer , 2013-2014 # KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -166,7 +166,7 @@ msgstr "Yardım" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Bu kriterle eşleşen gruplar %s içinde mevcut:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -202,7 +202,7 @@ msgstr "grup bulundu" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Bu nitelikle oturum açan kullanıcılar:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -270,7 +270,7 @@ msgstr "Base DN kullanicileri ve kaynaklari icin tablosu Advanced tayin etmek e #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "%s erişimini, şu kriterle eşleşen kullanıcılara sınırla:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -414,13 +414,13 @@ msgstr "Grup-Üye işbirliği" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "İç içe Gruplar" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Etkinleştirildiğinde, grup içeren gruplar desteklenir (Sadece grup üyesi DN niteliği içeriyorsa çalışır)." #: templates/settings.php:41 msgid "Special Attributes" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 314012b29a..2fce8b87bf 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -31,6 +31,7 @@ $TRANSLATIONS = array( "Application is not enabled" => "Uygulama etkinleştirilmedi", "Authentication error" => "Kimlik doğrulama hatası", "Token expired. Please reload page." => "Jetonun süresi geçti. Lütfen sayfayı yenileyin.", +"Unknown user" => "Bilinmeyen kullanıcı", "Files" => "Dosyalar", "Text" => "Metin", "Images" => "Resimler", @@ -39,8 +40,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s veritabanı adında nokta kullanamayabilirsiniz", "MS SQL username and/or password not valid: %s" => "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s", "You need to enter either an existing account or the administrator." => "Bir konto veya kullanici birlemek ihtiyacin. ", +"MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB kullanıcı adı ve/veya parolası geçersiz", "DB Error: \"%s\"" => "DB Hata: ''%s''", "Offending command was: \"%s\"" => "Komut rahasiz ''%s''. ", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB kullanıcı '%s'@'localhost' zaten mevcut.", +"Drop this user from MySQL/MariaDB" => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", +"MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut", +"Drop this user from MySQL/MariaDB." => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", "Oracle connection could not be established" => "Oracle bağlantısı kurulamadı", "Oracle username and/or password not valid" => "Adi klullanici ve/veya parola Oracle mantikli değildir. ", "Offending command was: \"%s\", name: %s, password: %s" => "Hatalı komut: \"%s\", ad: %s, parola: %s", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 5287c6230e..5f1433f62c 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "You need to set your user email before being able to send test emails." => "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E-Mail verschicken kannst.", "Send mode" => "Sende-Modus", "Encryption" => "Verschlüsselung", +"Authentication method" => "Authentifizierungsmethode", "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Fehler bei der Anmeldung", "Your full name has been changed." => "Dein vollständiger Name ist geändert worden.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 99a5f9b230..8884afcbc3 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "You need to set your user email before being able to send test emails." => "Sie müssen Ihre Benutzer-E-Mail-Adresse setzen, bevor Sie Test-E-Mails versenden können.", "Send mode" => "Sende-Modus", "Encryption" => "Verschlüsselung", +"Authentication method" => "Authentifizierungsmethode", "Unable to load list from App Store" => "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Authentifizierungs-Fehler", "Your full name has been changed." => "Ihr vollständiger Name ist geändert worden.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 2a02d53bd4..2315586b18 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "You need to set your user email before being able to send test emails." => "You need to set your user email before being able to send test emails.", "Send mode" => "Send mode", "Encryption" => "Encryption", +"Authentication method" => "Authentication method", "Unable to load list from App Store" => "Unable to load list from App Store", "Authentication error" => "Authentication error", "Your full name has been changed." => "Your full name has been changed.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 399a085474..734149034b 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "You need to set your user email before being able to send test emails." => "Tiene que configurar su dirección de correo electrónico antes de poder enviar mensajes de prueba.", "Send mode" => "Modo de envío", "Encryption" => "Cifrado", +"Authentication method" => "Método de autenticación", "Unable to load list from App Store" => "No se pudo cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", "Your full name has been changed." => "Se ha cambiado su nombre completo.", @@ -71,6 +72,7 @@ $TRANSLATIONS = array( "Fatal issues only" => "Problemas fatales solamente", "None" => "Ninguno", "Login" => "Iniciar sesión", +"Plain" => "Plano", "NT LAN Manager" => "Gestor de NT LAN", "SSL" => "SSL", "TLS" => "TLS", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index adca015f49..284c47e080 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,12 +1,15 @@ "Virheellinen arvo kohdassa %s", "Saved" => "Tallennettu", "test email settings" => "testaa sähköpostiasetukset", "If you received this email, the settings seem to be correct." => "Jos sait tämän sähköpostin, kaikki asetukset vaikuttavat olevan kunnossa.", "A problem occurred while sending the e-mail. Please revisit your settings." => "Sähköpostia lähettäessä tapahtui virhe. Tarkista asetukset.", "Email sent" => "Sähköposti lähetetty", +"You need to set your user email before being able to send test emails." => "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta.", "Send mode" => "Lähetystila", "Encryption" => "Salaus", +"Authentication method" => "Tunnistautumistapa", "Unable to load list from App Store" => "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", "Authentication error" => "Tunnistautumisvirhe", "Your full name has been changed." => "Koko nimesi on muutettu.", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 5e2681f497..e63405a492 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,5 +1,8 @@ "Type de valeur METADATA invalide : \"%s\".", +"Saved" => "Sauvegarder", +"If you received this email, the settings seem to be correct." => "Si vous recevez cet email, c'est que les paramètres sont corrects", "Email sent" => "Email envoyé", "Encryption" => "Chiffrement", "Unable to load list from App Store" => "Impossible de charger la liste depuis l'App Store", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index fae623d38c..7a2802d588 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "You need to set your user email before being able to send test emails." => "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。", "Send mode" => "送信モード", "Encryption" => "暗号化", +"Authentication method" => "認証方法", "Unable to load list from App Store" => "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", "Your full name has been changed." => "フルネームを変更しました。", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index bb2fd047c3..826a6a77e0 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "You need to set your user email before being able to send test emails." => "U moet uw e-mailadres instellen voordat u testberichten kunt versturen.", "Send mode" => "Verstuurmodus", "Encryption" => "Versleuteling", +"Authentication method" => "Authenticatiemethode", "Unable to load list from App Store" => "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", "Your full name has been changed." => "Uw volledige naam is gewijzigd.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index c31a49ae6d..4a7554499d 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "You need to set your user email before being able to send test emails." => "Você precisa configurar seu e-mail de usuário antes de ser capaz de enviar e-mails de teste.", "Send mode" => "Modo enviar", "Encryption" => "Criptografia", +"Authentication method" => "Método de autenticação", "Unable to load list from App Store" => "Não foi possível carregar lista da App Store", "Authentication error" => "Erro de autenticação", "Your full name has been changed." => "Seu nome completo foi alterado.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 66a364c174..e02c6701a9 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -1,7 +1,15 @@ "%s için geçersiz değer sağlandı", +"Saved" => "Kaydedildi", +"test email settings" => "e-posta ayarlarını sına", +"If you received this email, the settings seem to be correct." => "Eğer bu e-postayı aldıysanız, ayarlar doğru gibi görünüyor.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "E-posta gönderilirken bir hata oluştu. Lütfen ayarlarınızı tekrar ziyaret edin.", "Email sent" => "E-posta gönderildi", +"You need to set your user email before being able to send test emails." => "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor.", +"Send mode" => "Gönderme kipi", "Encryption" => "Şifreleme", +"Authentication method" => "Kimlik doğrulama yöntemi", "Unable to load list from App Store" => "App Store'dan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", "Your full name has been changed." => "Tam adınız değiştirildi.", @@ -24,7 +32,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Arka uç parola değişimini desteklemiyor ancak kullanıcı şifreleme anahtarı başarıyla güncellendi.", "Unable to change password" => "Parola değiştirilemiyor", +"Sending..." => "Gönderiliyor...", "User Documentation" => "Kullanıcı Belgelendirmesi", +"Admin Documentation" => "Yönetici Belgelendirmesi", "Update to {appversion}" => "{appversion} Güncelle", "Disable" => "Devre dışı bırak", "Enable" => "Etkinleştir", @@ -37,6 +47,11 @@ $TRANSLATIONS = array( "Update" => "Güncelleme", "Updated" => "Güncellendi", "Select a profile picture" => "Bir profil fotoğrafı seçin", +"Very weak password" => "Çok güçsüz parola", +"Weak password" => "Güçsüz parola", +"So-so password" => "Normal parola", +"Good password" => "İyi parola", +"Strong password" => "Güçlü parola", "Decrypting files... Please wait, this can take some time." => "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir.", "deleted" => "silinen:", "undo" => "geri al", @@ -57,6 +72,10 @@ $TRANSLATIONS = array( "Fatal issues only" => "Sadece ölümcül konular", "None" => "Hiçbiri", "Login" => "Oturum Aç", +"Plain" => "Düz", +"NT LAN Manager" => "NT Ağ Yöneticisi", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Güvenlik Uyarısı", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.", @@ -94,8 +113,17 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s'a HTTPS ile bağlanın.", +"Email Server" => "E-Posta Sunucusu", +"This is used for sending out notifications." => "Bu, bildirimler gönderilirken kullanılır.", +"From address" => "Kimden adresi", +"Authentication required" => "Kimlik doğrulama gerekli", "Server address" => "Sunucu adresi", "Port" => "Port", +"Credentials" => "Kimlik Bilgileri", +"SMTP Username" => "SMTP Kullanıcı Adı", +"SMTP Password" => "SMTP Parolası", +"Test email settings" => "E-posta ayarlarını sına", +"Send email" => "E-posta gönder", "Log" => "Günlük", "Log level" => "Günlük seviyesi", "More" => "Daha fazla", @@ -105,7 +133,9 @@ $TRANSLATIONS = array( "Add your App" => "Uygulamanızı Ekleyin", "More Apps" => "Daha Fazla Uygulama", "Select an App" => "Bir Uygulama Seçin", +"Documentation:" => "Belgelendirme:", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", +"See application website" => "Uygulama web sitesine bakın", "-licensed by " => "-lisanslayan ", "Administrator Documentation" => "Yönetici Belgelendirmesi", "Online Documentation" => "Çevrimiçi Belgelendirme", @@ -124,6 +154,7 @@ $TRANSLATIONS = array( "Full Name" => "Tam Adı", "Email" => "E-posta", "Your email address" => "E-posta adresiniz", +"Fill in an email address to enable password recovery and receive notifications" => "Parola kurtarmayı ve bildirim almayı açmak için bir e-posta adresi girin", "Profile picture" => "Profil resmi", "Upload new" => "Yeni yükle", "Select new from Files" => "Dosyalardan seç", From f43833749301a8c8ea605d08897ffbc422c8d560 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Thu, 13 Mar 2014 12:32:02 +0100 Subject: [PATCH 151/333] improve validation of getFileInfo in \OC\Preview --- lib/private/preview.php | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 8cef1ade01..1f797c7e99 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -189,7 +189,10 @@ class Preview { $this->file = $file; $this->info = null; if ($file !== '') { - $this->mimetype = $this->getFileInfo()->getMimetype(); + $this->getFileInfo(); + if($this->info !== null && $this->info !== false) { + $this->mimetype = $this->info->getMimetype(); + } } return $this; } @@ -282,10 +285,13 @@ class Preview { $file = $this->getFile(); $fileInfo = $this->getFileInfo($file); - $fileId = $fileInfo->getId(); + if($fileInfo !== null && $fileInfo !== false) { + $fileId = $fileInfo->getId(); - $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/' . $this->getMaxX() . '-' . $this->getMaxY() . '.png'; - return $this->userView->unlink($previewPath); + $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/' . $this->getMaxX() . '-' . $this->getMaxY() . '.png'; + return $this->userView->unlink($previewPath); + } + return false; } /** @@ -296,11 +302,14 @@ class Preview { $file = $this->getFile(); $fileInfo = $this->getFileInfo($file); - $fileId = $fileInfo->getId(); + if($fileInfo !== null && $fileInfo !== false) { + $fileId = $fileInfo->getId(); - $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; - $this->userView->deleteAll($previewPath); - return $this->userView->rmdir($previewPath); + $previewPath = $this->getThumbnailsFolder() . '/' . $fileId . '/'; + $this->userView->deleteAll($previewPath); + return $this->userView->rmdir($previewPath); + } + return false; } /** @@ -406,6 +415,9 @@ class Preview { $scalingUp = $this->getScalingUp(); $fileInfo = $this->getFileInfo($file); + if($fileInfo === null || $fileInfo === false) { + return new \OC_Image(); + } $fileId = $fileInfo->getId(); $cached = $this->isCached(); From a8eb7a5092fad987b96f9dac947dc9bf4a2b0eaf Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 13 Mar 2014 13:33:09 +0100 Subject: [PATCH 152/333] Allow setting the config dir to use as enviroment variable for phpunit --- lib/base.php | 4 +++- tests/bootstrap.php | 9 +++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/lib/base.php b/lib/base.php index 86ee534982..2d4a9f9276 100644 --- a/lib/base.php +++ b/lib/base.php @@ -103,7 +103,9 @@ class OC { get_include_path() ); - if(defined('PHPUNIT_RUN') and PHPUNIT_RUN and is_dir(OC::$SERVERROOT . '/tests/config/')) { + if(defined('PHPUNIT_CONFIG_DIR')) { + self::$configDir = OC::$SERVERROOT . '/' . PHPUNIT_CONFIG_DIR . '/'; + } elseif(defined('PHPUNIT_RUN') and PHPUNIT_RUN and is_dir(OC::$SERVERROOT . '/tests/config/')) { self::$configDir = OC::$SERVERROOT . '/tests/config/'; } else { self::$configDir = OC::$SERVERROOT . '/config/'; diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 581cfcff9f..70de7cd1c4 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -3,9 +3,14 @@ define('PHPUNIT_RUN', 1); -require_once __DIR__.'/../lib/base.php'; +$configDir = getenv('CONFIG_DIR'); +if ($configDir) { + define('PHPUNIT_CONFIG_DIR', $configDir); +} -if(!class_exists('PHPUnit_Framework_TestCase')) { +require_once __DIR__ . '/../lib/base.php'; + +if (!class_exists('PHPUnit_Framework_TestCase')) { require_once('PHPUnit/Autoload.php'); } From 9d32475260b71b97c3fc7f8bf63e1c51e55f210e Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 12 Mar 2014 11:00:30 +0100 Subject: [PATCH 153/333] finally fix the paths for the OCS Share API --- apps/files_sharing/lib/api.php | 28 +++++++-- apps/files_sharing/tests/api.php | 105 ++++++++++++++++++++++++++++++- lib/public/share.php | 6 +- 3 files changed, 132 insertions(+), 7 deletions(-) diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index 7adbcab2f9..de3c1cd263 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -98,8 +98,14 @@ class Api { break; } } + } else { + $path = $params['path']; + foreach ($shares as $key => $share) { + $shares[$key]['path'] = $path; + } } + // include also reshares in the lists. This means that the result // will contain every user with access to the file. if (isset($params['reshares']) && $params['reshares'] === true) { @@ -107,8 +113,10 @@ class Api { } if ($receivedFrom) { - $shares['received_from'] = $receivedFrom['uid_owner']; - $shares['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); + foreach ($shares as $key => $share) { + $shares[$key]['received_from'] = $receivedFrom['uid_owner']; + $shares[$key]['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); + } } } else { $shares = null; @@ -174,9 +182,10 @@ class Api { $share = \OCP\Share::getItemShared($itemType, $file['fileid']); if($share) { $receivedFrom = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']); + reset($share); + $key = key($share); + $share[$key]['path'] = self::correctPath($share[$key]['path'], $path); if ($receivedFrom) { - reset($share); - $key = key($share); $share[$key]['received_from'] = $receivedFrom['uid_owner']; $share[$key]['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); } @@ -522,4 +531,15 @@ class Api { } + /** + * @brief make sure that the path has the correct root + * + * @param string $path path returned from the share API + * @param string $folder current root folder + * @return string the correct path + */ + protected static function correctPath($path, $folder) { + return \OC_Filesystem::normalizePath('/' . $folder . '/' . basename($path)); + } + } diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 30deb07c5b..e2bbb54818 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -477,7 +477,90 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } - /** + /** + * @brief test multiple shared folder if the path gets constructed correctly + * @medium + */ + function testGetShareMultipleSharedFolder() { + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + + $fileInfo1 = $this->view->getFileInfo($this->folder); + $fileInfo2 = $this->view->getFileInfo($this->folder . $this->subfolder); + + + // share sub-folder to user2 + $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // share was successful? + $this->assertTrue($result); + + // share folder to user2 + $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // share was successful? + $this->assertTrue($result); + + + // login as user2 + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + + $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); + // share was successful? + $this->assertTrue(is_string($result)); + + + // ask for shared/subfolder + $expectedPath1 = '/Shared' . $this->subfolder; + $_GET['path'] = $expectedPath1; + + $result1 = Share\Api::getAllShares(array()); + + $this->assertTrue($result1->succeeded()); + + // test should return one share within $this->folder + $data1 = $result1->getData(); + $share1 = reset($data1); + + // ask for shared/folder/subfolder + $expectedPath2 = '/Shared' . $this->folder . $this->subfolder; + $_GET['path'] = $expectedPath2; + + $result2 = Share\Api::getAllShares(array()); + + $this->assertTrue($result2->succeeded()); + + // test should return one share within $this->folder + $data2 = $result2->getData(); + $share2 = reset($data2); + + + // validate results + // we should get exactly one result each time + $this->assertEquals(1, count($data1)); + $this->assertEquals(1, count($data2)); + + $this->assertEquals($expectedPath1, $share1['path']); + $this->assertEquals($expectedPath2, $share2['path']); + + + // cleanup + $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null); + $this->assertTrue($result); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + $this->assertTrue($result); + $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + $this->assertTrue($result); + + } + + /** * @brief test re-re-share of folder if the path gets constructed correctly * @medium */ @@ -784,4 +867,24 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue($result3->succeeded()); } + + function testCorrectPath() { + $path = "/foo/bar/test.txt"; + $folder = "/correct/path"; + $expectedResult = "/correct/path/test.txt"; + + $shareApiDummy = new TestShareApi(); + + $this->assertSame($expectedResult, $shareApiDummy->correctPathTest($path, $folder)); + } + +} + +/** + * @brief dumnmy class to test protected methods + */ +class TestShareApi extends \OCA\Files\Share\Api { + public function correctPathTest($path, $folder) { + return self::correctPath($path, $folder); +} } diff --git a/lib/public/share.php b/lib/public/share.php index dd9e1bbf9a..5066d40354 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -1250,10 +1250,12 @@ class Share { // Remove root from file source paths if retrieving own shared items if (isset($uidOwner) && isset($row['path'])) { if (isset($row['parent'])) { + // FIXME: Doesn't always construct the correct path, example: + // Folder '/a/b', share '/a' and '/a/b' to user2 + // user2 reshares /Shared/b and ask for share status of /Shared/a/b + // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); $parentResult = $query->execute(array($row['parent'])); - //$query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); - //$parentResult = $query->execute(array($row['id'])); if (\OC_DB::isError($result)) { \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, From fc697c729811e5644e2c7bc884bd54d3ff092ac8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 13 Mar 2014 16:19:17 +0100 Subject: [PATCH 154/333] adding StartSessionListener which initializes the session before each test case execution --- tests/phpunit-autotest.xml | 1 + tests/phpunit.xml.dist | 3 +++ tests/startsessionlistener.php | 45 ++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 tests/startsessionlistener.php diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index 1a2ab35491..872ff2c259 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -36,6 +36,7 @@ + detail diff --git a/tests/phpunit.xml.dist b/tests/phpunit.xml.dist index 71a4ff2762..21c63ea046 100644 --- a/tests/phpunit.xml.dist +++ b/tests/phpunit.xml.dist @@ -29,4 +29,7 @@ + + + diff --git a/tests/startsessionlistener.php b/tests/startsessionlistener.php new file mode 100644 index 0000000000..fb7fa83e09 --- /dev/null +++ b/tests/startsessionlistener.php @@ -0,0 +1,45 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * Starts a new session before each test execution + */ +class StartSessionListener implements PHPUnit_Framework_TestListener { + + public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) { + } + + public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) { + } + + public function startTest(PHPUnit_Framework_Test $test) { + + // new session + \OC::$session = new \OC\Session\Memory(''); + + // load the version + OC_Util::getVersion(); + + } + + public function endTest(PHPUnit_Framework_Test $test, $time) { + } + + public function startTestSuite(PHPUnit_Framework_TestSuite $suite) { + } + + public function endTestSuite(PHPUnit_Framework_TestSuite $suite) { + } + +} From 7bd2a51be57eded580d8cdae4eedf9e4f4694265 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 13 Mar 2014 17:57:14 +0100 Subject: [PATCH 155/333] map transifex language ja_JP to ja --- l10n/.tx/config | 1 + 1 file changed, 1 insertion(+) diff --git a/l10n/.tx/config b/l10n/.tx/config index 62324f2488..ba2d192909 100644 --- a/l10n/.tx/config +++ b/l10n/.tx/config @@ -1,5 +1,6 @@ [main] host = https://www.transifex.com +lang_map = ja_JP: ja [owncloud.core] file_filter = /core.po From a5425e84f2c93a80a1e6d43fdde9dd655090d557 Mon Sep 17 00:00:00 2001 From: ideaship Date: Thu, 13 Mar 2014 20:05:11 +0100 Subject: [PATCH 156/333] fix autoconfig In array_merge, $post overrides $opts (concerns data directory). Always merge $post before calling display(). Default value for dbtype which may still be undefined in display(). Fixes several problems related to autoconfig: - installation.php only showed $AUTOCONFIG data if it was called after install() had come back with errors - if autoconfig.php was set, installation.php showed an editable field with the wrong data in it; then, regardless of any changes, the value from autoconfig.php was used - installation.php used undefined indeces (dbtype, dbIsSet, directoryIsSet) --- core/setup/controller.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/setup/controller.php b/core/setup/controller.php index 697408cfb5..1233f326f1 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -20,7 +20,7 @@ class Controller { $errors = array('errors' => $e); if(count($e) > 0) { - $options = array_merge($post, $opts, $errors); + $options = array_merge($opts, $post, $errors); $this->display($options); } else { @@ -28,7 +28,8 @@ class Controller { } } else { - $this->display($opts); + $options = array_merge($opts, $post); + $this->display($options); } } @@ -41,6 +42,7 @@ class Controller { 'dbname' => '', 'dbtablespace' => '', 'dbhost' => '', + 'dbtype' => '', ); $parameters = array_merge($defaults, $post); From 4b802aa7cbbb46d85a50e0d08756cb702274d8f9 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 13 Mar 2014 17:12:37 -0400 Subject: [PATCH 157/333] [tx-robot] updated from transifex --- apps/files/l10n/el.php | 2 + apps/files/l10n/fr.php | 5 + apps/files/l10n/ja.php | 96 ++++ apps/files/l10n/ro.php | 7 + apps/files_encryption/l10n/fr.php | 1 + apps/files_encryption/l10n/ja.php | 44 ++ apps/files_encryption/l10n/pl.php | 1 + apps/files_external/l10n/el.php | 1 + apps/files_external/l10n/fr.php | 1 + apps/files_external/l10n/ja.php | 29 + apps/files_sharing/l10n/el.php | 1 + apps/files_sharing/l10n/ja.php | 17 + apps/files_trashbin/l10n/ja.php | 15 + apps/files_versions/l10n/ja.php | 10 + apps/user_ldap/l10n/fr.php | 5 + apps/user_ldap/l10n/ja.php | 112 ++++ apps/user_ldap/l10n/pl.php | 5 + apps/user_webdavauth/l10n/ja.php | 7 + core/l10n/el.php | 5 + core/l10n/fr.php | 8 + core/l10n/ja.php | 184 +++++++ core/l10n/pl.php | 8 + l10n/el/core.po | 18 +- l10n/el/files.po | 12 +- l10n/el/files_external.po | 6 +- l10n/el/files_sharing.po | 9 +- l10n/el/settings.po | 194 +++---- l10n/es/core.po | 4 +- l10n/fr/core.po | 24 +- l10n/fr/files.po | 18 +- l10n/fr/files_encryption.po | 10 +- l10n/fr/files_external.po | 9 +- l10n/fr/lib.po | 38 +- l10n/fr/settings.po | 88 +-- l10n/fr/user_ldap.po | 18 +- l10n/it/settings.po | 136 ++--- l10n/ja/core.po | 799 +++++++++++++++++++++++++++ l10n/ja/files.po | 424 +++++++++++++++ l10n/ja/files_encryption.po | 205 +++++++ l10n/ja/files_external.po | 129 +++++ l10n/ja/files_sharing.po | 75 +++ l10n/ja/files_trashbin.po | 68 +++ l10n/ja/files_versions.po | 44 ++ l10n/ja/lib.po | 339 ++++++++++++ l10n/ja/settings.po | 813 ++++++++++++++++++++++++++++ l10n/ja/user_ldap.po | 525 ++++++++++++++++++ l10n/ja/user_webdavauth.po | 37 ++ l10n/pl/core.po | 23 +- l10n/pl/files_encryption.po | 9 +- l10n/pl/settings.po | 154 +++--- l10n/pl/user_ldap.po | 17 +- l10n/ro/core.po | 4 +- l10n/ro/files.po | 21 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 16 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/fr.php | 6 + lib/l10n/ja.php | 71 +++ settings/l10n/el.php | 27 + settings/l10n/fr.php | 27 + settings/l10n/it.php | 1 + settings/l10n/ja.php | 187 +++++++ settings/l10n/pl.php | 5 + 72 files changed, 4774 insertions(+), 422 deletions(-) create mode 100644 apps/files/l10n/ja.php create mode 100644 apps/files_encryption/l10n/ja.php create mode 100644 apps/files_external/l10n/ja.php create mode 100644 apps/files_sharing/l10n/ja.php create mode 100644 apps/files_trashbin/l10n/ja.php create mode 100644 apps/files_versions/l10n/ja.php create mode 100644 apps/user_ldap/l10n/ja.php create mode 100644 apps/user_webdavauth/l10n/ja.php create mode 100644 core/l10n/ja.php create mode 100644 l10n/ja/core.po create mode 100644 l10n/ja/files.po create mode 100644 l10n/ja/files_encryption.po create mode 100644 l10n/ja/files_external.po create mode 100644 l10n/ja/files_sharing.po create mode 100644 l10n/ja/files_trashbin.po create mode 100644 l10n/ja/files_versions.po create mode 100644 l10n/ja/lib.po create mode 100644 l10n/ja/settings.po create mode 100644 l10n/ja/user_ldap.po create mode 100644 l10n/ja/user_webdavauth.po create mode 100644 lib/l10n/ja.php create mode 100644 settings/l10n/ja.php diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 8916f06c65..4e207f80ee 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", "Could not move %s" => "Αδυναμία μετακίνησης του %s", "File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", +"\"%s\" is an invalid file name." => "Το \"%s\" είναι ένα μη έγκυρο όνομα αρχείου.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.", "The name %s is already used in the folder %s. Please choose a different name." => "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα.", "Not a valid source" => "Μη έγκυρη πηγή", @@ -48,6 +49,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n αρχείο","%n αρχεία"), "{dirs} and {files}" => "{Κατάλογοι αρχείων} και {αρχεία}", "_Uploading %n file_::_Uploading %n files_" => array("Ανέβασμα %n αρχείου","Ανέβασμα %n αρχείων"), +"\"{name}\" is an invalid file name." => "Το \"{name}\" είναι μη έγκυρο όνομα αρχείου.", "Your storage is full, files can not be updated or synced anymore!" => "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!", "Your storage is almost full ({usedSpacePercent}%)" => "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 759de43f1c..ae748d19cc 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", "Could not move %s" => "Impossible de déplacer %s", "File name cannot be empty." => "Le nom de fichier ne peut être vide.", +"\"%s\" is an invalid file name." => "\"%s\" n'est pas un nom de fichier valide.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", +"The target folder has been moved or deleted." => "Le dossier cible a été déplacé ou supprimé.", "The name %s is already used in the folder %s. Please choose a different name." => "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un nom différent.", "Not a valid source" => "La source n'est pas valide", "Server is not allowed to open URLs, please check the server configuration" => "Le serveur n'est pas autorisé à ouvrir des URL, veuillez vérifier la configuration du serveur", @@ -27,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Dossier invalide.", "Files" => "Fichiers", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Impossible d'envoyer {filename} car il s'agit d'un répertoire ou d'un fichier de taille nulle", +"Total file size {size1} exceeds upload limit {size2}" => "La taille totale du fichier {size1} excède la taille maximale d'envoi {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Espace insuffisant : vous tentez d'envoyer {size1} mais seulement {size2} sont disponibles", "Upload cancelled." => "Envoi annulé.", "Could not get result from server." => "Ne peut recevoir les résultats du serveur.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", @@ -48,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fichier","%n fichiers"), "{dirs} and {files}" => "{dirs} et {files}", "_Uploading %n file_::_Uploading %n files_" => array("Téléversement de %n fichier","Téléversement de %n fichiers"), +"\"{name}\" is an invalid file name." => "\"{name}\" n'est pas un nom de fichier valide.", "Your storage is full, files can not be updated or synced anymore!" => "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !", "Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter.", diff --git a/apps/files/l10n/ja.php b/apps/files/l10n/ja.php new file mode 100644 index 0000000000..8a4b3ca877 --- /dev/null +++ b/apps/files/l10n/ja.php @@ -0,0 +1,96 @@ + "%s を移動できませんでした ― この名前のファイルはすでに存在します", +"Could not move %s" => "%s を移動できませんでした", +"File name cannot be empty." => "ファイル名を空にすることはできません。", +"\"%s\" is an invalid file name." => "\"%s\" は無効なファイル名です。", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", +"The target folder has been moved or deleted." => "目標のフォルダは移動されたか、削除されました。", +"The name %s is already used in the folder %s. Please choose a different name." => "%s はフォルダー %s ですでに使われています。別の名前を選択してください。", +"Not a valid source" => "有効なソースではありません", +"Server is not allowed to open URLs, please check the server configuration" => "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。", +"Error while downloading %s to %s" => "%s から %s へのダウンロードエラー", +"Error when creating the file" => "ファイルの生成エラー", +"Folder name cannot be empty." => "フォルダー名は空にできません", +"Error when creating the folder" => "フォルダーの生成エラー", +"Unable to set upload directory." => "アップロードディレクトリを設定できません。", +"Invalid Token" => "無効なトークン", +"No file was uploaded. Unknown error" => "ファイルは何もアップロードされていません。不明なエラー", +"There is no error, the file uploaded with success" => "エラーはありません。ファイルのアップロードは成功しました", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています", +"The uploaded file was only partially uploaded" => "アップロードファイルは一部分だけアップロードされました", +"No file was uploaded" => "ファイルはアップロードされませんでした", +"Missing a temporary folder" => "一時保存フォルダーが見つかりません", +"Failed to write to disk" => "ディスクへの書き込みに失敗しました", +"Not enough storage available" => "ストレージに十分な空き容量がありません", +"Upload failed. Could not find uploaded file" => "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。", +"Upload failed. Could not get file info." => "アップロードに失敗。ファイル情報を取得できませんでした。", +"Invalid directory." => "無効なディレクトリです。", +"Files" => "ファイル", +"Unable to upload {filename} as it is a directory or has 0 bytes" => "ディレクトリもしくは0バイトのため {filename} をアップロードできません", +"Total file size {size1} exceeds upload limit {size2}" => "合計ファイルサイズ {size1} はアップロード制限 {size2} を超過しています。", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "空き容量が十分でなく、 {size1} をアップロードしていますが、 {size2} しか残っていません。", +"Upload cancelled." => "アップロードはキャンセルされました。", +"Could not get result from server." => "サーバーから結果を取得できませんでした。", +"File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", +"URL cannot be empty" => "URL は空にできません", +"In the home folder 'Shared' is a reserved filename" => "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です", +"{new_name} already exists" => "{new_name} はすでに存在します", +"Could not create file" => "ファイルを作成できませんでした", +"Could not create folder" => "フォルダーを作成できませんでした", +"Error fetching URL" => "URL取得エラー", +"Share" => "共有", +"Delete permanently" => "完全に削除する", +"Rename" => "名前の変更", +"Pending" => "中断", +"Could not rename file" => "ファイルの名前変更ができませんでした", +"replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", +"undo" => "元に戻す", +"Error deleting file." => "ファイルの削除エラー。", +"_%n folder_::_%n folders_" => array("%n 個のフォルダー"), +"_%n file_::_%n files_" => array("%n 個のファイル"), +"{dirs} and {files}" => "{dirs} と {files}", +"_Uploading %n file_::_Uploading %n files_" => array("%n 個のファイルをアップロード中"), +"\"{name}\" is an invalid file name." => "\"{name}\" は無効なファイル名です。", +"Your storage is full, files can not be updated or synced anymore!" => "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!", +"Your storage is almost full ({usedSpacePercent}%)" => "ストレージがほぼ一杯です({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。", +"Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。", +"Your download is being prepared. This might take some time if the files are big." => "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。", +"Error moving file" => "ファイルの移動エラー", +"Error" => "エラー", +"Name" => "名前", +"Size" => "サイズ", +"Modified" => "更新日時", +"Invalid folder name. Usage of 'Shared' is reserved." => "無効なフォルダー名。「Shared」の利用は予約されています。", +"%s could not be renamed" => "%sの名前を変更できませんでした", +"Upload" => "アップロード", +"File handling" => "ファイル操作", +"Maximum upload size" => "最大アップロードサイズ", +"max. possible: " => "最大容量: ", +"Needed for multi-file and folder downloads." => "複数ファイルおよびフォルダーのダウンロードに必要", +"Enable ZIP-download" => "ZIP形式のダウンロードを有効にする", +"0 is unlimited" => "0を指定した場合は無制限", +"Maximum input size for ZIP files" => "ZIPファイルでの最大入力サイズ", +"Save" => "保存", +"New" => "新規作成", +"New text file" => "新規のテキストファイル作成", +"Text file" => "テキストファイル", +"New folder" => "新しいフォルダー", +"Folder" => "フォルダー", +"From link" => "リンク", +"Deleted files" => "ゴミ箱", +"Cancel upload" => "アップロードをキャンセル", +"You don’t have permission to upload or create files here" => "ここにファイルをアップロードもしくは作成する権限がありません", +"Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", +"Download" => "ダウンロード", +"Delete" => "削除", +"Upload too large" => "アップロードには大きすぎます。", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバーで規定された最大サイズを超えています。", +"Files are being scanned, please wait." => "ファイルをスキャンしています、しばらくお待ちください。", +"Current scanning" => "スキャン中", +"Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 388631c56f..230e603083 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -4,6 +4,8 @@ $TRANSLATIONS = array( "Could not move %s" => "Nu se poate muta %s", "File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise.", +"Error when creating the file" => "Eroare la crearea fisierului", +"Error when creating the folder" => "Eroare la crearea folderului", "Unable to set upload directory." => "Imposibil de a seta directorul pentru incărcare.", "Invalid Token" => "Jeton Invalid", "No file was uploaded. Unknown error" => "Niciun fișier nu a fost încărcat. Eroare necunoscută", @@ -23,11 +25,15 @@ $TRANSLATIONS = array( "Upload cancelled." => "Încărcare anulată.", "Could not get result from server." => "Nu se poate obține rezultatul de la server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", +"URL cannot be empty" => "URL nu poate fi gol", "{new_name} already exists" => "{new_name} există deja", +"Could not create file" => "Nu s-a putut crea fisierul", +"Could not create folder" => "Nu s-a putut crea folderul", "Share" => "Partajează", "Delete permanently" => "Șterge permanent", "Rename" => "Redenumește", "Pending" => "În așteptare", +"Could not rename file" => "Nu s-a putut redenumi fisierul", "replaced {new_name} with {old_name}" => "{new_name} a fost înlocuit cu {old_name}", "undo" => "desfă", "_%n folder_::_%n folders_" => array("%n director","%n directoare","%n directoare"), @@ -59,6 +65,7 @@ $TRANSLATIONS = array( "From link" => "De la adresa", "Deleted files" => "Fișiere șterse", "Cancel upload" => "Anulează încărcarea", +"You don’t have permission to upload or create files here" => "Nu aveti permisiunea de a incarca sau crea fisiere aici", "Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!", "Download" => "Descarcă", "Delete" => "Șterge", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 805881904c..a68b6a7132 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou supérieure est installée et qu'OpenSSL et son extension PHP sont activés et configurés correctement. En attendant, l'application de chiffrement été désactivée.", "Following users are not set up for encryption:" => "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :", "Initial encryption started... This can take some time. Please wait." => "Chiffrement initial démarré... Cela peut prendre un certain temps. Veuillez patienter.", +"Initial encryption running... Please try again later." => "Chiffrement initial en cours... Veuillez re-essayer ultérieurement.", "Go directly to your " => "Allez directement à votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", diff --git a/apps/files_encryption/l10n/ja.php b/apps/files_encryption/l10n/ja.php new file mode 100644 index 0000000000..476566e00f --- /dev/null +++ b/apps/files_encryption/l10n/ja.php @@ -0,0 +1,44 @@ + "リカバリ用のキーを正常に有効にしました", +"Could not enable recovery key. Please check your recovery key password!" => "リカバリ用のキーを有効にできませんでした。リカバリ用のキーのパスワードを確認してください!", +"Recovery key successfully disabled" => "リカバリ用のキーを正常に無効化しました", +"Could not disable recovery key. Please check your recovery key password!" => "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認してください!", +"Password successfully changed." => "パスワードを変更できました。", +"Could not change the password. Maybe the old password was not correct." => "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。", +"Private key password successfully updated." => "秘密鍵のパスワードが正常に更新されました。", +"Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", +"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." => "セッション中に暗号化アプリを再度有効にされたため、暗号化アプリが初期化されていません。暗号化アプリを初期化するため、ログアウトしてログインしなおしてください。", +"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "プライベートキーが有効ではありません!パスワードが%sの外部で変更された(例: 共同ディレクトリ)と思われます。個人設定でプライベートキーのパスワードを更新して、暗号化ファイルへのアクセスを回復することができます。", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", +"Unknown error please check your system settings or contact your administrator" => "不明なエラーです。システム設定を確認するか、管理者に問い合わせてください。", +"Missing requirements." => "必要要件が満たされていません。", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。", +"Following users are not set up for encryption:" => "以下のユーザーは、暗号化設定がされていません:", +"Initial encryption started... This can take some time. Please wait." => "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。お待ちください。", +"Initial encryption running... Please try again later." => "初期暗号化実行中... 後でもう一度お試しください。", +"Go directly to your " => "あなたのディレクトリへ", +"personal settings" => "秘密鍵をアンロックできます", +"Encryption" => "暗号化", +"Enable recovery key (allow to recover users files in case of password loss):" => "リカバリキーを有効にする (パスワードを忘れた場合にユーザーのファイルを回復できます):", +"Recovery key password" => "リカバリキーのパスワード", +"Repeat Recovery key password" => "リカバリキーのパスワードをもう一度入力", +"Enabled" => "有効", +"Disabled" => "無効", +"Change recovery key password:" => "リカバリキーのパスワードを変更:", +"Old Recovery key password" => "古いリカバリキーのパスワード", +"New Recovery key password" => "新しいリカバリキーのパスワード", +"Repeat New Recovery key password" => "新しいリカバリキーのパスワードをもう一度入力", +"Change Password" => "パスワードを変更", +"Your private key password no longer match your log-in password:" => "もはや秘密鍵はログインパスワードと一致しません:", +"Set your old private key password to your current log-in password." => "古い秘密鍵のパスワードを現在のログインパスワードに設定する。", +" If you don't remember your old password you can ask your administrator to recover your files." => "古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。", +"Old log-in password" => "古いログインパスワード", +"Current log-in password" => "現在のログインパスワード", +"Update Private Key Password" => "秘密鍵のパスワードを更新", +"Enable password recovery:" => "パスワードリカバリを有効に:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。", +"File recovery settings updated" => "ファイルリカバリ設定を更新しました", +"Could not update file recovery" => "ファイルリカバリを更新できませんでした" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 2c8190a0f2..db2a02cec9 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", "Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", "Initial encryption started... This can take some time. Please wait." => "Rozpoczęto szyfrowanie... To może chwilę potrwać. Proszę czekać.", +"Initial encryption running... Please try again later." => "Trwa szyfrowanie początkowe...Spróbuj ponownie.", "Go directly to your " => "Przejdź bezpośrednio do", "personal settings" => "Ustawienia osobiste", "Encryption" => "Szyfrowanie", diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index e45a196c3e..4dcd93d7ac 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Παροχή πρόσβασης", "Please provide a valid Dropbox app key and secret." => "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox και μυστικό.", "Error configuring Google Drive storage" => "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive ", +"Saved" => "Αποθηκεύτηκαν", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<Προειδοποίηση
Η υποστήριξη του συστήματος Curl στο PHP δεν είναι ενεργοποιημένη ή εγκαταστημένη. Η αναπαραγωγή του ownCloud/WebDAV ή GoogleDrive δεν είναι δυνατή. Παρακαλώ ρωτήστε τον διαχειριστλη του συστήματος για την εγκατάσταση. ", diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index 356fa8b6ac..4b8e2b905b 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -22,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Utilisateurs", "Delete" => "Supprimer", "Enable User External Storage" => "Activer le stockage externe pour les utilisateurs", +"Allow users to mount the following external storage" => "Autorise les utilisateurs à monter les stockage externes suivants", "SSL root certificates" => "Certificats racine SSL", "Import Root Certificate" => "Importer un certificat racine" ); diff --git a/apps/files_external/l10n/ja.php b/apps/files_external/l10n/ja.php new file mode 100644 index 0000000000..312dc85188 --- /dev/null +++ b/apps/files_external/l10n/ja.php @@ -0,0 +1,29 @@ + "アクセスは許可されました", +"Error configuring Dropbox storage" => "Dropboxストレージの設定エラー", +"Grant access" => "アクセスを許可", +"Please provide a valid Dropbox app key and secret." => "有効なDropboxアプリのキーとパスワードを入力してください。", +"Error configuring Google Drive storage" => "Googleドライブストレージの設定エラー", +"Saved" => "保存されました", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "警告: \"smbclient\" がインストールされていません。CIFS/SMB共有のマウントはできません。システム管理者にインストールを依頼してください。", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "警告: PHPのFTPサポートが無効またはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールを依頼してください。", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "警告: PHPのCurlサポートが無効またはインストールされていません。ownCloud / WebDAVまたはGoogleDriveのマウントはできません。システム管理者にインストールを依頼してください。", +"External Storage" => "外部ストレージ", +"Folder name" => "フォルダー名", +"External storage" => "外部ストレージ", +"Configuration" => "設定", +"Options" => "オプション", +"Applicable" => "適用範囲", +"Add storage" => "ストレージを追加", +"None set" => "未設定", +"All Users" => "すべてのユーザー", +"Groups" => "グループ", +"Users" => "ユーザー", +"Delete" => "削除", +"Enable User External Storage" => "ユーザーの外部ストレージを有効にする", +"Allow users to mount the following external storage" => "ユーザに以下の外部ストレージのマウントを許可する", +"SSL root certificates" => "SSLルート証明書", +"Import Root Certificate" => "ルート証明書をインポート" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index cf729ace9b..10ff594c98 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "sharing is disabled" => "ο διαμοιρασμός απενεργοποιήθηκε", "For more info, please ask the person who sent this link." => "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο.", "shared by %s" => "διαμοιράστηκε από %s", +"Download %s" => "Λήψη %s", "Direct link" => "Άμεσος σύνδεσμος" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ja.php b/apps/files_sharing/l10n/ja.php new file mode 100644 index 0000000000..7e6461c608 --- /dev/null +++ b/apps/files_sharing/l10n/ja.php @@ -0,0 +1,17 @@ + "{owner} と共有中", +"This share is password-protected" => "この共有はパスワードで保護されています", +"The password is wrong. Try again." => "パスワードが間違っています。再試行してください。", +"Password" => "パスワード", +"Sorry, this link doesn’t seem to work anymore." => "申し訳ございません。このリンクはもう利用できません。", +"Reasons might be:" => "理由は以下の通りと考えられます:", +"the item was removed" => "アイテムが削除されました", +"the link expired" => "リンクの期限が切れています", +"sharing is disabled" => "共有が無効になっています", +"For more info, please ask the person who sent this link." => "不明な点は、こちらのリンクの提供者に確認をお願いします。", +"shared by %s" => "%s で共有中", +"Download %s" => "%s をダウンロード", +"Direct link" => "リンク" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ja.php b/apps/files_trashbin/l10n/ja.php new file mode 100644 index 0000000000..0aab7d0575 --- /dev/null +++ b/apps/files_trashbin/l10n/ja.php @@ -0,0 +1,15 @@ + "%s を完全に削除できませんでした", +"Couldn't restore %s" => "%s を復元できませんでした", +"Deleted files" => "ゴミ箱", +"Error" => "エラー", +"restored" => "復元済", +"Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", +"Name" => "名前", +"Restore" => "復元", +"Deleted" => "削除済み", +"Delete" => "削除", +"Deleted Files" => "ゴミ箱" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/l10n/ja.php b/apps/files_versions/l10n/ja.php new file mode 100644 index 0000000000..ec2601aafb --- /dev/null +++ b/apps/files_versions/l10n/ja.php @@ -0,0 +1,10 @@ + "元に戻せませんでした: %s", +"Versions" => "バージョン", +"Failed to revert {file} to revision {timestamp}." => "{file} を {timestamp} のリヴィジョンに戻すことができません。", +"More versions..." => "もっと他のバージョン...", +"No other versions available" => "利用可能な他のバージョンはありません", +"Restore" => "復元" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index fc6a0111a1..dbcaadfc2a 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Sauvegarder", "Test Configuration" => "Tester la configuration", "Help" => "Aide", +"Groups meeting these criteria are available in %s:" => "Les groupes respectant ces critères sont disponibles dans %s :", "only those object classes:" => "seulement ces classes d'objet :", "only from those groups:" => "seulement de ces groupes :", "Edit raw filter instead" => "Éditer le filtre raw à la place", "Raw LDAP filter" => "Filtre Raw LDAP", "The filter specifies which LDAP groups shall have access to the %s instance." => "Le filtre spécifie quels groupes LDAP doivent avoir accès à l'instance %s.", "groups found" => "groupes trouvés", +"Users login with this attribute:" => "Utilisateurs se connectant avec cet attribut :", "LDAP Username:" => "Nom d'utilisateur LDAP :", "LDAP Email Address:" => "Adresse email LDAP :", "Other Attributes:" => "Autres attributs :", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Pour un accès anonyme, laisser le DN utilisateur et le mot de passe vides.", "One Base DN per line" => "Un DN racine par ligne", "You can specify Base DN for users and groups in the Advanced tab" => "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via l'onglet Avancé", +"Limit %s access to users meeting these criteria:" => "Limiter l'accès à %s aux utilisateurs respectant ces critères :", "The filter specifies which LDAP users shall have access to the %s instance." => "Le filtre spécifie quels utilisateurs LDAP doivent avoir accès à l'instance %s.", "users found" => "utilisateurs trouvés", "Back" => "Retour", @@ -85,6 +88,8 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Un DN racine groupe par ligne", "Group Search Attributes" => "Recherche des attributs du groupe", "Group-Member association" => "Association groupe-membre", +"Nested Groups" => "Groupes imbriqués", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Si activé, les groupes contenant d'autres groupes sont supportés (fonctionne uniquement si l'attribut membre du groupe contient des DNs).", "Special Attributes" => "Attributs spéciaux", "Quota Field" => "Champ du quota", "Quota Default" => "Quota par défaut", diff --git a/apps/user_ldap/l10n/ja.php b/apps/user_ldap/l10n/ja.php new file mode 100644 index 0000000000..d13deafe6c --- /dev/null +++ b/apps/user_ldap/l10n/ja.php @@ -0,0 +1,112 @@ + "マッピングのクリアに失敗しました。", +"Failed to delete the server configuration" => "サーバー設定の削除に失敗しました", +"The configuration is valid and the connection could be established!" => "設定は有効であり、接続を確立しました!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "設定は有効ですが、接続に失敗しました。サーバー設定と資格情報を確認してください。", +"The configuration is invalid. Please have a look at the logs for further details." => "設定が無効です。詳細はログを確認してください。", +"No action specified" => "アクションが指定されていません", +"No configuration specified" => "構成が指定されていません", +"No data specified" => "データが指定されていません", +" Could not set configuration %s" => "構成 %s を設定できませんでした", +"Deletion failed" => "削除に失敗しました", +"Take over settings from recent server configuration?" => "最近のサーバー設定から設定を引き継ぎますか?", +"Keep settings?" => "設定を保持しますか?", +"Cannot add server configuration" => "サーバー設定を追加できません", +"mappings cleared" => "マッピングをクリアしました", +"Success" => "成功", +"Error" => "エラー", +"Configuration OK" => "設定OK", +"Configuration incorrect" => "設定に誤りがあります", +"Configuration incomplete" => "設定が不完全です", +"Select groups" => "グループを選択", +"Select object classes" => "オブジェクトクラスを選択", +"Select attributes" => "属性を選択", +"Connection test succeeded" => "接続テストに成功しました", +"Connection test failed" => "接続テストに失敗しました", +"Do you really want to delete the current Server Configuration?" => "現在のサーバー設定を本当に削除してもよろしいですか?", +"Confirm Deletion" => "削除の確認", +"_%s group found_::_%s groups found_" => array("%s グループが見つかりました"), +"_%s user found_::_%s users found_" => array("%s ユーザーが見つかりました"), +"Invalid Host" => "無効なホスト", +"Could not find the desired feature" => "望ましい機能は見つかりませんでした", +"Save" => "保存", +"Test Configuration" => "設定をテスト", +"Help" => "ヘルプ", +"Groups meeting these criteria are available in %s:" => "これらの基準を満たすグループが %s で利用可能:", +"only those object classes:" => "それらのオブジェクトクラスのみ:", +"only from those groups:" => "それらのグループからのみ:", +"Edit raw filter instead" => "フィルタを編集", +"Raw LDAP filter" => "LDAP フィルタ", +"The filter specifies which LDAP groups shall have access to the %s instance." => "フィルタは、どの LDAP グループが %s にアクセスするかを指定します。", +"groups found" => "グループが見つかりました", +"Users login with this attribute:" => "この属性でユーザーログイン:", +"LDAP Username:" => "LDAP ユーザー名:", +"LDAP Email Address:" => "LDAP メールアドレス:", +"Other Attributes:" => "他の属性:", +"Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" => "ログイン実行時に適用するフィルタを定義します。%%uid にはログイン操作におけるユーザー名が入ります。例: \"uid=%%uid\"", +"Add Server Configuration" => "サーバー設定を追加", +"Host" => "ホスト", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。", +"Port" => "ポート", +"User DN" => "ユーザーDN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。", +"Password" => "パスワード", +"For anonymous access, leave DN and Password empty." => "匿名アクセスの場合は、DNとパスワードを空にしてください。", +"One Base DN per line" => "1行に1つのベースDN", +"You can specify Base DN for users and groups in the Advanced tab" => "拡張タブでユーザーとグループのベースDNを指定することができます。", +"Limit %s access to users meeting these criteria:" => "この基準を満たすユーザに対し %s へのアクセスを制限:", +"The filter specifies which LDAP users shall have access to the %s instance." => "フィルタは、どのLDAPユーザーが %s にアクセスするかを指定します。", +"users found" => "ユーザーが見つかりました", +"Back" => "戻る", +"Continue" => "続ける", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "警告: PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。", +"Connection Settings" => "接続設定", +"Configuration Active" => "設定はアクティブです", +"When unchecked, this configuration will be skipped." => "チェックを外すと、この設定はスキップされます。", +"Backup (Replica) Host" => "バックアップ(レプリカ)ホスト", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバーのレプリカである必要があります。", +"Backup (Replica) Port" => "バックアップ(レプリカ)ポート", +"Disable Main Server" => "メインサーバーを無効にする", +"Only connect to the replica server." => "レプリカサーバーにのみ接続します。", +"Case insensitve LDAP server (Windows)" => "大文字/小文字を区別しないLDAPサーバー(Windows)", +"Turn off SSL certificate validation." => "SSL証明書の確認を無効にする。", +"Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "推奨されません、テストにおいてのみ使用してください!このオプションでのみ接続が動作する場合は、LDAP サーバーのSSL証明書を %s サーバーにインポートしてください。", +"Cache Time-To-Live" => "キャッシュのTTL", +"in seconds. A change empties the cache." => "秒。変更後にキャッシュがクリアされます。", +"Directory Settings" => "ディレクトリ設定", +"User Display Name Field" => "ユーザー表示名のフィールド", +"The LDAP attribute to use to generate the user's display name." => "ユーザーの表示名の生成に利用するLDAP属性", +"Base User Tree" => "ベースユーザーツリー", +"One User Base DN per line" => "1行に1つのユーザーベースDN", +"User Search Attributes" => "ユーザー検索属性", +"Optional; one attribute per line" => "オプション:1行に1属性", +"Group Display Name Field" => "グループ表示名のフィールド", +"The LDAP attribute to use to generate the groups's display name." => "ユーザのグループ表示名の生成に利用するLDAP属性", +"Base Group Tree" => "ベースグループツリー", +"One Group Base DN per line" => "1行に1つのグループベースDN", +"Group Search Attributes" => "グループ検索属性", +"Group-Member association" => "グループとメンバーの関連付け", +"Nested Groups" => "ネスト化ブロック", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "オンに切り替えたら、グループを含むグループがサポートされます。(グループメンバーの属性がDNを含む場合のみ有効です。)", +"Special Attributes" => "特殊属性", +"Quota Field" => "クォータフィールド", +"Quota Default" => "クォータのデフォルト", +"in bytes" => "バイト", +"Email Field" => "メールフィールド", +"User Home Folder Naming Rule" => "ユーザーのホームフォルダー命名規則", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ユーザー名を空のままにしてください(デフォルト)。もしくは、LDAPもしくはADの属性を指定してください。", +"Internal Username" => "内部ユーザー名", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "デフォルトでは、内部ユーザー名はUUID属性から作成されます。これにより、ユーザー名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザー名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザー名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダー名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザー表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザーにおいてのみ有効となります。", +"Internal Username Attribute:" => "内部ユーザー名属性:", +"Override UUID detection" => "UUID検出を再定義する", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザーとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザー名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザーとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザーとLDAPグループに対してのみ有効となります。", +"UUID Attribute for Users:" => "ユーザーの UUID 属性:", +"UUID Attribute for Groups:" => "グループの UUID 属性:", +"Username-LDAP User Mapping" => "ユーザー名とLDAPユーザのマッピング", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ユーザー名は(メタ)データの保存と割り当てに使用されます。ユーザーを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザー名からLDAPユーザーへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", +"Clear Username-LDAP User Mapping" => "ユーザー名とLDAPユーザーのマッピングをクリアする", +"Clear Groupname-LDAP Group Mapping" => "グループ名とLDAPグループのマッピングをクリアする" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 08b5350a1b..5c6d3d7022 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Zapisz", "Test Configuration" => "Konfiguracja testowa", "Help" => "Pomoc", +"Groups meeting these criteria are available in %s:" => "Przyłączenie do grupy z tymi ustawieniami dostępne jest w %s:", "only those object classes:" => "tylko te klasy obiektów:", "only from those groups:" => "tylko z tych grup:", "Edit raw filter instead" => "Edytuj zamiast tego czysty filtr", "Raw LDAP filter" => "Czysty filtr LDAP", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filtr określa, które grupy LDAP powinny mieć dostęp do instancji %s.", "groups found" => "grup znaleziono", +"Users login with this attribute:" => "Użytkownicy zalogowani z tymi ustawieniami:", "LDAP Username:" => "Nazwa użytkownika LDAP:", "LDAP Email Address:" => "LDAP Adres Email:", "Other Attributes:" => "Inne atrybuty:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Dla dostępu anonimowego pozostawić DN i hasło puste.", "One Base DN per line" => "Jedna baza DN na linię", "You can specify Base DN for users and groups in the Advanced tab" => "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowane", +"Limit %s access to users meeting these criteria:" => "Limit %s dostępu do podłączania użytkowników z tymi ustawieniami:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filtr określa, którzy użytkownicy LDAP powinni mieć dostęp do instancji %s.", "users found" => "użytkownicy znalezieni", "Back" => "Wróć", @@ -85,6 +88,8 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Jedna grupa bazy DN na linię", "Group Search Attributes" => "Grupa atrybutów wyszukaj", "Group-Member association" => "Członek grupy stowarzyszenia", +"Nested Groups" => "Grupy zagnieżdżone", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Kiedy włączone, grupy, które zawierają grupy, są wspierane. (Działa tylko, jeśli członek grupy ma ustawienie DNs)", "Special Attributes" => "Specjalne atrybuty", "Quota Field" => "Pole przydziału", "Quota Default" => "Przydział domyślny", diff --git a/apps/user_webdavauth/l10n/ja.php b/apps/user_webdavauth/l10n/ja.php new file mode 100644 index 0000000000..bab7be008e --- /dev/null +++ b/apps/user_webdavauth/l10n/ja.php @@ -0,0 +1,7 @@ + "WebDAV 認証", +"Address: " => "アドレス:", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ユーザーの権限情報をこのアドレスに送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/el.php b/core/l10n/el.php index f148f36ec6..61c21f1a84 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -58,6 +58,10 @@ $TRANSLATIONS = array( "Continue" => "Συνέχεια", "(all selected)" => "(όλα τα επιλεγμένα)", "({count} selected)" => "({count} επιλέχθησαν)", +"Very weak password" => "Πολύ αδύναμο συνθηματικό", +"Weak password" => "Αδύναμο συνθηματικό", +"Good password" => "Καλό συνθηματικό", +"Strong password" => "Δυνατό συνθηματικό", "Shared" => "Κοινόχρηστα", "Share" => "Διαμοιρασμός", "Error" => "Σφάλμα", @@ -105,6 +109,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the ownCloud community." => "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην κοινότητα ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.", "%s password reset" => "%s επαναφορά κωδικού πρόσβασης", +"A problem has occurred whilst sending the email, please contact your administrator." => "Παρουσιάστηκε σφάλμα κατά την αποστολή email, παρακαλώ επικοινωνήστε με τον διαχειριστή.", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Ο σύνδεσμος για να επανακτήσετε τον κωδικό σας έχει σταλεί στο email
αν δεν το λάβετε μέσα σε ορισμένο διάστημα, ελέγξετε τους φακελλους σας spam/junk
αν δεν είναι εκεί ρωτήστε τον τοπικό σας διαχειριστή ", "Request failed!
Did you make sure your email/username was right?" => "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? ", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 73864ee7ff..5206d746b4 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -59,6 +59,11 @@ $TRANSLATIONS = array( "(all selected)" => "(tous sélectionnés)", "({count} selected)" => "({count} sélectionnés)", "Error loading file exists template" => "Erreur de chargement du modèle de fichier existant", +"Very weak password" => "Mot de passe de très faible sécurité", +"Weak password" => "Mot de passe de faible sécurité", +"So-so password" => "Mot de passe de sécurité tout juste acceptable", +"Good password" => "Mot de passe de sécurité suffisante", +"Strong password" => "Mot de passe de forte sécurité", "Shared" => "Partagé", "Share" => "Partager", "Error" => "Erreur", @@ -106,6 +111,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the ownCloud community." => "La mise à jour a échoué. Veuillez signaler ce problème à la communauté ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.", "%s password reset" => "Réinitialisation de votre mot de passe %s", +"A problem has occurred whilst sending the email, please contact your administrator." => "Une erreur est survenue lors de l'envoi de l'e-mail. Veuillez contacter votre administrateur.", "Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Le lien permettant de réinitialiser votre mot de passe vous a été transmis.
Si vous ne le recevez pas dans un délai raisonnable, vérifier votre boîte de pourriels.
Au besoin, contactez votre administrateur local.", "Request failed!
Did you make sure your email/username was right?" => "Requête en échec!
Avez-vous vérifié vos courriel/nom d'utilisateur?", @@ -143,6 +149,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Votre répertoire data est certainement accessible depuis l'internet car le fichier .htaccess ne semble pas fonctionner", "For information how to properly configure your server, please see the documentation." => "Pour les informations de configuration de votre serveur, veuillez lire la documentation.", "Create an admin account" => "Créer un compte administrateur", +"Storage & database" => "Support de stockage & base de données", "Data folder" => "Répertoire des données", "Configure the database" => "Configurer la base de données", "will be used" => "sera utilisé", @@ -165,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "se souvenir de moi", "Log in" => "Connexion", "Alternative Logins" => "Logins alternatifs", +"Hey there,

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

" => "Bonjour,

Juste pour vous informer que %s a partagé %s avec vous.
Consultez-le !

", "This ownCloud instance is currently in single user mode." => "Cette instance de ownCloud est actuellement en mode utilisateur unique.", "This means only administrators can use the instance." => "Cela signifie que uniquement les administrateurs peuvent utiliser l'instance.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Contactez votre administrateur système si ce message persiste ou apparaît de façon innatendue.", diff --git a/core/l10n/ja.php b/core/l10n/ja.php new file mode 100644 index 0000000000..9fce579e69 --- /dev/null +++ b/core/l10n/ja.php @@ -0,0 +1,184 @@ + "次のユーザーにメールを送信できませんでした: %s", +"Turned on maintenance mode" => "メンテナンスモードがオンになりました", +"Turned off maintenance mode" => "メンテナンスモードがオフになりました", +"Updated database" => "データベース更新完了", +"Updating filecache, this may take really long..." => "ファイルキャッシュを更新しています、しばらく掛かる恐れがあります...", +"Updated filecache" => "ファイルキャッシュ更新完了", +"... %d%% done ..." => "... %d%% 完了 ...", +"No image or file provided" => "画像もしくはファイルが提供されていません", +"Unknown filetype" => "不明なファイルタイプ", +"Invalid image" => "無効な画像", +"No temporary profile picture available, try again" => "一時的なプロファイル用画像が利用できません。もう一度試してください", +"No crop data provided" => "クロップデータは提供されません", +"Sunday" => "日", +"Monday" => "月", +"Tuesday" => "火", +"Wednesday" => "水", +"Thursday" => "木", +"Friday" => "金", +"Saturday" => "土", +"January" => "1月", +"February" => "2月", +"March" => "3月", +"April" => "4月", +"May" => "5月", +"June" => "6月", +"July" => "7月", +"August" => "8月", +"September" => "9月", +"October" => "10月", +"November" => "11月", +"December" => "12月", +"Settings" => "設定", +"Saving..." => "保存中...", +"seconds ago" => "数秒前", +"_%n minute ago_::_%n minutes ago_" => array("%n 分前"), +"_%n hour ago_::_%n hours ago_" => array("%n 時間前"), +"today" => "今日", +"yesterday" => "昨日", +"_%n day ago_::_%n days ago_" => array("%n日前"), +"last month" => "1ヶ月前", +"_%n month ago_::_%n months ago_" => array("%nヶ月前"), +"months ago" => "数ヶ月前", +"last year" => "1年前", +"years ago" => "数年前", +"Choose" => "選択", +"Error loading file picker template: {error}" => "ファイル選択テンプレートの読み込みエラー: {error}", +"Yes" => "はい", +"No" => "いいえ", +"Ok" => "OK", +"Error loading message template: {error}" => "メッセージテンプレートの読み込みエラー: {error}", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} ファイルが競合"), +"One file conflict" => "1ファイルが競合", +"Which files do you want to keep?" => "どちらのファイルを保持したいですか?", +"If you select both versions, the copied file will have a number added to its name." => "両方のバージョンを選択した場合は、ファイル名の後ろに数字を追加したファイルのコピーを作成します。", +"Cancel" => "キャンセル", +"Continue" => "続ける", +"(all selected)" => "(全て選択)", +"({count} selected)" => "({count} 選択)", +"Error loading file exists template" => "既存ファイルのテンプレートの読み込みエラー", +"Very weak password" => "非常に弱いパスワード", +"Weak password" => "弱いパスワード", +"So-so password" => "まずまずのパスワード", +"Good password" => "良好なパスワード", +"Strong password" => "強いパスワード", +"Shared" => "共有中", +"Share" => "共有", +"Error" => "エラー", +"Error while sharing" => "共有でエラー発生", +"Error while unsharing" => "共有解除でエラー発生", +"Error while changing permissions" => "権限変更でエラー発生", +"Shared with you and the group {group} by {owner}" => "あなたと {owner} のグループ {group} で共有中", +"Shared with you by {owner}" => "{owner} と共有中", +"Share with user or group …" => "ユーザーもしくはグループと共有 ...", +"Share link" => "URLで共有", +"Password protect" => "パスワード保護", +"Password" => "パスワード", +"Allow Public Upload" => "アップロードを許可", +"Email link to person" => "メールリンク", +"Send" => "送信", +"Set expiration date" => "有効期限を設定", +"Expiration date" => "有効期限", +"Share via email:" => "メール経由で共有:", +"No people found" => "ユーザーが見つかりません", +"group" => "グループ", +"Resharing is not allowed" => "再共有は許可されていません", +"Shared in {item} with {user}" => "{item} 内で {user} と共有中", +"Unshare" => "共有解除", +"notify by email" => "メールで通知", +"can edit" => "編集を許可", +"access control" => "アクセス権限", +"create" => "作成", +"update" => "アップデート", +"delete" => "削除", +"share" => "共有", +"Password protected" => "パスワード保護", +"Error unsetting expiration date" => "有効期限の未設定エラー", +"Error setting expiration date" => "有効期限の設定でエラー発生", +"Sending ..." => "送信中...", +"Email sent" => "メールを送信しました", +"Warning" => "警告", +"The object type is not specified." => "オブジェクトタイプが指定されていません。", +"Enter new" => "新規に入力", +"Delete" => "削除", +"Add" => "追加", +"Edit tags" => "タグを編集", +"Error loading dialog template: {error}" => "メッセージテンプレートの読み込みエラー: {error}", +"No tags selected for deletion." => "削除するタグが選択されていません。", +"Please reload the page." => "ページをリロードしてください。", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "アップデートに失敗しました。この問題を ownCloud community にレポートしてください。", +"The update was successful. Redirecting you to ownCloud now." => "アップデートに成功しました。今すぐownCloudにリダイレクトします。", +"%s password reset" => "%s パスワードリセット", +"A problem has occurred whilst sending the email, please contact your administrator." => "メールの送信中に問題が発生しました。管理者に問い合わせください。", +"Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックしてください: {link}", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信できない場合は、スパム/迷惑メールフォルダーを確認してください。
もしそこにもない場合は、管理者に問い合わせてください。", +"Request failed!
Did you make sure your email/username was right?" => "リクエストに失敗しました!
あなたのメール/ユーザー名が正しいことを確認しましたか?", +"You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。", +"Username" => "ユーザー名", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "ファイルが暗号化されています。リカバリキーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?", +"Yes, I really want to reset my password now" => "はい、今すぐパスワードをリセットします。", +"Reset" => "リセット", +"Your password was reset" => "あなたのパスワードはリセットされました。", +"To login page" => "ログインページへ戻る", +"New password" => "新しいパスワードを入力", +"Reset password" => "パスワードをリセット", +"Personal" => "個人", +"Users" => "ユーザー", +"Apps" => "アプリ", +"Admin" => "管理", +"Help" => "ヘルプ", +"Error loading tags" => "タグの読み込みエラー", +"Tag already exists" => "タグはすでに存在します", +"Error deleting tag(s)" => "タグの削除エラー", +"Error tagging" => "タグの付与エラー", +"Error untagging" => "タグの解除エラー", +"Error favoriting" => "お気に入りに追加エラー", +"Error unfavoriting" => "お気に入りから削除エラー", +"Access forbidden" => "アクセスが禁止されています", +"Cloud not found" => "見つかりません", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n", +"The share will expire on %s." => "共有は %s で有効期限が切れます。", +"Cheers!" => "それでは!", +"Security Warning" => "セキュリティ警告", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。", +"Please update your PHP installation to use %s securely." => "%s を安全に利用するため、インストールされているPHPをアップデートしてください。", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にしてください。", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "セキュアな乱数生成器が無い場合、攻撃者がパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。", +"For information how to properly configure your server, please see the documentation." => "サーバーを適正に設定する情報は、こちらのドキュメントを参照してください。", +"Create an admin account" => "管理者アカウントを作成してください", +"Storage & database" => "ストレージとデータベース", +"Data folder" => "データフォルダー", +"Configure the database" => "データベースを設定してください", +"will be used" => "が使用されます", +"Database user" => "データベースのユーザー名", +"Database password" => "データベースのパスワード", +"Database name" => "データベース名", +"Database tablespace" => "データベースの表領域", +"Database host" => "データベースのホスト名", +"Finish setup" => "セットアップを完了します", +"Finishing …" => "作業を完了しています ...", +"This application requires JavaScript to be enabled for correct operation. Please enable JavaScript and re-load this interface." => "このアプリケーションを使用するにはJavaScriptが必要です。\nJavaScriptを有効にし、インターフェースを更新してください。 ", +"%s is available. Get more information on how to update." => "%s が利用可能です。アップデート方法について詳細情報を確認してください。", +"Log out" => "ログアウト", +"Automatic logon rejected!" => "自動ログインは拒否されました!", +"If you did not change your password recently, your account may be compromised!" => "最近パスワードを変更していない場合、あなたのアカウントが危険にさらされている可能性があります!", +"Please change your password to secure your account again." => "アカウント保護のため、パスワードを再度変更してください。", +"Server side authentication failed!" => "サーバーサイドの認証に失敗しました!", +"Please contact your administrator." => "管理者に問い合わせてください。", +"Lost your password?" => "パスワードを忘れましたか?", +"remember" => "パスワードを保存", +"Log in" => "ログイン", +"Alternative Logins" => "代替ログイン", +"Hey there,

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

" => "こんにちは、

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

", +"This ownCloud instance is currently in single user mode." => "このownCloudインスタンスは、現在シングルユーザーモードです。", +"This means only administrators can use the instance." => "これは、管理者のみがインスタンスを利用できることを意味しています。", +"Contact your system administrator if this message persists or appeared unexpectedly." => "このメッセージが引き続きもしくは予期せず現れる場合は、システム管理者に連絡してください。", +"Thank you for your patience." => "しばらくお待ちください。", +"Updating ownCloud to version %s, this may take a while." => "ownCloud をバージョン %s に更新しています、しばらくお待ちください。", +"This ownCloud instance is currently being updated, which may take a while." => "この ownCloud インスタンスは現在アップデート中のため、しばらく時間がかかります。", +"Please reload this page after a short time to continue using ownCloud." => "ownCloud を続けて利用するには、しばらくした後でページをリロードしてください。" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/pl.php b/core/l10n/pl.php index eed3308019..bb73665a6b 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -59,6 +59,11 @@ $TRANSLATIONS = array( "(all selected)" => "(wszystkie zaznaczone)", "({count} selected)" => "({count} zaznaczonych)", "Error loading file exists template" => "Błąd podczas ładowania szablonu istniejącego pliku", +"Very weak password" => "Bardzo słabe hasło", +"Weak password" => "Słabe hasło", +"So-so password" => "Mało skomplikowane hasło", +"Good password" => "Dobre hasło", +"Strong password" => "Mocne hasło", "Shared" => "Udostępniono", "Share" => "Udostępnij", "Error" => "Błąd", @@ -106,6 +111,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem spoleczności ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud.", "%s password reset" => "%s reset hasła", +"A problem has occurred whilst sending the email, please contact your administrator." => "Pojawił się problem podczas wysyłania wiadomości email, skontaktuj się z administratorem", "Use the following link to reset your password: {link}" => "Użyj tego odnośnika by zresetować hasło: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Link do zresetowania hasła została wysłana na adres email.
Jeśli nie otrzymasz go w najbliższym czasie, sprawdź folder ze spamem.
Jeśli go tam nie ma zwrócić się do administratora tego ownCloud-a.", "Request failed!
Did you make sure your email/username was right?" => "Żądanie niepowiodło się!
Czy Twój email/nazwa użytkownika są poprawne?", @@ -143,6 +149,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa.", "For information how to properly configure your server, please see the documentation." => "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoznaj się z dokumentacją.", "Create an admin account" => "Utwórz konta administratora", +"Storage & database" => "Zasoby dysku & baza danych", "Data folder" => "Katalog danych", "Configure the database" => "Skonfiguruj bazę danych", "will be used" => "zostanie użyte", @@ -165,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "pamiętaj", "Log in" => "Zaloguj", "Alternative Logins" => "Alternatywne loginy", +"Hey there,

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

" => "Witam,

informuję, że %s udostępnianych zasobów %s jest z Tobą.
Zobacz!

", "This ownCloud instance is currently in single user mode." => "Ta instalacja ownCloud działa obecnie w trybie pojedynczego użytkownika.", "This means only administrators can use the instance." => "To oznacza, że tylko administratorzy mogą w tej chwili używać aplikacji.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Skontaktuj się z administratorem, jeśli ten komunikat pojawił się nieoczekiwanie lub wyświetla się ciągle.", diff --git a/l10n/el/core.po b/l10n/el/core.po index e7120d4ed9..306f08e1df 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2013-2014 # Efstathios Iosifidis , 2013 # KAT.RAT12 , 2013 # Teogramm , 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 14:13+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -278,11 +278,11 @@ msgstr "" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Πολύ αδύναμο συνθηματικό" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Αδύναμο συνθηματικό" #: js/setup.js:86 msgid "So-so password" @@ -290,11 +290,11 @@ msgstr "" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Καλό συνθηματικό" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Δυνατό συνθηματικό" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -493,7 +493,7 @@ msgstr "%s επαναφορά κωδικού πρόσβασης" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά την αποστολή email, παρακαλώ επικοινωνήστε με τον διαχειριστή." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" diff --git a/l10n/el/files.po b/l10n/el/files.po index af4c962cb6..761c6f0eb4 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2013-2014 # Efstathios Iosifidis , 2013 # gtsamis , 2013 # frerisp , 2013 @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 14:21+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgstr "Το όνομα αρχείου δεν μπορεί να είναι κε #: ajax/newfile.php:62 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "Το \"%s\" είναι ένα μη έγκυρο όνομα αρχείου." #: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" @@ -254,7 +254,7 @@ msgstr[1] "Ανέβασμα %n αρχείων" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "Το \"{name}\" είναι μη έγκυρο όνομα αρχείου." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index f28c5b79d9..ca669ad43a 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 14:21+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" @@ -40,7 +40,7 @@ msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " #: js/settings.js:313 js/settings.js:320 msgid "Saved" -msgstr "" +msgstr "Αποθηκεύτηκαν" #: lib/config.php:512 msgid "" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 049a592cf4..4d08fedac3 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2014 # Efstathios Iosifidis , 2013 # vkehayas , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 15:47+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,7 +68,7 @@ msgstr "διαμοιράστηκε από %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "Λήψη %s" #: templates/public.php:48 msgid "Direct link" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 1808809c04..5a5c9e8933 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2013-2014 # Efstathios Iosifidis , 2013 # KAT.RAT12 , 2013 # Teogramm , 2013 @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 14:21+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,20 +32,20 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Αποθηκεύτηκαν" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "δοκιμή ρυθμίσεων email" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Εάν λάβατε αυτό το email, οι ρυθμίσεις δείχνουν να είναι σωστές." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Παρουσιάστηκε σφάλμα κατά την αποστολή e-mail. Παρακαλώ ελέγξτε τις ρυθμίσεις σας." #: admin/controller.php:99 msgid "Email sent" @@ -53,19 +53,19 @@ msgstr "Το Email απεστάλη " #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Πρέπει να ορίσετε το email του χρήστη πριν να είστε σε θέση να στείλετε δοκιμαστικά emails." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" -msgstr "" +msgstr "Κατάσταση αποστολής" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Μέθοδος πιστοποίησης" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -165,7 +165,7 @@ msgstr "Αδυναμία αλλαγής συνθηματικού" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Αποστέλεται..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -173,7 +173,7 @@ msgstr "Τεκμηρίωση Χρήστη" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Τεκμηρίωση Διαχειριστή" #: js/apps.js:67 msgid "Update to {appversion}" @@ -219,31 +219,31 @@ msgstr "Ενημέρωση" msgid "Updated" msgstr "Ενημερώθηκε" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Επιλογή εικόνας προφίλ" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Πολύ αδύναμο συνθηματικό" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Αδύναμο συνθηματικό" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Καλό συνθηματικό" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Δυνατό συνθηματικό" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο." @@ -330,28 +330,28 @@ msgstr "" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "Διαχειριστης NT LAN" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Προειδοποίηση Ασφαλείας" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -360,68 +360,68 @@ msgid "" "root." msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Ρύθμιση Προειδοποίησης" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Η ενοτητα 'fileinfo' λειπει" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. " -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Η έκδοση PHP είναι απαρχαιωμένη" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Η έκδοση PHP είναι απαρχαιωμένη. Συνιστούμε ανεπιφύλακτα να ενημερώσετε στην 5.3.8 ή νεώτερη καθώς παλαιότερες εκδόσεις είναι γνωστό πως περιέχουν σφάλματα. Είναι πιθανόν ότι αυτή η εγκατάσταση δεν λειτουργεί σωστά." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Η μετάφραση δεν δουλεύει" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Οι ρυθμίσεις τοποθεσίας συστήματος δεν μπορούν να οριστούν σε κάποιες που δεν υποστηρίζουν UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Αυτό σημαίνει ότι μπορεί να υπάρχουν προβλήματα με κάποιους χαρακτήρες στα ονόματα αρχείων." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Συνιστούμε σοβαρά να εγκαταστήσετε τα απαιτούμενα πακέτα στο σύστημά σας ώστε να υποστηρίζεται μια από τις ακόλουθες ρυθμίσεις τοποθεσίας: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Η σύνδεση στο διαδίκτυο δεν δουλεύει" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -430,162 +430,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Αυτός ο διακομιστής δεν έχει ενεργή σύνδεση στο διαδίκτυο. Αυτό σημαίνει ότι κάποιες υπηρεσίες όπως η σύνδεση με εξωτερικούς αποθηκευτικούς χώρους, ειδοποιήσεις περί ενημερώσεων ή η εγκατάσταση 3ων εφαρμογών δεν θα είναι διαθέσιμες. Η πρόσβαση απομακρυσμένων αρχείων και η αποστολή ειδοποιήσεων μέσω ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην είναι διαθέσιμες. Προτείνουμε να ενεργοποιήσετε την πρόσβαση στο διαδίκτυο για αυτόν το διακομιστή εάν θέλετε να χρησιμοποιήσετε όλες τις υπηρεσίες." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Επιτρέψτε κοινόχρηστο ανέβασμα" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" -msgstr "" +msgstr "Διακομιστής Email" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." -msgstr "" +msgstr "Χρησιμοποιείται για αποστολή ειδοποιήσεων." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" -msgstr "" - -#: templates/admin.php:330 -msgid "Authentication required" -msgstr "" +msgstr "Από τη διεύθυνση" #: templates/admin.php:334 +msgid "Authentication required" +msgstr "Απαιτείται πιστοποίηση" + +#: templates/admin.php:338 msgid "Server address" msgstr "Διεύθυνση διακομιστή" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Θύρα" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Πιστοποιητικά" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" -msgstr "" - -#: templates/admin.php:347 -msgid "SMTP Password" -msgstr "" +msgstr "Όνομα χρήστη SMTP" #: templates/admin.php:351 +msgid "SMTP Password" +msgstr "Συνθηματικό SMTP" + +#: templates/admin.php:355 msgid "Test email settings" -msgstr "" +msgstr "Δοκιμή ρυθμίσεων email" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" -msgstr "" +msgstr "Αποστολή email" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the -licensed by " @@ -696,7 +696,7 @@ msgstr "Η διεύθυνση ηλ. ταχυδρομείου σας" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "Συμπληρώστε μια διεύθυνση email για να ενεργοποιήσετε την επαναφορά συνθηματικού και να λαμβάνετε ειδοποιήσεις" #: templates/personal.php:96 msgid "Profile picture" diff --git a/l10n/es/core.po b/l10n/es/core.po index 137ec11c39..a22496a9b4 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 15:50+0000\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 16:21+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index a61774b396..b26ffd4ad5 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -4,7 +4,7 @@ # # Translators: # Adalberto Rodrigues , 2013 -# Christophe Lherieau , 2013 +# Christophe Lherieau , 2013-2014 # etiess , 2013 # msoko , 2013 # ogre_sympathique , 2013 @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 16:21+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" @@ -277,23 +277,23 @@ msgstr "Erreur de chargement du modèle de fichier existant" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Mot de passe de très faible sécurité" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Mot de passe de faible sécurité" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Mot de passe de sécurité tout juste acceptable" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Mot de passe de sécurité suffisante" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Mot de passe de forte sécurité" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -492,7 +492,7 @@ msgstr "Réinitialisation de votre mot de passe %s" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Une erreur est survenue lors de l'envoi de l'e-mail. Veuillez contacter votre administrateur." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -670,7 +670,7 @@ msgstr "Créer un compte administrateur" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Support de stockage & base de données" #: templates/installation.php:77 msgid "Data folder" @@ -771,7 +771,7 @@ msgstr "Logins alternatifs" msgid "" "Hey there,

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

" -msgstr "" +msgstr "Bonjour,

Juste pour vous informer que %s a partagé %s avec vous.
Consultez-le !

" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 04509cc7c5..4003c9d990 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -4,7 +4,7 @@ # # Translators: # Adalberto Rodrigues , 2013 -# Christophe Lherieau , 2013 +# Christophe Lherieau , 2013-2014 # etiess , 2013 # MathieuP, 2013 # ogre_sympathique , 2013 @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 15:59+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" @@ -39,7 +39,7 @@ msgstr "Le nom de fichier ne peut être vide." #: ajax/newfile.php:62 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" n'est pas un nom de fichier valide." #: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" @@ -50,7 +50,7 @@ msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' e #: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Le dossier cible a été déplacé ou supprimé." #: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format @@ -154,12 +154,12 @@ msgstr "Impossible d'envoyer {filename} car il s'agit d'un répertoire ou d'un f #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "La taille totale du fichier {size1} excède la taille maximale d'envoi {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Espace insuffisant : vous tentez d'envoyer {size1} mais seulement {size2} sont disponibles" #: js/file-upload.js:338 msgid "Upload cancelled." @@ -254,7 +254,7 @@ msgstr[1] "Téléversement de %n fichiers" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" n'est pas un nom de fichier valide." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 82746146bb..a780215e4d 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -4,7 +4,7 @@ # # Translators: # Adalberto Rodrigues , 2013 -# Christophe Lherieau , 2013 +# Christophe Lherieau , 2013-2014 # etiess , 2013 # froozeify , 2013 # lyly95, 2013 @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 15:59+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" @@ -107,7 +107,7 @@ msgstr "Chiffrement initial démarré... Cela peut prendre un certain temps. Veu #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Chiffrement initial en cours... Veuillez re-essayer ultérieurement." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 858077718e..975c937c62 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Christophe Lherieau , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-13 02:33+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 15:59+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" @@ -116,7 +117,7 @@ msgstr "Activer le stockage externe pour les utilisateurs" #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Autorise les utilisateurs à monter les stockage externes suivants" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 3ab6eb931d..32cac2cbdb 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2013 +# Christophe Lherieau , 2013-2014 # Cyril Glapa , 2013 # etiess , 2013 # ogre_sympathique , 2013 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 15:59+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" @@ -161,7 +161,7 @@ msgstr "La session a expiré. Veuillez recharger la page." #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "Utilisateur inconnu" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -196,23 +196,23 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "Nom d'utilisateur et/ou mot de passe MySQL/MariaDB invalide" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 #: private/setup/oci.php:151 private/setup/oci.php:162 #: private/setup/oci.php:169 private/setup/oci.php:178 #: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Erreur de la base de données : \"%s\"" @@ -221,9 +221,9 @@ msgstr "Erreur de la base de données : \"%s\"" #: private/setup/oci.php:122 private/setup/oci.php:145 #: private/setup/oci.php:152 private/setup/oci.php:163 #: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "La requête en cause est : \"%s\"" @@ -231,20 +231,20 @@ msgstr "La requête en cause est : \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "L'utilisateur MySQL/MariaDB '%s'@'localhost' existe déjà." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Retirer cet utilisateur de la base MySQL/MariaDB" #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "L'utilisateur MySQL/MariaDB '%s'@'%%' existe déjà" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Retirer cet utilisateur de la base MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -259,7 +259,7 @@ msgstr "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base PostgreSQL invalide" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 22453981dd..74d558daff 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -5,7 +5,7 @@ # Translators: # 2rock , 2014 # Adalberto Rodrigues , 2013 -# Christophe Lherieau , 2013 +# Christophe Lherieau , 2013-2014 # etiess , 2013 # lyly95, 2013 # Mystyle , 2013 @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-13 02:33+0000\n" -"Last-Translator: 2rock \n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 16:21+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" @@ -39,7 +39,7 @@ msgstr "Sauvegarder" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "tester les paramètres d'e-mail" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." @@ -48,7 +48,7 @@ msgstr "Si vous recevez cet email, c'est que les paramètres sont corrects" #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Une erreur est survenue lors de l'envoi de l'e-mail. Veuillez vérifier vos paramètres." #: admin/controller.php:99 msgid "Email sent" @@ -56,11 +56,11 @@ msgstr "Email envoyé" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoyer des e-mails de test." #: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" -msgstr "" +msgstr "Mode d'envoi" #: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" @@ -68,7 +68,7 @@ msgstr "Chiffrement" #: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Méthode d'authentification" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -168,7 +168,7 @@ msgstr "Impossible de modifier le mot de passe" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Envoi en cours..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -176,7 +176,7 @@ msgstr "Documentation utilisateur" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Documentation administrateur" #: js/apps.js:67 msgid "Update to {appversion}" @@ -222,31 +222,31 @@ msgstr "Mettre à jour" msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Selectionner une photo de profil " -#: js/personal.js:274 -msgid "Very weak password" -msgstr "" - -#: js/personal.js:275 -msgid "Weak password" -msgstr "" - -#: js/personal.js:276 -msgid "So-so password" -msgstr "" - #: js/personal.js:277 -msgid "Good password" -msgstr "" +msgid "Very weak password" +msgstr "Mot de passe de très faible sécurité" #: js/personal.js:278 -msgid "Strong password" -msgstr "" +msgid "Weak password" +msgstr "Mot de passe de faible sécurité" -#: js/personal.js:301 +#: js/personal.js:279 +msgid "So-so password" +msgstr "Mot de passe de sécurité tout juste acceptable" + +#: js/personal.js:280 +msgid "Good password" +msgstr "Mot de passe de sécurité suffisante" + +#: js/personal.js:281 +msgid "Strong password" +msgstr "Mot de passe de forte sécurité" + +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Déchiffrement en cours... Cela peut prendre un certain temps." @@ -329,19 +329,19 @@ msgstr "Connexion" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "En clair" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "Gestionnaire du réseau NT" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -526,19 +526,19 @@ msgstr "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou d #: templates/admin.php:279 msgid "Email Server" -msgstr "" +msgstr "Serveur mail" #: templates/admin.php:281 msgid "This is used for sending out notifications." -msgstr "" +msgstr "Ceci est utilisé pour l'envoi des notifications." #: templates/admin.php:312 msgid "From address" -msgstr "" +msgstr "Adresse source" #: templates/admin.php:334 msgid "Authentication required" -msgstr "" +msgstr "Authentification requise" #: templates/admin.php:338 msgid "Server address" @@ -554,19 +554,19 @@ msgstr "Informations d'identification" #: templates/admin.php:348 msgid "SMTP Username" -msgstr "" +msgstr "Nom d'utilisateur SMTP" #: templates/admin.php:351 msgid "SMTP Password" -msgstr "" +msgstr "Mot de passe SMTP" #: templates/admin.php:355 msgid "Test email settings" -msgstr "" +msgstr "Paramètres de test d'e-mail" #: templates/admin.php:356 msgid "Send email" -msgstr "" +msgstr "Envoyer un e-mail" #: templates/admin.php:361 msgid "Log" @@ -612,7 +612,7 @@ msgstr "Sélectionner une Application" #: templates/apps.php:42 msgid "Documentation:" -msgstr "" +msgstr "Documentation :" #: templates/apps.php:48 msgid "See application page at apps.owncloud.com" @@ -620,7 +620,7 @@ msgstr "Voir la page des applications à l'url apps.owncloud.com" #: templates/apps.php:50 msgid "See application website" -msgstr "" +msgstr "Voir le site web de l'application" #: templates/apps.php:52 msgid "-licensed by " @@ -699,7 +699,7 @@ msgstr "Votre adresse e-mail" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "Saisir une adresse e-mail pour permettre la réinitialisation du mot de passe et la réception des notifications" #: templates/personal.php:96 msgid "Profile picture" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 378ca3e4d8..44203b8b95 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2013 +# Christophe Lherieau , 2013-2014 # etiess , 2013 # plachance , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 16:21+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" @@ -166,7 +166,7 @@ msgstr "Aide" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Les groupes respectant ces critères sont disponibles dans %s :" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -202,7 +202,7 @@ msgstr "groupes trouvés" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Utilisateurs se connectant avec cet attribut :" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -270,7 +270,7 @@ msgstr "Vous pouvez spécifier les DN Racines de vos utilisateurs et groupes via #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Limiter l'accès à %s aux utilisateurs respectant ces critères :" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -414,13 +414,13 @@ msgstr "Association groupe-membre" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Groupes imbriqués" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Si activé, les groupes contenant d'autres groupes sont supportés (fonctionne uniquement si l'attribut membre du groupe contient des DNs)." #: templates/settings.php:41 msgid "Special Attributes" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index b21c2df758..c466a063ba 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 18:21+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,17 +51,17 @@ msgstr "Email inviata" msgid "You need to set your user email before being able to send test emails." msgstr "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio delle email." -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "Modalità di invio" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Cifratura" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" -msgstr "" +msgstr "Metodo di autenticazione" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -215,31 +215,31 @@ msgstr "Aggiorna" msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Seleziona un'immagine del profilo" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Password molto debole" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Password debole" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Password così-così" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Password buona" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Password forte" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo." @@ -336,18 +336,18 @@ msgstr "SSL" msgid "TLS" msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Avviso di sicurezza" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Sei connesso a %s tramite HTTP. Ti suggeriamo vivamente di configurare il tuo server per richiedere l'utilizzo del protocollo HTTPS al posto di HTTP." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -356,68 +356,68 @@ msgid "" "root." msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Avviso di configurazione" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modulo 'fileinfo' mancante" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "La tua versione di PHP è obsoleta" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Locale non funzionante" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "La localizzazione di sistema non può essere impostata a una che supporta UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Consigliamo vivamente di installare i pacchetti richiesti sul tuo sistema per supportare una delle\nlocalizzazioni seguenti: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Concessione Internet non funzionante" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -426,162 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Consenti caricamenti pubblici" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Consenti agli utenti di abilitare altri al caricamento nelle loro cartelle pubbliche condivise" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere a loro volta elementi condivisi da altri" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Consenti le notifiche tramite posta elettronica" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Protezione" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forza i client a connettersi a %s tramite una connessione cifrata." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "Server di posta" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "Viene utilizzato per inviare le notifiche." -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "Indirizzo mittente" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "Autenticazione richiesta" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Indirizzo del server" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Porta" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Credenziali" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "Nome utente SMTP" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "Password SMTP" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "Prova impostazioni email" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "Invia email" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Altro" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Meno" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Versione" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the , 2013-2014 +# plazmism , 2013-2014 +# iLikeIT , 2013 +# Koichi MATSUMOTO , 2013 +# kuromabo , 2014 +# tt yn , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-11 13:20+0000\n" +"Last-Translator: plazmism \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/share.php:112 ajax/share.php:154 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "次のユーザーにメールを送信できませんでした: %s" + +#: ajax/update.php:11 +msgid "Turned on maintenance mode" +msgstr "メンテナンスモードがオンになりました" + +#: ajax/update.php:14 +msgid "Turned off maintenance mode" +msgstr "メンテナンスモードがオフになりました" + +#: ajax/update.php:17 +msgid "Updated database" +msgstr "データベース更新完了" + +#: ajax/update.php:20 +msgid "Updating filecache, this may take really long..." +msgstr "ファイルキャッシュを更新しています、しばらく掛かる恐れがあります..." + +#: ajax/update.php:23 +msgid "Updated filecache" +msgstr "ファイルキャッシュ更新完了" + +#: ajax/update.php:26 +#, php-format +msgid "... %d%% done ..." +msgstr "... %d%% 完了 ..." + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "画像もしくはファイルが提供されていません" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "不明なファイルタイプ" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "無効な画像" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "一時的なプロファイル用画像が利用できません。もう一度試してください" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "クロップデータは提供されません" + +#: js/config.php:36 +msgid "Sunday" +msgstr "日" + +#: js/config.php:37 +msgid "Monday" +msgstr "月" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "火" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "水" + +#: js/config.php:40 +msgid "Thursday" +msgstr "木" + +#: js/config.php:41 +msgid "Friday" +msgstr "金" + +#: js/config.php:42 +msgid "Saturday" +msgstr "土" + +#: js/config.php:47 +msgid "January" +msgstr "1月" + +#: js/config.php:48 +msgid "February" +msgstr "2月" + +#: js/config.php:49 +msgid "March" +msgstr "3月" + +#: js/config.php:50 +msgid "April" +msgstr "4月" + +#: js/config.php:51 +msgid "May" +msgstr "5月" + +#: js/config.php:52 +msgid "June" +msgstr "6月" + +#: js/config.php:53 +msgid "July" +msgstr "7月" + +#: js/config.php:54 +msgid "August" +msgstr "8月" + +#: js/config.php:55 +msgid "September" +msgstr "9月" + +#: js/config.php:56 +msgid "October" +msgstr "10月" + +#: js/config.php:57 +msgid "November" +msgstr "11月" + +#: js/config.php:58 +msgid "December" +msgstr "12月" + +#: js/js.js:458 +msgid "Settings" +msgstr "設定" + +#: js/js.js:496 +msgid "Saving..." +msgstr "保存中..." + +#: js/js.js:995 +msgid "seconds ago" +msgstr "数秒前" + +#: js/js.js:996 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n 分前" + +#: js/js.js:997 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n 時間前" + +#: js/js.js:998 +msgid "today" +msgstr "今日" + +#: js/js.js:999 +msgid "yesterday" +msgstr "昨日" + +#: js/js.js:1000 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "%n日前" + +#: js/js.js:1001 +msgid "last month" +msgstr "1ヶ月前" + +#: js/js.js:1002 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%nヶ月前" + +#: js/js.js:1003 +msgid "months ago" +msgstr "数ヶ月前" + +#: js/js.js:1004 +msgid "last year" +msgstr "1年前" + +#: js/js.js:1005 +msgid "years ago" +msgstr "数年前" + +#: js/oc-dialogs.js:123 +msgid "Choose" +msgstr "選択" + +#: js/oc-dialogs.js:146 +msgid "Error loading file picker template: {error}" +msgstr "ファイル選択テンプレートの読み込みエラー: {error}" + +#: js/oc-dialogs.js:172 +msgid "Yes" +msgstr "はい" + +#: js/oc-dialogs.js:182 +msgid "No" +msgstr "いいえ" + +#: js/oc-dialogs.js:199 +msgid "Ok" +msgstr "OK" + +#: js/oc-dialogs.js:219 +msgid "Error loading message template: {error}" +msgstr "メッセージテンプレートの読み込みエラー: {error}" + +#: js/oc-dialogs.js:347 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "{count} ファイルが競合" + +#: js/oc-dialogs.js:361 +msgid "One file conflict" +msgstr "1ファイルが競合" + +#: js/oc-dialogs.js:367 +msgid "Which files do you want to keep?" +msgstr "どちらのファイルを保持したいですか?" + +#: js/oc-dialogs.js:368 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "両方のバージョンを選択した場合は、ファイル名の後ろに数字を追加したファイルのコピーを作成します。" + +#: js/oc-dialogs.js:376 +msgid "Cancel" +msgstr "キャンセル" + +#: js/oc-dialogs.js:386 +msgid "Continue" +msgstr "続ける" + +#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 +msgid "(all selected)" +msgstr "(全て選択)" + +#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +msgid "({count} selected)" +msgstr "({count} 選択)" + +#: js/oc-dialogs.js:457 +msgid "Error loading file exists template" +msgstr "既存ファイルのテンプレートの読み込みエラー" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "非常に弱いパスワード" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "弱いパスワード" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "まずまずのパスワード" + +#: js/setup.js:87 +msgid "Good password" +msgstr "良好なパスワード" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "強いパスワード" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "共有中" + +#: js/share.js:109 +msgid "Share" +msgstr "共有" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:723 templates/installation.php:10 +msgid "Error" +msgstr "エラー" + +#: js/share.js:160 js/share.js:755 +msgid "Error while sharing" +msgstr "共有でエラー発生" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "共有解除でエラー発生" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "権限変更でエラー発生" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "あなたと {owner} のグループ {group} で共有中" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "{owner} と共有中" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "ユーザーもしくはグループと共有 ..." + +#: js/share.js:220 +msgid "Share link" +msgstr "URLで共有" + +#: js/share.js:223 +msgid "Password protect" +msgstr "パスワード保護" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "パスワード" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "アップロードを許可" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "メールリンク" + +#: js/share.js:235 +msgid "Send" +msgstr "送信" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "有効期限を設定" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "有効期限" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "メール経由で共有:" + +#: js/share.js:280 +msgid "No people found" +msgstr "ユーザーが見つかりません" + +#: js/share.js:324 js/share.js:363 +msgid "group" +msgstr "グループ" + +#: js/share.js:335 +msgid "Resharing is not allowed" +msgstr "再共有は許可されていません" + +#: js/share.js:379 +msgid "Shared in {item} with {user}" +msgstr "{item} 内で {user} と共有中" + +#: js/share.js:401 +msgid "Unshare" +msgstr "共有解除" + +#: js/share.js:409 +msgid "notify by email" +msgstr "メールで通知" + +#: js/share.js:412 +msgid "can edit" +msgstr "編集を許可" + +#: js/share.js:414 +msgid "access control" +msgstr "アクセス権限" + +#: js/share.js:417 +msgid "create" +msgstr "作成" + +#: js/share.js:420 +msgid "update" +msgstr "アップデート" + +#: js/share.js:423 +msgid "delete" +msgstr "削除" + +#: js/share.js:426 +msgid "share" +msgstr "共有" + +#: js/share.js:698 +msgid "Password protected" +msgstr "パスワード保護" + +#: js/share.js:711 +msgid "Error unsetting expiration date" +msgstr "有効期限の未設定エラー" + +#: js/share.js:723 +msgid "Error setting expiration date" +msgstr "有効期限の設定でエラー発生" + +#: js/share.js:742 +msgid "Sending ..." +msgstr "送信中..." + +#: js/share.js:753 +msgid "Email sent" +msgstr "メールを送信しました" + +#: js/share.js:777 +msgid "Warning" +msgstr "警告" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "オブジェクトタイプが指定されていません。" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "新規に入力" + +#: js/tags.js:27 +msgid "Delete" +msgstr "削除" + +#: js/tags.js:31 +msgid "Add" +msgstr "追加" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "タグを編集" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "メッセージテンプレートの読み込みエラー: {error}" + +#: js/tags.js:261 +msgid "No tags selected for deletion." +msgstr "削除するタグが選択されていません。" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "ページをリロードしてください。" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "アップデートに失敗しました。この問題を ownCloud community にレポートしてください。" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "アップデートに成功しました。今すぐownCloudにリダイレクトします。" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "%s パスワードリセット" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "メールの送信中に問題が発生しました。管理者に問い合わせください。" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "パスワードをリセットするには次のリンクをクリックしてください: {link}" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信できない場合は、スパム/迷惑メールフォルダーを確認してください。
もしそこにもない場合は、管理者に問い合わせてください。" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "リクエストに失敗しました!
あなたのメール/ユーザー名が正しいことを確認しましたか?" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "メールでパスワードをリセットするリンクが届きます。" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "ユーザー名" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "ファイルが暗号化されています。リカバリキーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "はい、今すぐパスワードをリセットします。" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "リセット" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "あなたのパスワードはリセットされました。" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "ログインページへ戻る" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "新しいパスワードを入力" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "パスワードをリセット" + +#: strings.php:5 +msgid "Personal" +msgstr "個人" + +#: strings.php:6 +msgid "Users" +msgstr "ユーザー" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "アプリ" + +#: strings.php:8 +msgid "Admin" +msgstr "管理" + +#: strings.php:9 +msgid "Help" +msgstr "ヘルプ" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "タグの読み込みエラー" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "タグはすでに存在します" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "タグの削除エラー" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "タグの付与エラー" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "タグの解除エラー" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "お気に入りに追加エラー" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "お気に入りから削除エラー" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "アクセスが禁止されています" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "見つかりません" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "共有は %s で有効期限が切れます。" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "それでは!" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "セキュリティ警告" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "%s を安全に利用するため、インストールされているPHPをアップデートしてください。" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にしてください。" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "セキュアな乱数生成器が無い場合、攻撃者がパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "サーバーを適正に設定する情報は、こちらのドキュメントを参照してください。" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "管理者アカウントを作成してください" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "ストレージとデータベース" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "データフォルダー" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "データベースを設定してください" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "が使用されます" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "データベースのユーザー名" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "データベースのパスワード" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "データベース名" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "データベースの表領域" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "データベースのホスト名" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "セットアップを完了します" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "作業を完了しています ..." + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "このアプリケーションを使用するにはJavaScriptが必要です。\nJavaScriptを有効にし、インターフェースを更新してください。 " + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "%s が利用可能です。アップデート方法について詳細情報を確認してください。" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "ログアウト" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "自動ログインは拒否されました!" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "最近パスワードを変更していない場合、あなたのアカウントが危険にさらされている可能性があります!" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "アカウント保護のため、パスワードを再度変更してください。" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "サーバーサイドの認証に失敗しました!" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "管理者に問い合わせてください。" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "パスワードを忘れましたか?" + +#: templates/login.php:51 +msgid "remember" +msgstr "パスワードを保存" + +#: templates/login.php:54 +msgid "Log in" +msgstr "ログイン" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "代替ログイン" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "こんにちは、

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

" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "このownCloudインスタンスは、現在シングルユーザーモードです。" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "これは、管理者のみがインスタンスを利用できることを意味しています。" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "このメッセージが引き続きもしくは予期せず現れる場合は、システム管理者に連絡してください。" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "しばらくお待ちください。" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ちください。" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "この ownCloud インスタンスは現在アップデート中のため、しばらく時間がかかります。" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "ownCloud を続けて利用するには、しばらくした後でページをリロードしてください。" diff --git a/l10n/ja/files.po b/l10n/ja/files.po new file mode 100644 index 0000000000..a42d1d2c0e --- /dev/null +++ b/l10n/ja/files.po @@ -0,0 +1,424 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Daisuke Deguchi , 2013 +# plazmism , 2013-2014 +# iLikeIT , 2013 +# Koichi MATSUMOTO , 2013 +# kuromabo , 2014 +# pabook , 2013 +# tt yn , 2013-2014 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 08:10+0000\n" +"Last-Translator: plazmism \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "%s を移動できませんでした ― この名前のファイルはすでに存在します" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "%s を移動できませんでした" + +#: ajax/newfile.php:57 js/files.js:98 +msgid "File name cannot be empty." +msgstr "ファイル名を空にすることはできません。" + +#: ajax/newfile.php:62 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "\"%s\" は無効なファイル名です。" + +#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" + +#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "目標のフォルダは移動されたか、削除されました。" + +#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "%s はフォルダー %s ですでに使われています。別の名前を選択してください。" + +#: ajax/newfile.php:96 +msgid "Not a valid source" +msgstr "有効なソースではありません" + +#: ajax/newfile.php:101 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "%s から %s へのダウンロードエラー" + +#: ajax/newfile.php:155 +msgid "Error when creating the file" +msgstr "ファイルの生成エラー" + +#: ajax/newfolder.php:21 +msgid "Folder name cannot be empty." +msgstr "フォルダー名は空にできません" + +#: ajax/newfolder.php:65 +msgid "Error when creating the folder" +msgstr "フォルダーの生成エラー" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "アップロードディレクトリを設定できません。" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "無効なトークン" + +#: ajax/upload.php:67 +msgid "No file was uploaded. Unknown error" +msgstr "ファイルは何もアップロードされていません。不明なエラー" + +#: ajax/upload.php:74 +msgid "There is no error, the file uploaded with success" +msgstr "エラーはありません。ファイルのアップロードは成功しました" + +#: ajax/upload.php:75 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" + +#: ajax/upload.php:77 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" + +#: ajax/upload.php:78 +msgid "The uploaded file was only partially uploaded" +msgstr "アップロードファイルは一部分だけアップロードされました" + +#: ajax/upload.php:79 +msgid "No file was uploaded" +msgstr "ファイルはアップロードされませんでした" + +#: ajax/upload.php:80 +msgid "Missing a temporary folder" +msgstr "一時保存フォルダーが見つかりません" + +#: ajax/upload.php:81 +msgid "Failed to write to disk" +msgstr "ディスクへの書き込みに失敗しました" + +#: ajax/upload.php:99 +msgid "Not enough storage available" +msgstr "ストレージに十分な空き容量がありません" + +#: ajax/upload.php:156 +msgid "Upload failed. Could not find uploaded file" +msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" + +#: ajax/upload.php:166 +msgid "Upload failed. Could not get file info." +msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" + +#: ajax/upload.php:185 +msgid "Invalid directory." +msgstr "無効なディレクトリです。" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "ファイル" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "ディレクトリもしくは0バイトのため {filename} をアップロードできません" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "合計ファイルサイズ {size1} はアップロード制限 {size2} を超過しています。" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "空き容量が十分でなく、 {size1} をアップロードしていますが、 {size2} しか残っていません。" + +#: js/file-upload.js:338 +msgid "Upload cancelled." +msgstr "アップロードはキャンセルされました。" + +#: js/file-upload.js:383 +msgid "Could not get result from server." +msgstr "サーバーから結果を取得できませんでした。" + +#: js/file-upload.js:475 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" + +#: js/file-upload.js:562 +msgid "URL cannot be empty" +msgstr "URL は空にできません" + +#: js/file-upload.js:566 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です" + +#: js/file-upload.js:568 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "{new_name} はすでに存在します" + +#: js/file-upload.js:634 +msgid "Could not create file" +msgstr "ファイルを作成できませんでした" + +#: js/file-upload.js:650 +msgid "Could not create folder" +msgstr "フォルダーを作成できませんでした" + +#: js/file-upload.js:700 +msgid "Error fetching URL" +msgstr "URL取得エラー" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "共有" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "完全に削除する" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "名前の変更" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "中断" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "ファイルの名前変更ができませんでした" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "{old_name} を {new_name} に置換" + +#: js/filelist.js:591 +msgid "undo" +msgstr "元に戻す" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "ファイルの削除エラー。" + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n 個のフォルダー" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n 個のファイル" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "{dirs} と {files}" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "%n 個のファイルをアップロード中" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "\"{name}\" は無効なファイル名です。" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "ストレージがほぼ一杯です({usedSpacePercent}%)" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。" + +#: js/files.js:379 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" + +#: js/files.js:610 js/files.js:654 +msgid "Error moving file" +msgstr "ファイルの移動エラー" + +#: js/files.js:610 js/files.js:654 +msgid "Error" +msgstr "エラー" + +#: js/files.js:672 templates/index.php:68 +msgid "Name" +msgstr "名前" + +#: js/files.js:673 templates/index.php:80 +msgid "Size" +msgstr "サイズ" + +#: js/files.js:674 templates/index.php:82 +msgid "Modified" +msgstr "更新日時" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "無効なフォルダー名。「Shared」の利用は予約されています。" + +#: lib/app.php:111 +#, php-format +msgid "%s could not be renamed" +msgstr "%sの名前を変更できませんでした" + +#: lib/helper.php:14 templates/index.php:23 +msgid "Upload" +msgstr "アップロード" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "ファイル操作" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "最大アップロードサイズ" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "最大容量: " + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "複数ファイルおよびフォルダーのダウンロードに必要" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "ZIP形式のダウンロードを有効にする" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "0を指定した場合は無制限" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "ZIPファイルでの最大入力サイズ" + +#: templates/admin.php:26 +msgid "Save" +msgstr "保存" + +#: templates/index.php:6 +msgid "New" +msgstr "新規作成" + +#: templates/index.php:9 +msgid "New text file" +msgstr "新規のテキストファイル作成" + +#: templates/index.php:10 +msgid "Text file" +msgstr "テキストファイル" + +#: templates/index.php:13 +msgid "New folder" +msgstr "新しいフォルダー" + +#: templates/index.php:14 +msgid "Folder" +msgstr "フォルダー" + +#: templates/index.php:17 +msgid "From link" +msgstr "リンク" + +#: templates/index.php:41 +msgid "Deleted files" +msgstr "ゴミ箱" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "アップロードをキャンセル" + +#: templates/index.php:52 +msgid "You don’t have permission to upload or create files here" +msgstr "ここにファイルをアップロードもしくは作成する権限がありません" + +#: templates/index.php:57 +msgid "Nothing in here. Upload something!" +msgstr "ここには何もありません。何かアップロードしてください。" + +#: templates/index.php:74 +msgid "Download" +msgstr "ダウンロード" + +#: templates/index.php:85 templates/index.php:86 +msgid "Delete" +msgstr "削除" + +#: templates/index.php:98 +msgid "Upload too large" +msgstr "アップロードには大きすぎます。" + +#: templates/index.php:100 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "アップロードしようとしているファイルは、サーバーで規定された最大サイズを超えています。" + +#: templates/index.php:105 +msgid "Files are being scanned, please wait." +msgstr "ファイルをスキャンしています、しばらくお待ちください。" + +#: templates/index.php:108 +msgid "Current scanning" +msgstr "スキャン中" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "ファイルシステムキャッシュを更新中..." diff --git a/l10n/ja/files_encryption.po b/l10n/ja/files_encryption.po new file mode 100644 index 0000000000..4e73f59715 --- /dev/null +++ b/l10n/ja/files_encryption.po @@ -0,0 +1,205 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Daisuke Deguchi , 2013 +# plazmism , 2013-2014 +# kuromabo , 2014 +# tt yn , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"Last-Translator: plazmism \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "リカバリ用のキーを正常に有効にしました" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "リカバリ用のキーを有効にできませんでした。リカバリ用のキーのパスワードを確認してください!" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "リカバリ用のキーを正常に無効化しました" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認してください!" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "パスワードを変更できました。" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "秘密鍵のパスワードが正常に更新されました。" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "セッション中に暗号化アプリを再度有効にされたため、暗号化アプリが初期化されていません。暗号化アプリを初期化するため、ログアウトしてログインしなおしてください。" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "プライベートキーが有効ではありません!パスワードが%sの外部で変更された(例: 共同ディレクトリ)と思われます。個人設定でプライベートキーのパスワードを更新して、暗号化ファイルへのアクセスを回復することができます。" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "不明なエラーです。システム設定を確認するか、管理者に問い合わせてください。" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "必要要件が満たされていません。" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "以下のユーザーは、暗号化設定がされていません:" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。お待ちください。" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "初期暗号化実行中... 後でもう一度お試しください。" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "あなたのディレクトリへ" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "秘密鍵をアンロックできます" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "暗号化" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "リカバリキーを有効にする (パスワードを忘れた場合にユーザーのファイルを回復できます):" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "リカバリキーのパスワード" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "リカバリキーのパスワードをもう一度入力" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "有効" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "無効" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "リカバリキーのパスワードを変更:" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "古いリカバリキーのパスワード" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "新しいリカバリキーのパスワード" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "新しいリカバリキーのパスワードをもう一度入力" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "パスワードを変更" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "もはや秘密鍵はログインパスワードと一致しません:" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "古い秘密鍵のパスワードを現在のログインパスワードに設定する。" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "古いログインパスワード" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "現在のログインパスワード" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "秘密鍵のパスワードを更新" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "パスワードリカバリを有効に:" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "ファイルリカバリ設定を更新しました" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "ファイルリカバリを更新できませんでした" diff --git a/l10n/ja/files_external.po b/l10n/ja/files_external.po new file mode 100644 index 0000000000..d7b59ad313 --- /dev/null +++ b/l10n/ja/files_external.po @@ -0,0 +1,129 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# plazmism , 2014 +# kuromabo , 2014 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-11 13:31+0000\n" +"Last-Translator: plazmism \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "アクセスは許可されました" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "Dropboxストレージの設定エラー" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "アクセスを許可" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "有効なDropboxアプリのキーとパスワードを入力してください。" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "Googleドライブストレージの設定エラー" + +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "保存されました" + +#: lib/config.php:512 +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:516 +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 "警告: PHPのFTPサポートが無効またはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールを依頼してください。" + +#: lib/config.php:519 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "警告: PHPのCurlサポートが無効またはインストールされていません。ownCloud / WebDAVまたはGoogleDriveのマウントはできません。システム管理者にインストールを依頼してください。" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "外部ストレージ" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "フォルダー名" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "外部ストレージ" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "設定" + +#: templates/settings.php:12 +msgid "Options" +msgstr "オプション" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "適用範囲" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "ストレージを追加" + +#: templates/settings.php:90 +msgid "None set" +msgstr "未設定" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "すべてのユーザー" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "グループ" + +#: templates/settings.php:100 +msgid "Users" +msgstr "ユーザー" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:155 templates/settings.php:156 +msgid "Delete" +msgstr "削除" + +#: templates/settings.php:127 +msgid "Enable User External Storage" +msgstr "ユーザーの外部ストレージを有効にする" + +#: templates/settings.php:130 +msgid "Allow users to mount the following external storage" +msgstr "ユーザに以下の外部ストレージのマウントを許可する" + +#: templates/settings.php:147 +msgid "SSL root certificates" +msgstr "SSLルート証明書" + +#: templates/settings.php:165 +msgid "Import Root Certificate" +msgstr "ルート証明書をインポート" diff --git a/l10n/ja/files_sharing.po b/l10n/ja/files_sharing.po new file mode 100644 index 0000000000..a261938104 --- /dev/null +++ b/l10n/ja/files_sharing.po @@ -0,0 +1,75 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Daisuke Deguchi , 2013 +# plazmism , 2014 +# tt yn , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-11 13:31+0000\n" +"Last-Translator: plazmism \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "{owner} と共有中" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "この共有はパスワードで保護されています" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "パスワードが間違っています。再試行してください。" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "パスワード" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "申し訳ございません。このリンクはもう利用できません。" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "理由は以下の通りと考えられます:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "アイテムが削除されました" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "リンクの期限が切れています" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "共有が無効になっています" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "不明な点は、こちらのリンクの提供者に確認をお願いします。" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "%s で共有中" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "%s をダウンロード" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "リンク" diff --git a/l10n/ja/files_trashbin.po b/l10n/ja/files_trashbin.po new file mode 100644 index 0000000000..9758c9048e --- /dev/null +++ b/l10n/ja/files_trashbin.po @@ -0,0 +1,68 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Daisuke Deguchi , 2013 +# plazmism , 2013 +# kuromabo , 2014 +# tt yn , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-11 06:12+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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "%s を完全に削除できませんでした" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "%s を復元できませんでした" + +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "ゴミ箱" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +msgid "Error" +msgstr "エラー" + +#: lib/trashbin.php:853 lib/trashbin.php:855 +msgid "restored" +msgstr "復元済" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "ここには何もありません。ゴミ箱は空です!" + +#: templates/index.php:20 +msgid "Name" +msgstr "名前" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "復元" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "削除済み" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "削除" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "ゴミ箱" diff --git a/l10n/ja/files_versions.po b/l10n/ja/files_versions.po new file mode 100644 index 0000000000..9de686c4ff --- /dev/null +++ b/l10n/ja/files_versions.po @@ -0,0 +1,44 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# tt yn , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2013-08-04 01:10+0000\n" +"Last-Translator: tt yn \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "元に戻せませんでした: %s" + +#: js/versions.js:14 +msgid "Versions" +msgstr "バージョン" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "{file} を {timestamp} のリヴィジョンに戻すことができません。" + +#: js/versions.js:87 +msgid "More versions..." +msgstr "もっと他のバージョン..." + +#: js/versions.js:125 +msgid "No other versions available" +msgstr "利用可能な他のバージョンはありません" + +#: js/versions.js:155 +msgid "Restore" +msgstr "復元" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po new file mode 100644 index 0000000000..07ec088145 --- /dev/null +++ b/l10n/ja/lib.po @@ -0,0 +1,339 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Daisuke Deguchi , 2013 +# plazmism , 2013-2014 +# Koichi MATSUMOTO , 2013 +# kuromabo , 2014 +# tt yn , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-11 13:31+0000\n" +"Last-Translator: plazmism \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr " \"%s\" アプリは、このバージョンのownCloudと互換性がないためインストールできません。" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "アプリ名が未指定" + +#: private/app.php:353 +msgid "Help" +msgstr "ヘルプ" + +#: private/app.php:366 +msgid "Personal" +msgstr "個人" + +#: private/app.php:377 +msgid "Settings" +msgstr "設定" + +#: private/app.php:389 +msgid "Users" +msgstr "ユーザー" + +#: private/app.php:402 +msgid "Admin" +msgstr "管理" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "\"%s\" へのアップグレードに失敗しました。" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "不明なファイルタイプ" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "無効な画像" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "管理下のウェブサービス" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "ZIPダウンロードは無効です。" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "ファイルは1つずつダウンロードする必要があります。" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "ファイルに戻る" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "少しずつに分けてファイルをダウンロードするか、管理者に問い合わせてください。" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "アプリインストール時のソースが未指定" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "アプリインストール時のhttpの URL が未指定" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "アプリインストール時のローカルファイルのパスが未指定" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "\"%s\"タイプのアーカイブ形式は未サポート" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "アプリをインストール中にアーカイブファイルを開けませんでした。" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "アプリにinfo.xmlファイルが入っていません" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "アプリで許可されないコードが入っているのが原因でアプリがインストールできません" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "アプリは、このバージョンのownCloudと互換性がないためインストールできません。" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストールできません。" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "info.xml/versionのバージョンがアプリストアのバージョンと合っていないため、アプリはインストールされません" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "アプリディレクトリはすでに存在します" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "アプリフォルダーを作成できませんでした。%s のパーミッションを修正してください。" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "アプリケーションは無効です" + +#: private/json.php:40 private/json.php:63 private/json.php:88 +msgid "Authentication error" +msgstr "認証エラー" + +#: private/json.php:52 +msgid "Token expired. Please reload page." +msgstr "トークンが無効になりました。ページを再読込してください。" + +#: private/json.php:75 +msgid "Unknown user" +msgstr "不明なユーザー" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "ファイル" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "TTY TDD" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "画像" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "%s のデータベースのユーザー名を入力してください。" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "%s のデータベース名を入力してください。" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "%s ではデータベース名にドットを利用できないかもしれません。" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "既存のアカウントもしくは管理者のどちらかを入力する必要があります。" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "MySQL/MariaDB のユーザー名及び/またはパスワードが無効" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "DBエラー: \"%s\"" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "違反コマンド: \"%s\"" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "MySQL/MariaDB のユーザー '%s'@'localhost' はすでに存在します。" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "MySQL/MariaDB からこのユーザーを削除" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "MySQL/MariaDB のユーザー '%s'@'%%' はすでに存在します" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "MySQL/MariaDB からこのユーザーを削除。" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "Oracleへの接続が確立できませんでした。" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "Oracleのユーザー名もしくはパスワードは有効ではありません" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "PostgreSQLのユーザー名もしくはパスワードは有効ではありません" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "管理者のユーザー名を設定" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "管理者のパスワードを設定。" + +#: private/setup.php:198 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。" + +#: private/setup.php:199 +#, php-format +msgid "Please double check the installation guides." +msgstr "インストールガイドをよく確認してください。" + +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "%sが あなたと »%s«を共有しました" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "カテゴリ \"%s\" が見つかりませんでした" + +#: private/template/functions.php:133 +msgid "seconds ago" +msgstr "数秒前" + +#: private/template/functions.php:134 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n 分前" + +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n 時間前" + +#: private/template/functions.php:136 +msgid "today" +msgstr "今日" + +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "1日前" + +#: private/template/functions.php:139 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "%n日前" + +#: private/template/functions.php:141 +msgid "last month" +msgstr "1ヶ月前" + +#: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%nヶ月前" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "1年前" + +#: private/template/functions.php:145 +msgid "years ago" +msgstr "年前" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po new file mode 100644 index 0000000000..e2383a5ad0 --- /dev/null +++ b/l10n/ja/settings.po @@ -0,0 +1,813 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Daisuke Deguchi , 2013-2014 +# plazmism , 2013-2014 +# iLikeIT , 2013 +# kuromabo , 2014 +# tt yn , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-12 07:20+0000\n" +"Last-Translator: kuromabo \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "%s に提供された無効な値" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "保存されました" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "eメール設定をテスト" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "このメールを受け取ったら、設定は正しいはずです。" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "メールの送信中に問題が発生しました。設定を再考してください。" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "メールを送信しました" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。" + +#: admin/controller.php:116 templates/admin.php:284 +msgid "Send mode" +msgstr "送信モード" + +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +msgid "Encryption" +msgstr "暗号化" + +#: admin/controller.php:120 templates/admin.php:321 +msgid "Authentication method" +msgstr "認証方法" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "アプリストアからリストをロードできません" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "認証エラー" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "フルネームを変更しました。" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "フルネームを変更できません" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "グループはすでに存在します" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "グループを追加できません" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "メールアドレスを保存しました" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "無効なメールアドレス" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "グループを削除できません" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "ユーザーを削除できません" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "言語が変更されました" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "不正なリクエスト" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "管理者は自身を管理者グループから削除できません。" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "ユーザーをグループ %s に追加できません" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "ユーザーをグループ %s から削除できません" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "アプリをアップデートできませんでした。" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "無効なパスワード" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "ユーザーが指定されていません" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "リカバリ用の管理者パスワードを入力してください。そうでない場合は、全ユーザーのデータが失われます。" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "リカバリ用の管理者パスワードが間違っています。パスワードを確認して再度実行してください。" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "バックエンドはパスワード変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "パスワードを変更できません" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "送信中…" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "ユーザードキュメント" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "管理者ドキュメント" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "{appversion} にアップデート" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "無効" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "有効にする" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "しばらくお待ちください。" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "アプリ無効化中にエラーが発生" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "アプリを有効にする際にエラーが発生" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "更新中...." + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "アプリの更新中にエラーが発生" + +#: js/apps.js:152 +msgid "Error" +msgstr "エラー" + +#: js/apps.js:153 templates/apps.php:54 +msgid "Update" +msgstr "アップデート" + +#: js/apps.js:156 +msgid "Updated" +msgstr "アップデート済み" + +#: js/personal.js:246 +msgid "Select a profile picture" +msgstr "プロファイル画像を選択" + +#: js/personal.js:277 +msgid "Very weak password" +msgstr "非常に弱いパスワード" + +#: js/personal.js:278 +msgid "Weak password" +msgstr "弱いパスワード" + +#: js/personal.js:279 +msgid "So-so password" +msgstr "まずまずのパスワード" + +#: js/personal.js:280 +msgid "Good password" +msgstr "良好なパスワード" + +#: js/personal.js:281 +msgid "Strong password" +msgstr "強いパスワード" + +#: js/personal.js:316 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。" + +#: js/users.js:47 +msgid "deleted" +msgstr "削除" + +#: js/users.js:47 +msgid "undo" +msgstr "元に戻す" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "ユーザーを削除できません" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "グループ" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "グループ管理者" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "削除" + +#: js/users.js:310 +msgid "add group" +msgstr "グループを追加" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "有効なユーザー名を指定する必要があります" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "ユーザー作成エラー" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "有効なパスワードを指定する必要があります" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "警告: ユーザー \"{user}\" のホームディレクトリはすでに存在します" + +#: personal.php:49 personal.php:50 +msgid "__language_name__" +msgstr "Japanese (日本語)" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "すべて (致命的な問題、エラー、警告、情報、デバッグ)" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "情報、警告、エラー、致命的な問題" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "警告、エラー、致命的な問題" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "エラー、致命的な問題" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "致命的な問題のみ" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "なし" + +#: templates/admin.php:17 +msgid "Login" +msgstr "ログイン" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "平文" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "NT LAN マネージャー" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "SSL" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "TLS" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "セキュリティ警告" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "HTTP経由で %s にアクセスしています。HTTPSを使用するようサーバーを設定することを強くおすすめします。" + +#: templates/admin.php:64 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "セットアップ警告" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the installation guides." +msgstr "installation guidesをもう一度チェックするようにお願いいたします。" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "モジュール 'fileinfo' が見つかりません" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "PHPバーションが古くなっています。" + +#: templates/admin.php:107 +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 "PHPバーションが古くなっています。古いバージョンには既知の問題があるため、5.3.8以降のバージョンにアップデートすることを強く推奨します。このインストール状態では正常に動作しない可能性があります。" + +#: templates/admin.php:118 +msgid "Locale not working" +msgstr "ロケールが動作していません" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "システムロケールを UTF-8 をサポートするロケールに設定できません。" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "これは、ファイル名の特定の文字に問題があることを意味しています。" + +#: templates/admin.php:131 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。" + +#: templates/admin.php:143 +msgid "Internet connection not working" +msgstr "インターネット接続が動作していません" + +#: templates/admin.php:146 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "Cron" + +#: templates/admin.php:167 +msgid "Execute one task with each page loaded" +msgstr "各ページの読み込み時にタスクを実行する" + +#: templates/admin.php:175 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されています" + +#: templates/admin.php:183 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "システムのcronサービスを利用して15分ごとにcron.phpファイルを実行します。" + +#: templates/admin.php:188 +msgid "Sharing" +msgstr "共有" + +#: templates/admin.php:194 +msgid "Enable Share API" +msgstr "共有APIを有効にする" + +#: templates/admin.php:195 +msgid "Allow apps to use the Share API" +msgstr "アプリからの共有APIの利用を許可する" + +#: templates/admin.php:202 +msgid "Allow links" +msgstr "リンクを許可する" + +#: templates/admin.php:203 +msgid "Allow users to share items to the public with links" +msgstr "ユーザーがリンクによりアイテムを公開することを許可する" + +#: templates/admin.php:211 +msgid "Allow public uploads" +msgstr "パブリックなアップロードを許可" + +#: templates/admin.php:212 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "公開している共有フォルダーへのアップロードを共有しているメンバーにも許可" + +#: templates/admin.php:220 +msgid "Allow resharing" +msgstr "再共有を許可する" + +#: templates/admin.php:221 +msgid "Allow users to share items shared with them again" +msgstr "ユーザーが共有しているアイテムの再共有を許可する" + +#: templates/admin.php:228 +msgid "Allow users to share with anyone" +msgstr "ユーザーに誰とでも共有することを許可する" + +#: templates/admin.php:231 +msgid "Allow users to only share with users in their groups" +msgstr "ユーザーにグループ内のユーザーとのみ共有を許可する" + +#: templates/admin.php:238 +msgid "Allow mail notification" +msgstr "メール通知を許可" + +#: templates/admin.php:239 +msgid "Allow user to send mail notification for shared files" +msgstr "共有ファイルに関するメール通知の送信をユーザーに許可する" + +#: templates/admin.php:246 +msgid "Security" +msgstr "セキュリティ" + +#: templates/admin.php:259 +msgid "Enforce HTTPS" +msgstr "常にHTTPSを使用する" + +#: templates/admin.php:261 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "クライアントから %sへの接続を常に暗号化します。" + +#: templates/admin.php:267 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。" + +#: templates/admin.php:279 +msgid "Email Server" +msgstr "メールサーバー" + +#: templates/admin.php:281 +msgid "This is used for sending out notifications." +msgstr "これは通知の送信に使われます。" + +#: templates/admin.php:312 +msgid "From address" +msgstr "アドレスから" + +#: templates/admin.php:334 +msgid "Authentication required" +msgstr "要求される認証" + +#: templates/admin.php:338 +msgid "Server address" +msgstr "サーバーアドレス" + +#: templates/admin.php:342 +msgid "Port" +msgstr "ポート" + +#: templates/admin.php:347 +msgid "Credentials" +msgstr "資格情報" + +#: templates/admin.php:348 +msgid "SMTP Username" +msgstr "SMTP ユーザー名" + +#: templates/admin.php:351 +msgid "SMTP Password" +msgstr "SMTP パスワード" + +#: templates/admin.php:355 +msgid "Test email settings" +msgstr "メールテスト設定" + +#: templates/admin.php:356 +msgid "Send email" +msgstr "メールを送信" + +#: templates/admin.php:361 +msgid "Log" +msgstr "ログ" + +#: templates/admin.php:362 +msgid "Log level" +msgstr "ログレベル" + +#: templates/admin.php:394 +msgid "More" +msgstr "もっと見る" + +#: templates/admin.php:395 +msgid "Less" +msgstr "閉じる" + +#: templates/admin.php:401 templates/personal.php:181 +msgid "Version" +msgstr "バージョン" + +#: templates/admin.php:405 templates/personal.php:184 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "アプリを追加" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "さらにアプリを表示" + +#: templates/apps.php:37 +msgid "Select an App" +msgstr "アプリを選択してください" + +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "ドキュメント:" + +#: templates/apps.php:48 +msgid "See application page at apps.owncloud.com" +msgstr "apps.owncloud.com でアプリケーションのページを見てください" + +#: templates/apps.php:50 +msgid "See application website" +msgstr "アプリケーションのウェブサイトを見る" + +#: templates/apps.php:52 +msgid "-licensed by " +msgstr "-ライセンス: " + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "管理者ドキュメント" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "オンラインドキュメント" + +#: templates/help.php:11 +msgid "Forum" +msgstr "フォーラム" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "バグトラッカー" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "商用サポート" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "ファイルを同期するためのアプリを取得" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "初回ウィザードを再表示する" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "現在、%s / %s を利用しています" + +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "パスワード" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "パスワードを変更しました" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "パスワードを変更することができません" + +#: templates/personal.php:43 +msgid "Current password" +msgstr "Current password" + +#: templates/personal.php:46 +msgid "New password" +msgstr "新しいパスワードを入力" + +#: templates/personal.php:50 +msgid "Change password" +msgstr "パスワードを変更" + +#: templates/personal.php:64 templates/users.php:86 +msgid "Full Name" +msgstr "名前" + +#: templates/personal.php:81 +msgid "Email" +msgstr "メール" + +#: templates/personal.php:83 +msgid "Your email address" +msgstr "あなたのメールアドレス" + +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "パスワードの回復を有効にし、通知を受け取るにはメールアドレスを入力してください" + +#: templates/personal.php:96 +msgid "Profile picture" +msgstr "プロフィール写真" + +#: templates/personal.php:101 +msgid "Upload new" +msgstr "新規にアップロード" + +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "ファイルから新規に選択" + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "画像を削除" + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "png と jpg のいずれか。正方形が理想ですが、切り取って加工することも可能です。" + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。" + +#: templates/personal.php:111 +msgid "Cancel" +msgstr "キャンセル" + +#: templates/personal.php:112 +msgid "Choose as profile image" +msgstr "プロファイル画像として選択" + +#: templates/personal.php:120 templates/personal.php:121 +msgid "Language" +msgstr "言語" + +#: templates/personal.php:140 +msgid "Help translate" +msgstr "翻訳に協力する" + +#: templates/personal.php:147 +msgid "WebDAV" +msgstr "WebDAV" + +#: templates/personal.php:149 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "WebDAV 経由でファイルにアクセス するにはこのアドレスを利用してください" + +#: templates/personal.php:161 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください" + +#: templates/personal.php:167 +msgid "Log-in password" +msgstr "ログインパスワード" + +#: templates/personal.php:172 +msgid "Decrypt all Files" +msgstr "すべてのファイルを複合する" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "ログイン名" + +#: templates/users.php:28 +msgid "Create" +msgstr "作成" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "管理者リカバリパスワード" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "パスワード変更時のユーザーのファイルを回復するため、リカバリパスワードを入力してください" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "デフォルトストレージ" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "ストレージの割り当てを入力してください (例: \"512MB\" や \"12 GB\")" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "無制限" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "その他" + +#: templates/users.php:85 +msgid "Username" +msgstr "ユーザー名" + +#: templates/users.php:92 +msgid "Storage" +msgstr "ストレージ" + +#: templates/users.php:106 +msgid "change full name" +msgstr "フルネームを変更" + +#: templates/users.php:110 +msgid "set new password" +msgstr "新しいパスワードを設定" + +#: templates/users.php:141 +msgid "Default" +msgstr "デフォルト" diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po new file mode 100644 index 0000000000..879766d023 --- /dev/null +++ b/l10n/ja/user_ldap.po @@ -0,0 +1,525 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Daisuke Deguchi , 2013 +# plazmism , 2013-2014 +# kuromabo , 2014 +# tt yn , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-11 13:31+0000\n" +"Last-Translator: plazmism \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "マッピングのクリアに失敗しました。" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "サーバー設定の削除に失敗しました" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "設定は有効であり、接続を確立しました!" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "設定は有効ですが、接続に失敗しました。サーバー設定と資格情報を確認してください。" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "設定が無効です。詳細はログを確認してください。" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "アクションが指定されていません" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "構成が指定されていません" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "データが指定されていません" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "構成 %s を設定できませんでした" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "削除に失敗しました" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "最近のサーバー設定から設定を引き継ぎますか?" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "設定を保持しますか?" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "サーバー設定を追加できません" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "マッピングをクリアしました" + +#: js/settings.js:128 +msgid "Success" +msgstr "成功" + +#: js/settings.js:133 +msgid "Error" +msgstr "エラー" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "設定OK" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "設定に誤りがあります" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "設定が不完全です" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "グループを選択" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "オブジェクトクラスを選択" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "属性を選択" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "接続テストに成功しました" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "接続テストに失敗しました" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "現在のサーバー設定を本当に削除してもよろしいですか?" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "削除の確認" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "%s グループが見つかりました" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "%s ユーザーが見つかりました" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "無効なホスト" + +#: lib/wizard.php:963 +msgid "Could not find the desired feature" +msgstr "望ましい機能は見つかりませんでした" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "保存" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "設定をテスト" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "ヘルプ" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "これらの基準を満たすグループが %s で利用可能:" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "それらのオブジェクトクラスのみ:" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "それらのグループからのみ:" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "フィルタを編集" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "LDAP フィルタ" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "フィルタは、どの LDAP グループが %s にアクセスするかを指定します。" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "グループが見つかりました" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "この属性でユーザーログイン:" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "LDAP ユーザー名:" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "LDAP メールアドレス:" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "他の属性:" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "ログイン実行時に適用するフィルタを定義します。%%uid にはログイン操作におけるユーザー名が入ります。例: \"uid=%%uid\"" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "サーバー設定を追加" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "ホスト" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "ポート" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "ユーザーDN" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "パスワード" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "匿名アクセスの場合は、DNとパスワードを空にしてください。" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "1行に1つのベースDN" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "拡張タブでユーザーとグループのベースDNを指定することができます。" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "この基準を満たすユーザに対し %s へのアクセスを制限:" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "フィルタは、どのLDAPユーザーが %s にアクセスするかを指定します。" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "ユーザーが見つかりました" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "戻る" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "続ける" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "警告: PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "接続設定" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "設定はアクティブです" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "チェックを外すと、この設定はスキップされます。" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "バックアップ(レプリカ)ホスト" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバーのレプリカである必要があります。" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "バックアップ(レプリカ)ポート" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "メインサーバーを無効にする" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "レプリカサーバーにのみ接続します。" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "大文字/小文字を区別しないLDAPサーバー(Windows)" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "SSL証明書の確認を無効にする。" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "推奨されません、テストにおいてのみ使用してください!このオプションでのみ接続が動作する場合は、LDAP サーバーのSSL証明書を %s サーバーにインポートしてください。" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "キャッシュのTTL" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "秒。変更後にキャッシュがクリアされます。" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "ディレクトリ設定" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "ユーザー表示名のフィールド" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "ユーザーの表示名の生成に利用するLDAP属性" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "ベースユーザーツリー" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "1行に1つのユーザーベースDN" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "ユーザー検索属性" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "オプション:1行に1属性" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "グループ表示名のフィールド" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "ユーザのグループ表示名の生成に利用するLDAP属性" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "ベースグループツリー" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "1行に1つのグループベースDN" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "グループ検索属性" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "グループとメンバーの関連付け" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "ネスト化ブロック" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "オンに切り替えたら、グループを含むグループがサポートされます。(グループメンバーの属性がDNを含む場合のみ有効です。)" + +#: templates/settings.php:41 +msgid "Special Attributes" +msgstr "特殊属性" + +#: templates/settings.php:43 +msgid "Quota Field" +msgstr "クォータフィールド" + +#: templates/settings.php:44 +msgid "Quota Default" +msgstr "クォータのデフォルト" + +#: templates/settings.php:44 +msgid "in bytes" +msgstr "バイト" + +#: templates/settings.php:45 +msgid "Email Field" +msgstr "メールフィールド" + +#: templates/settings.php:46 +msgid "User Home Folder Naming Rule" +msgstr "ユーザーのホームフォルダー命名規則" + +#: templates/settings.php:46 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "ユーザー名を空のままにしてください(デフォルト)。もしくは、LDAPもしくはADの属性を指定してください。" + +#: templates/settings.php:52 +msgid "Internal Username" +msgstr "内部ユーザー名" + +#: templates/settings.php:53 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "デフォルトでは、内部ユーザー名はUUID属性から作成されます。これにより、ユーザー名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザー名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザー名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダー名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザー表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザーにおいてのみ有効となります。" + +#: templates/settings.php:54 +msgid "Internal Username Attribute:" +msgstr "内部ユーザー名属性:" + +#: templates/settings.php:55 +msgid "Override UUID detection" +msgstr "UUID検出を再定義する" + +#: templates/settings.php:56 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザーとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザー名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザーとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザーとLDAPグループに対してのみ有効となります。" + +#: templates/settings.php:57 +msgid "UUID Attribute for Users:" +msgstr "ユーザーの UUID 属性:" + +#: templates/settings.php:58 +msgid "UUID Attribute for Groups:" +msgstr "グループの UUID 属性:" + +#: templates/settings.php:59 +msgid "Username-LDAP User Mapping" +msgstr "ユーザー名とLDAPユーザのマッピング" + +#: templates/settings.php:60 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "ユーザー名は(メタ)データの保存と割り当てに使用されます。ユーザーを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザー名からLDAPユーザーへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" + +#: templates/settings.php:61 +msgid "Clear Username-LDAP User Mapping" +msgstr "ユーザー名とLDAPユーザーのマッピングをクリアする" + +#: templates/settings.php:61 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "グループ名とLDAPグループのマッピングをクリアする" diff --git a/l10n/ja/user_webdavauth.po b/l10n/ja/user_webdavauth.po new file mode 100644 index 0000000000..6dad27018b --- /dev/null +++ b/l10n/ja/user_webdavauth.po @@ -0,0 +1,37 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2012-2013 +# plazmism , 2013 +# tt yn , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2013-08-04 01:10+0000\n" +"Last-Translator: tt yn \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "WebDAV 認証" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "アドレス:" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "ユーザーの権限情報をこのアドレスに送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index e508da3f05..8beb2e914b 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -4,15 +4,16 @@ # # Translators: # Cyryl Sochacki , 2013 +# maxxx , 2014 # bobie , 2013 # adbrand , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 07:21+0000\n" +"Last-Translator: maxxx \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" @@ -277,23 +278,23 @@ msgstr "Błąd podczas ładowania szablonu istniejącego pliku" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Bardzo słabe hasło" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Słabe hasło" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Mało skomplikowane hasło" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Dobre hasło" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Mocne hasło" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -492,7 +493,7 @@ msgstr "%s reset hasła" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Pojawił się problem podczas wysyłania wiadomości email, skontaktuj się z administratorem" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -670,7 +671,7 @@ msgstr "Utwórz konta administratora" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Zasoby dysku & baza danych" #: templates/installation.php:77 msgid "Data folder" @@ -771,7 +772,7 @@ msgstr "Alternatywne loginy" msgid "" "Hey there,

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

" -msgstr "" +msgstr "Witam,

informuję, że %s udostępnianych zasobów %s jest z Tobą.
Zobacz!

" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index cd54ba8689..355b5601c1 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -4,14 +4,15 @@ # # Translators: # Cyryl Sochacki , 2013 +# maxxx , 2014 # bobie , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 07:10+0000\n" +"Last-Translator: maxxx \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" @@ -103,7 +104,7 @@ msgstr "Rozpoczęto szyfrowanie... To może chwilę potrwać. Proszę czekać." #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Trwa szyfrowanie początkowe...Spróbuj ponownie." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 1f1ce69895..b4dbadacb9 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 07:21+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" @@ -49,15 +49,15 @@ msgstr "E-mail wysłany" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:284 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 msgid "Encryption" msgstr "Szyfrowanie" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:321 msgid "Authentication method" msgstr "" @@ -213,31 +213,31 @@ msgstr "Aktualizuj" msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Wybierz zdjęcie profilu" -#: js/personal.js:274 -msgid "Very weak password" -msgstr "" - -#: js/personal.js:275 -msgid "Weak password" -msgstr "" - -#: js/personal.js:276 -msgid "So-so password" -msgstr "" - #: js/personal.js:277 -msgid "Good password" -msgstr "" +msgid "Very weak password" +msgstr "Bardzo słabe hasło" #: js/personal.js:278 -msgid "Strong password" -msgstr "" +msgid "Weak password" +msgstr "Słabe hasło" -#: js/personal.js:301 +#: js/personal.js:279 +msgid "So-so password" +msgstr "Mało skomplikowane hasło" + +#: js/personal.js:280 +msgid "Good password" +msgstr "Dobre hasło" + +#: js/personal.js:281 +msgid "Strong password" +msgstr "Mocne hasło" + +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Odszyfrowuje pliki... Proszę czekać, to może zająć jakiś czas." @@ -334,18 +334,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Ostrzeżenie o zabezpieczeniach" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Uzyskujesz dostęp do %s za pomocą protokołu HTTP. Zalecamy skonfigurować swój serwer z użyciem protokołu HTTPS." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -354,68 +354,68 @@ msgid "" "root." msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess, który dostarcza ownCloud nie działa. Sugerujemy, aby skonfigurować serwer WWW w taki sposób, aby katalog danych nie był dostępny lub przenieść katalog danych poza główny katalog serwera WWW." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Ostrzeżenia konfiguracji" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Proszę sprawdź ponownie przewodnik instalacji." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Brak modułu „fileinfo”" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Twoja wersja PHP jest za stara" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Twoja wersja PHP jest za stara. Rekomendujemy przynajmniej wersje 5.3.8. Jeśli masz starsza wersję ownCloud może nie działać poprawnie." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokalizacja nie działa" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Ustawienia regionalne systemu nie można ustawić na jeden, który obsługuje UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Oznacza to, że mogą być problemy z niektórymi znakami w nazwach plików." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Zalecamy, aby zainstalować wymagane pakiety w systemie, jeden z następujących języków: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Połączenie internetowe nie działa" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Allow public uploads" msgstr "Pozwól na publiczne wczytywanie" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Użytkownicy mogą włączyć dla innych wgrywanie do ich publicznych katalogów" -#: templates/admin.php:216 +#: templates/admin.php:220 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:217 +#: templates/admin.php:221 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych" -#: templates/admin.php:224 +#: templates/admin.php:228 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:227 +#: templates/admin.php:231 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:234 +#: templates/admin.php:238 msgid "Allow mail notification" msgstr "Pozwól na mailowe powiadomienia" -#: templates/admin.php:235 +#: templates/admin.php:239 msgid "Allow user to send mail notification for shared files" msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" -#: templates/admin.php:242 +#: templates/admin.php:246 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:255 +#: templates/admin.php:259 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:261 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:263 +#: templates/admin.php:267 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:275 +#: templates/admin.php:279 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:281 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:312 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:334 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:338 msgid "Server address" msgstr "Adres Serwera" -#: templates/admin.php:338 +#: templates/admin.php:342 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:347 msgid "Credentials" msgstr "Poświadczenia" -#: templates/admin.php:344 +#: templates/admin.php:348 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:351 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:355 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:356 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:361 msgid "Log" msgstr "Logi" -#: templates/admin.php:358 +#: templates/admin.php:362 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:390 +#: templates/admin.php:394 msgid "More" msgstr "Więcej" -#: templates/admin.php:391 +#: templates/admin.php:395 msgid "Less" msgstr "Mniej" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:401 templates/personal.php:181 msgid "Version" msgstr "Wersja" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:405 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the , 2013-2014 # hoek , 2014 # orcio6 , 2013 +# maxxx , 2014 # bobie , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 07:30+0000\n" +"Last-Translator: maxxx \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" @@ -169,7 +170,7 @@ msgstr "Pomoc" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Przyłączenie do grupy z tymi ustawieniami dostępne jest w %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -205,7 +206,7 @@ msgstr "grup znaleziono" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Użytkownicy zalogowani z tymi ustawieniami:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -273,7 +274,7 @@ msgstr "Bazę DN można określić dla użytkowników i grup w karcie Zaawansowa #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Limit %s dostępu do podłączania użytkowników z tymi ustawieniami:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -417,13 +418,13 @@ msgstr "Członek grupy stowarzyszenia" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Grupy zagnieżdżone" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Kiedy włączone, grupy, które zawierają grupy, są wspierane. (Działa tylko, jeśli członek grupy ma ustawienie DNs)" #: templates/settings.php:41 msgid "Special Attributes" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 215cf358d9..0afbca8467 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 16:01+0000\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 15:59+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index da074905ad..94933947ee 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# andreiacob , 2014 # roentgen , 2014 # corneliu.e , 2013 # dimaursu16 , 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 16:10+0000\n" -"Last-Translator: roentgen \n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"PO-Revision-Date: 2014-03-13 16:03+0000\n" +"Last-Translator: andreiacob \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,7 +77,7 @@ msgstr "" #: ajax/newfile.php:155 msgid "Error when creating the file" -msgstr "" +msgstr "Eroare la crearea fisierului" #: ajax/newfolder.php:21 msgid "Folder name cannot be empty." @@ -84,7 +85,7 @@ msgstr "" #: ajax/newfolder.php:65 msgid "Error when creating the folder" -msgstr "" +msgstr "Eroare la crearea folderului" #: ajax/upload.php:19 ajax/upload.php:53 msgid "Unable to set upload directory." @@ -177,7 +178,7 @@ msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerup #: js/file-upload.js:562 msgid "URL cannot be empty" -msgstr "" +msgstr "URL nu poate fi gol" #: js/file-upload.js:566 msgid "In the home folder 'Shared' is a reserved filename" @@ -189,11 +190,11 @@ msgstr "{new_name} există deja" #: js/file-upload.js:634 msgid "Could not create file" -msgstr "" +msgstr "Nu s-a putut crea fisierul" #: js/file-upload.js:650 msgid "Could not create folder" -msgstr "" +msgstr "Nu s-a putut crea folderul" #: js/file-upload.js:700 msgid "Error fetching URL" @@ -217,7 +218,7 @@ msgstr "În așteptare" #: js/filelist.js:456 msgid "Could not rename file" -msgstr "" +msgstr "Nu s-a putut redenumi fisierul" #: js/filelist.js:591 msgid "replaced {new_name} with {old_name}" @@ -392,7 +393,7 @@ msgstr "Anulează încărcarea" #: templates/index.php:52 msgid "You don’t have permission to upload or create files here" -msgstr "" +msgstr "Nu aveti permisiunea de a incarca sau crea fisiere aici" #: templates/index.php:57 msgid "Nothing in here. Upload something!" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index c4850452e0..ccd88150ff 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 95e2858a86..e4d6ee44d8 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 34dfc635f8..d58859f710 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "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 096a0d63d4..a7bce5d649 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "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 37f6fb64b2..784c9fe0d7 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "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 7b3414d7c8..57b7f8e5cc 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "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 7c780ed253..75765928b3 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "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 6c8f1dc38f..f4f54f3875 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "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 b0da40c223..11347d9c39 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "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 eb15b516af..d71c2f34a1 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -210,31 +210,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ade2431d4e..fd9350af6b 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "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 50a97a0d70..aeb74b71b8 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" +"POT-Creation-Date: 2014-03-13 17:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index ebed058858..d866fb664e 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -31,6 +31,7 @@ $TRANSLATIONS = array( "Application is not enabled" => "L'application n'est pas activée", "Authentication error" => "Erreur d'authentification", "Token expired. Please reload page." => "La session a expiré. Veuillez recharger la page.", +"Unknown user" => "Utilisateur inconnu", "Files" => "Fichiers", "Text" => "Texte", "Images" => "Images", @@ -39,8 +40,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s vous nez pouvez pas utiliser de points dans le nom de la base de données", "MS SQL username and/or password not valid: %s" => "Le nom d'utilisateur et/ou le mot de passe de la base MS SQL est invalide : %s", "You need to enter either an existing account or the administrator." => "Vous devez spécifier soit le nom d'un compte existant, soit celui de l'administrateur.", +"MySQL/MariaDB username and/or password not valid" => "Nom d'utilisateur et/ou mot de passe MySQL/MariaDB invalide", "DB Error: \"%s\"" => "Erreur de la base de données : \"%s\"", "Offending command was: \"%s\"" => "La requête en cause est : \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "L'utilisateur MySQL/MariaDB '%s'@'localhost' existe déjà.", +"Drop this user from MySQL/MariaDB" => "Retirer cet utilisateur de la base MySQL/MariaDB", +"MySQL/MariaDB user '%s'@'%%' already exists" => "L'utilisateur MySQL/MariaDB '%s'@'%%' existe déjà", +"Drop this user from MySQL/MariaDB." => "Retirer cet utilisateur de la base MySQL/MariaDB.", "Oracle connection could not be established" => "La connexion Oracle ne peut pas être établie", "Oracle username and/or password not valid" => "Nom d'utilisateur et/ou mot de passe de la base Oracle invalide", "Offending command was: \"%s\", name: %s, password: %s" => "La requête en cause est : \"%s\", nom : %s, mot de passe : %s", diff --git a/lib/l10n/ja.php b/lib/l10n/ja.php new file mode 100644 index 0000000000..015c885904 --- /dev/null +++ b/lib/l10n/ja.php @@ -0,0 +1,71 @@ + " \"%s\" アプリは、このバージョンのownCloudと互換性がないためインストールできません。", +"No app name specified" => "アプリ名が未指定", +"Help" => "ヘルプ", +"Personal" => "個人", +"Settings" => "設定", +"Users" => "ユーザー", +"Admin" => "管理", +"Failed to upgrade \"%s\"." => "\"%s\" へのアップグレードに失敗しました。", +"Unknown filetype" => "不明なファイルタイプ", +"Invalid image" => "無効な画像", +"web services under your control" => "管理下のウェブサービス", +"ZIP download is turned off." => "ZIPダウンロードは無効です。", +"Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", +"Back to Files" => "ファイルに戻る", +"Selected files too large to generate zip file." => "選択したファイルはZIPファイルの生成には大きすぎます。", +"Please download the files separately in smaller chunks or kindly ask your administrator." => "少しずつに分けてファイルをダウンロードするか、管理者に問い合わせてください。", +"No source specified when installing app" => "アプリインストール時のソースが未指定", +"No href specified when installing app from http" => "アプリインストール時のhttpの URL が未指定", +"No path specified when installing app from local file" => "アプリインストール時のローカルファイルのパスが未指定", +"Archives of type %s are not supported" => "\"%s\"タイプのアーカイブ形式は未サポート", +"Failed to open archive when installing app" => "アプリをインストール中にアーカイブファイルを開けませんでした。", +"App does not provide an info.xml file" => "アプリにinfo.xmlファイルが入っていません", +"App can't be installed because of not allowed code in the App" => "アプリで許可されないコードが入っているのが原因でアプリがインストールできません", +"App can't be installed because it is not compatible with this version of ownCloud" => "アプリは、このバージョンのownCloudと互換性がないためインストールできません。", +"App can't be installed because it contains the true tag which is not allowed for non shipped apps" => "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストールできません。", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "info.xml/versionのバージョンがアプリストアのバージョンと合っていないため、アプリはインストールされません", +"App directory already exists" => "アプリディレクトリはすでに存在します", +"Can't create app folder. Please fix permissions. %s" => "アプリフォルダーを作成できませんでした。%s のパーミッションを修正してください。", +"Application is not enabled" => "アプリケーションは無効です", +"Authentication error" => "認証エラー", +"Token expired. Please reload page." => "トークンが無効になりました。ページを再読込してください。", +"Unknown user" => "不明なユーザー", +"Files" => "ファイル", +"Text" => "TTY TDD", +"Images" => "画像", +"%s enter the database username." => "%s のデータベースのユーザー名を入力してください。", +"%s enter the database name." => "%s のデータベース名を入力してください。", +"%s you may not use dots in the database name" => "%s ではデータベース名にドットを利用できないかもしれません。", +"MS SQL username and/or password not valid: %s" => "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s", +"You need to enter either an existing account or the administrator." => "既存のアカウントもしくは管理者のどちらかを入力する必要があります。", +"MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB のユーザー名及び/またはパスワードが無効", +"DB Error: \"%s\"" => "DBエラー: \"%s\"", +"Offending command was: \"%s\"" => "違反コマンド: \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB のユーザー '%s'@'localhost' はすでに存在します。", +"Drop this user from MySQL/MariaDB" => "MySQL/MariaDB からこのユーザーを削除", +"MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB のユーザー '%s'@'%%' はすでに存在します", +"Drop this user from MySQL/MariaDB." => "MySQL/MariaDB からこのユーザーを削除。", +"Oracle connection could not be established" => "Oracleへの接続が確立できませんでした。", +"Oracle username and/or password not valid" => "Oracleのユーザー名もしくはパスワードは有効ではありません", +"Offending command was: \"%s\", name: %s, password: %s" => "違反コマンド: \"%s\"、名前: %s、パスワード: %s", +"PostgreSQL username and/or password not valid" => "PostgreSQLのユーザー名もしくはパスワードは有効ではありません", +"Set an admin username." => "管理者のユーザー名を設定", +"Set an admin password." => "管理者のパスワードを設定。", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。", +"Please double check the installation guides." => "インストールガイドをよく確認してください。", +"%s shared »%s« with you" => "%sが あなたと »%s«を共有しました", +"Could not find category \"%s\"" => "カテゴリ \"%s\" が見つかりませんでした", +"seconds ago" => "数秒前", +"_%n minute ago_::_%n minutes ago_" => array("%n 分前"), +"_%n hour ago_::_%n hours ago_" => array("%n 時間前"), +"today" => "今日", +"yesterday" => "1日前", +"_%n day go_::_%n days ago_" => array("%n日前"), +"last month" => "1ヶ月前", +"_%n month ago_::_%n months ago_" => array("%nヶ月前"), +"last year" => "1年前", +"years ago" => "年前" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/el.php b/settings/l10n/el.php index e52149aa4b..c438fa0f99 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,7 +1,14 @@ "Αποθηκεύτηκαν", +"test email settings" => "δοκιμή ρυθμίσεων email", +"If you received this email, the settings seem to be correct." => "Εάν λάβατε αυτό το email, οι ρυθμίσεις δείχνουν να είναι σωστές.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Παρουσιάστηκε σφάλμα κατά την αποστολή e-mail. Παρακαλώ ελέγξτε τις ρυθμίσεις σας.", "Email sent" => "Το Email απεστάλη ", +"You need to set your user email before being able to send test emails." => "Πρέπει να ορίσετε το email του χρήστη πριν να είστε σε θέση να στείλετε δοκιμαστικά emails.", +"Send mode" => "Κατάσταση αποστολής", "Encryption" => "Κρυπτογράφηση", +"Authentication method" => "Μέθοδος πιστοποίησης", "Unable to load list from App Store" => "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", "Your full name has been changed." => "Το πλήρες όνομά σας άλλαξε.", @@ -24,7 +31,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Λάθος κωδικός ανάκτησης διαχειριστή. Παρακαλώ ελέγξτε τον κωδικό και δοκιμάστε ξανά.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Το βασικό πλαίσιο δεν υποστηρίζει αλλαγή κωδικού, αλλά το κλειδί κρυπτογράφησης των χρηστών ενημερώθηκε επιτυχώς.", "Unable to change password" => "Αδυναμία αλλαγής συνθηματικού", +"Sending..." => "Αποστέλεται...", "User Documentation" => "Τεκμηρίωση Χρήστη", +"Admin Documentation" => "Τεκμηρίωση Διαχειριστή", "Update to {appversion}" => "Ενημέρωση σε {appversion}", "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", @@ -37,6 +46,10 @@ $TRANSLATIONS = array( "Update" => "Ενημέρωση", "Updated" => "Ενημερώθηκε", "Select a profile picture" => "Επιλογή εικόνας προφίλ", +"Very weak password" => "Πολύ αδύναμο συνθηματικό", +"Weak password" => "Αδύναμο συνθηματικό", +"Good password" => "Καλό συνθηματικό", +"Strong password" => "Δυνατό συνθηματικό", "Decrypting files... Please wait, this can take some time." => "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο.", "deleted" => "διαγράφηκε", "undo" => "αναίρεση", @@ -57,6 +70,9 @@ $TRANSLATIONS = array( "Fatal issues only" => "Καίρια ζητήματα μόνο", "None" => "Τίποτα", "Login" => "Σύνδεση", +"NT LAN Manager" => "Διαχειριστης NT LAN", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Προειδοποίηση Ασφαλείας", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Έχετε πρόσβαση στο %s μέσω HTTP. Προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας ώστε να απαιτεί χρήση HTTPS αντ' αυτού.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος δεδομένων και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος δεδομένων να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο δεδομένων έξω από τη ρίζα του καταλόγου του διακομιστή.", @@ -94,9 +110,17 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL.", +"Email Server" => "Διακομιστής Email", +"This is used for sending out notifications." => "Χρησιμοποιείται για αποστολή ειδοποιήσεων.", +"From address" => "Από τη διεύθυνση", +"Authentication required" => "Απαιτείται πιστοποίηση", "Server address" => "Διεύθυνση διακομιστή", "Port" => "Θύρα", "Credentials" => "Πιστοποιητικά", +"SMTP Username" => "Όνομα χρήστη SMTP", +"SMTP Password" => "Συνθηματικό SMTP", +"Test email settings" => "Δοκιμή ρυθμίσεων email", +"Send email" => "Αποστολή email", "Log" => "Καταγραφές", "Log level" => "Επίπεδο καταγραφής", "More" => "Περισσότερα", @@ -106,7 +130,9 @@ $TRANSLATIONS = array( "Add your App" => "Προσθέστε Δικιά σας Εφαρμογή", "More Apps" => "Περισσότερες Εφαρμογές", "Select an App" => "Επιλέξτε μια Εφαρμογή", +"Documentation:" => "Τεκμηρίωση:", "See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", +"See application website" => "Δείτε την ιστοσελίδα της εφαρμογής", "-licensed by " => "Άδεια χρήσης από ", "Administrator Documentation" => "Τεκμηρίωση Διαχειριστή", "Online Documentation" => "Τεκμηρίωση στο Διαδίκτυο", @@ -125,6 +151,7 @@ $TRANSLATIONS = array( "Full Name" => "Πλήρες όνομα", "Email" => "Ηλεκτρονικό ταχυδρομείο", "Your email address" => "Η διεύθυνση ηλ. ταχυδρομείου σας", +"Fill in an email address to enable password recovery and receive notifications" => "Συμπληρώστε μια διεύθυνση email για να ενεργοποιήσετε την επαναφορά συνθηματικού και να λαμβάνετε ειδοποιήσεις", "Profile picture" => "Φωτογραφία προφίλ", "Upload new" => "Μεταφόρτωση νέου", "Select new from Files" => "Επιλογή νέου από τα Αρχεία", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index e63405a492..11c75ea1e0 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -2,9 +2,14 @@ $TRANSLATIONS = array( "Invalid value supplied for %s" => "Type de valeur METADATA invalide : \"%s\".", "Saved" => "Sauvegarder", +"test email settings" => "tester les paramètres d'e-mail", "If you received this email, the settings seem to be correct." => "Si vous recevez cet email, c'est que les paramètres sont corrects", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Une erreur est survenue lors de l'envoi de l'e-mail. Veuillez vérifier vos paramètres.", "Email sent" => "Email envoyé", +"You need to set your user email before being able to send test emails." => "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoyer des e-mails de test.", +"Send mode" => "Mode d'envoi", "Encryption" => "Chiffrement", +"Authentication method" => "Méthode d'authentification", "Unable to load list from App Store" => "Impossible de charger la liste depuis l'App Store", "Authentication error" => "Erreur d'authentification", "Your full name has been changed." => "Votre nom complet a été modifié.", @@ -27,7 +32,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Mot de passe administrateur de récupération de données invalide. Veuillez vérifier le mot de passe et essayer à nouveau.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "L'infrastructure d'arrière-plan ne supporte pas la modification de mot de passe, mais la clef de chiffrement des utilisateurs a été mise à jour avec succès.", "Unable to change password" => "Impossible de modifier le mot de passe", +"Sending..." => "Envoi en cours...", "User Documentation" => "Documentation utilisateur", +"Admin Documentation" => "Documentation administrateur", "Update to {appversion}" => "Mettre à jour vers {appversion}", "Disable" => "Désactiver", "Enable" => "Activer", @@ -40,6 +47,11 @@ $TRANSLATIONS = array( "Update" => "Mettre à jour", "Updated" => "Mise à jour effectuée avec succès", "Select a profile picture" => "Selectionner une photo de profil ", +"Very weak password" => "Mot de passe de très faible sécurité", +"Weak password" => "Mot de passe de faible sécurité", +"So-so password" => "Mot de passe de sécurité tout juste acceptable", +"Good password" => "Mot de passe de sécurité suffisante", +"Strong password" => "Mot de passe de forte sécurité", "Decrypting files... Please wait, this can take some time." => "Déchiffrement en cours... Cela peut prendre un certain temps.", "deleted" => "supprimé", "undo" => "annuler", @@ -60,6 +72,10 @@ $TRANSLATIONS = array( "Fatal issues only" => "Erreurs fatales uniquement", "None" => "Aucun", "Login" => "Connexion", +"Plain" => "En clair", +"NT LAN Manager" => "Gestionnaire du réseau NT", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Avertissement de sécurité", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Vous accédez à %s via HTTP. Nous vous recommandons fortement de configurer votre serveur pour forcer l'utilisation de HTTPS à la place.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre dossier de données et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de façon à ce que ce dossier de données ne soit plus accessible, ou bien de le déplacer à l'extérieur de la racine du serveur web.", @@ -97,9 +113,17 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Forcer HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou désactiver SSL.", +"Email Server" => "Serveur mail", +"This is used for sending out notifications." => "Ceci est utilisé pour l'envoi des notifications.", +"From address" => "Adresse source", +"Authentication required" => "Authentification requise", "Server address" => "Adresse du serveur", "Port" => "Port", "Credentials" => "Informations d'identification", +"SMTP Username" => "Nom d'utilisateur SMTP", +"SMTP Password" => "Mot de passe SMTP", +"Test email settings" => "Paramètres de test d'e-mail", +"Send email" => "Envoyer un e-mail", "Log" => "Log", "Log level" => "Niveau de log", "More" => "Plus", @@ -109,7 +133,9 @@ $TRANSLATIONS = array( "Add your App" => "Ajoutez votre application", "More Apps" => "Plus d'applications…", "Select an App" => "Sélectionner une Application", +"Documentation:" => "Documentation :", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", +"See application website" => "Voir le site web de l'application", "-licensed by " => "Distribué sous licence , par ", "Administrator Documentation" => "Documentation administrateur", "Online Documentation" => "Documentation en ligne", @@ -128,6 +154,7 @@ $TRANSLATIONS = array( "Full Name" => "Nom complet", "Email" => "Adresse mail", "Your email address" => "Votre adresse e-mail", +"Fill in an email address to enable password recovery and receive notifications" => "Saisir une adresse e-mail pour permettre la réinitialisation du mot de passe et la réception des notifications", "Profile picture" => "Photo de profil", "Upload new" => "Télécharger nouveau", "Select new from Files" => "Sélectionner un nouveau depuis les documents", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 1d62d07e48..181fd11f97 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -9,6 +9,7 @@ $TRANSLATIONS = array( "You need to set your user email before being able to send test emails." => "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio delle email.", "Send mode" => "Modalità di invio", "Encryption" => "Cifratura", +"Authentication method" => "Metodo di autenticazione", "Unable to load list from App Store" => "Impossibile caricare l'elenco dall'App Store", "Authentication error" => "Errore di autenticazione", "Your full name has been changed." => "Il tuo nome completo è stato cambiato.", diff --git a/settings/l10n/ja.php b/settings/l10n/ja.php new file mode 100644 index 0000000000..7a2802d588 --- /dev/null +++ b/settings/l10n/ja.php @@ -0,0 +1,187 @@ + "%s に提供された無効な値", +"Saved" => "保存されました", +"test email settings" => "eメール設定をテスト", +"If you received this email, the settings seem to be correct." => "このメールを受け取ったら、設定は正しいはずです。", +"A problem occurred while sending the e-mail. Please revisit your settings." => "メールの送信中に問題が発生しました。設定を再考してください。", +"Email sent" => "メールを送信しました", +"You need to set your user email before being able to send test emails." => "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。", +"Send mode" => "送信モード", +"Encryption" => "暗号化", +"Authentication method" => "認証方法", +"Unable to load list from App Store" => "アプリストアからリストをロードできません", +"Authentication error" => "認証エラー", +"Your full name has been changed." => "フルネームを変更しました。", +"Unable to change full name" => "フルネームを変更できません", +"Group already exists" => "グループはすでに存在します", +"Unable to add group" => "グループを追加できません", +"Email saved" => "メールアドレスを保存しました", +"Invalid email" => "無効なメールアドレス", +"Unable to delete group" => "グループを削除できません", +"Unable to delete user" => "ユーザーを削除できません", +"Language changed" => "言語が変更されました", +"Invalid request" => "不正なリクエスト", +"Admins can't remove themself from the admin group" => "管理者は自身を管理者グループから削除できません。", +"Unable to add user to group %s" => "ユーザーをグループ %s に追加できません", +"Unable to remove user from group %s" => "ユーザーをグループ %s から削除できません", +"Couldn't update app." => "アプリをアップデートできませんでした。", +"Wrong password" => "無効なパスワード", +"No user supplied" => "ユーザーが指定されていません", +"Please provide an admin recovery password, otherwise all user data will be lost" => "リカバリ用の管理者パスワードを入力してください。そうでない場合は、全ユーザーのデータが失われます。", +"Wrong admin recovery password. Please check the password and try again." => "リカバリ用の管理者パスワードが間違っています。パスワードを確認して再度実行してください。", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "バックエンドはパスワード変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。", +"Unable to change password" => "パスワードを変更できません", +"Sending..." => "送信中…", +"User Documentation" => "ユーザードキュメント", +"Admin Documentation" => "管理者ドキュメント", +"Update to {appversion}" => "{appversion} にアップデート", +"Disable" => "無効", +"Enable" => "有効にする", +"Please wait...." => "しばらくお待ちください。", +"Error while disabling app" => "アプリ無効化中にエラーが発生", +"Error while enabling app" => "アプリを有効にする際にエラーが発生", +"Updating...." => "更新中....", +"Error while updating app" => "アプリの更新中にエラーが発生", +"Error" => "エラー", +"Update" => "アップデート", +"Updated" => "アップデート済み", +"Select a profile picture" => "プロファイル画像を選択", +"Very weak password" => "非常に弱いパスワード", +"Weak password" => "弱いパスワード", +"So-so password" => "まずまずのパスワード", +"Good password" => "良好なパスワード", +"Strong password" => "強いパスワード", +"Decrypting files... Please wait, this can take some time." => "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。", +"deleted" => "削除", +"undo" => "元に戻す", +"Unable to remove user" => "ユーザーを削除できません", +"Groups" => "グループ", +"Group Admin" => "グループ管理者", +"Delete" => "削除", +"add group" => "グループを追加", +"A valid username must be provided" => "有効なユーザー名を指定する必要があります", +"Error creating user" => "ユーザー作成エラー", +"A valid password must be provided" => "有効なパスワードを指定する必要があります", +"Warning: Home directory for user \"{user}\" already exists" => "警告: ユーザー \"{user}\" のホームディレクトリはすでに存在します", +"__language_name__" => "Japanese (日本語)", +"Everything (fatal issues, errors, warnings, info, debug)" => "すべて (致命的な問題、エラー、警告、情報、デバッグ)", +"Info, warnings, errors and fatal issues" => "情報、警告、エラー、致命的な問題", +"Warnings, errors and fatal issues" => "警告、エラー、致命的な問題", +"Errors and fatal issues" => "エラー、致命的な問題", +"Fatal issues only" => "致命的な問題のみ", +"None" => "なし", +"Login" => "ログイン", +"Plain" => "平文", +"NT LAN Manager" => "NT LAN マネージャー", +"SSL" => "SSL", +"TLS" => "TLS", +"Security Warning" => "セキュリティ警告", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "HTTP経由で %s にアクセスしています。HTTPSを使用するようサーバーを設定することを強くおすすめします。", +"Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。", +"Setup Warning" => "セットアップ警告", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。", +"Please double check the installation guides." => "installation guidesをもう一度チェックするようにお願いいたします。", +"Module 'fileinfo' missing" => "モジュール 'fileinfo' が見つかりません", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", +"Your PHP version is outdated" => "PHPバーションが古くなっています。", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHPバーションが古くなっています。古いバージョンには既知の問題があるため、5.3.8以降のバージョンにアップデートすることを強く推奨します。このインストール状態では正常に動作しない可能性があります。", +"Locale not working" => "ロケールが動作していません", +"System locale can not be set to a one which supports UTF-8." => "システムロケールを UTF-8 をサポートするロケールに設定できません。", +"This means that there might be problems with certain characters in file names." => "これは、ファイル名の特定の文字に問題があることを意味しています。", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。", +"Internet connection not working" => "インターネット接続が動作していません", +"This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。", +"Cron" => "Cron", +"Execute one task with each page loaded" => "各ページの読み込み時にタスクを実行する", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されています", +"Use systems cron service to call the cron.php file every 15 minutes." => "システムのcronサービスを利用して15分ごとにcron.phpファイルを実行します。", +"Sharing" => "共有", +"Enable Share API" => "共有APIを有効にする", +"Allow apps to use the Share API" => "アプリからの共有APIの利用を許可する", +"Allow links" => "リンクを許可する", +"Allow users to share items to the public with links" => "ユーザーがリンクによりアイテムを公開することを許可する", +"Allow public uploads" => "パブリックなアップロードを許可", +"Allow users to enable others to upload into their publicly shared folders" => "公開している共有フォルダーへのアップロードを共有しているメンバーにも許可", +"Allow resharing" => "再共有を許可する", +"Allow users to share items shared with them again" => "ユーザーが共有しているアイテムの再共有を許可する", +"Allow users to share with anyone" => "ユーザーに誰とでも共有することを許可する", +"Allow users to only share with users in their groups" => "ユーザーにグループ内のユーザーとのみ共有を許可する", +"Allow mail notification" => "メール通知を許可", +"Allow user to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザーに許可する", +"Security" => "セキュリティ", +"Enforce HTTPS" => "常にHTTPSを使用する", +"Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化します。", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。", +"Email Server" => "メールサーバー", +"This is used for sending out notifications." => "これは通知の送信に使われます。", +"From address" => "アドレスから", +"Authentication required" => "要求される認証", +"Server address" => "サーバーアドレス", +"Port" => "ポート", +"Credentials" => "資格情報", +"SMTP Username" => "SMTP ユーザー名", +"SMTP Password" => "SMTP パスワード", +"Test email settings" => "メールテスト設定", +"Send email" => "メールを送信", +"Log" => "ログ", +"Log level" => "ログレベル", +"More" => "もっと見る", +"Less" => "閉じる", +"Version" => "バージョン", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。", +"Add your App" => "アプリを追加", +"More Apps" => "さらにアプリを表示", +"Select an App" => "アプリを選択してください", +"Documentation:" => "ドキュメント:", +"See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", +"See application website" => "アプリケーションのウェブサイトを見る", +"-licensed by " => "-ライセンス: ", +"Administrator Documentation" => "管理者ドキュメント", +"Online Documentation" => "オンラインドキュメント", +"Forum" => "フォーラム", +"Bugtracker" => "バグトラッカー", +"Commercial Support" => "商用サポート", +"Get the apps to sync your files" => "ファイルを同期するためのアプリを取得", +"Show First Run Wizard again" => "初回ウィザードを再表示する", +"You have used %s of the available %s" => "現在、%s / %s を利用しています", +"Password" => "パスワード", +"Your password was changed" => "パスワードを変更しました", +"Unable to change your password" => "パスワードを変更することができません", +"Current password" => "Current password", +"New password" => "新しいパスワードを入力", +"Change password" => "パスワードを変更", +"Full Name" => "名前", +"Email" => "メール", +"Your email address" => "あなたのメールアドレス", +"Fill in an email address to enable password recovery and receive notifications" => "パスワードの回復を有効にし、通知を受け取るにはメールアドレスを入力してください", +"Profile picture" => "プロフィール写真", +"Upload new" => "新規にアップロード", +"Select new from Files" => "ファイルから新規に選択", +"Remove image" => "画像を削除", +"Either png or jpg. Ideally square but you will be able to crop it." => "png と jpg のいずれか。正方形が理想ですが、切り取って加工することも可能です。", +"Your avatar is provided by your original account." => "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。", +"Cancel" => "キャンセル", +"Choose as profile image" => "プロファイル画像として選択", +"Language" => "言語", +"Help translate" => "翻訳に協力する", +"WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "WebDAV 経由でファイルにアクセス するにはこのアドレスを利用してください", +"The encryption app is no longer enabled, please decrypt all your files" => "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください", +"Log-in password" => "ログインパスワード", +"Decrypt all Files" => "すべてのファイルを複合する", +"Login Name" => "ログイン名", +"Create" => "作成", +"Admin Recovery Password" => "管理者リカバリパスワード", +"Enter the recovery password in order to recover the users files during password change" => "パスワード変更時のユーザーのファイルを回復するため、リカバリパスワードを入力してください", +"Default Storage" => "デフォルトストレージ", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "ストレージの割り当てを入力してください (例: \"512MB\" や \"12 GB\")", +"Unlimited" => "無制限", +"Other" => "その他", +"Username" => "ユーザー名", +"Storage" => "ストレージ", +"change full name" => "フルネームを変更", +"set new password" => "新しいパスワードを設定", +"Default" => "デフォルト" +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 0291d7aa1e..ff44583504 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -37,6 +37,11 @@ $TRANSLATIONS = array( "Update" => "Aktualizuj", "Updated" => "Zaktualizowano", "Select a profile picture" => "Wybierz zdjęcie profilu", +"Very weak password" => "Bardzo słabe hasło", +"Weak password" => "Słabe hasło", +"So-so password" => "Mało skomplikowane hasło", +"Good password" => "Dobre hasło", +"Strong password" => "Mocne hasło", "Decrypting files... Please wait, this can take some time." => "Odszyfrowuje pliki... Proszę czekać, to może zająć jakiś czas.", "deleted" => "usunięto", "undo" => "cofnij", From 49deb752cf778ac932d536daa31a229cfdae43ea Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 13 Mar 2014 17:20:51 -0400 Subject: [PATCH 158/333] [tx-robot] updated from transifex --- l10n/ja_JP/core.po | 799 --------------------------- l10n/ja_JP/files.po | 424 --------------- l10n/ja_JP/files_encryption.po | 205 ------- l10n/ja_JP/files_external.po | 129 ----- l10n/ja_JP/files_sharing.po | 75 --- l10n/ja_JP/files_trashbin.po | 68 --- l10n/ja_JP/files_versions.po | 44 -- l10n/ja_JP/lib.po | 339 ------------ l10n/ja_JP/settings.po | 813 ---------------------------- l10n/ja_JP/user_ldap.po | 525 ------------------ l10n/ja_JP/user_webdavauth.po | 37 -- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 23 files changed, 12 insertions(+), 3470 deletions(-) delete mode 100644 l10n/ja_JP/core.po delete mode 100644 l10n/ja_JP/files.po delete mode 100644 l10n/ja_JP/files_encryption.po delete mode 100644 l10n/ja_JP/files_external.po delete mode 100644 l10n/ja_JP/files_sharing.po delete mode 100644 l10n/ja_JP/files_trashbin.po delete mode 100644 l10n/ja_JP/files_versions.po delete mode 100644 l10n/ja_JP/lib.po delete mode 100644 l10n/ja_JP/settings.po delete mode 100644 l10n/ja_JP/user_ldap.po delete mode 100644 l10n/ja_JP/user_webdavauth.po diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po deleted file mode 100644 index 2225efb5db..0000000000 --- a/l10n/ja_JP/core.po +++ /dev/null @@ -1,799 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi , 2013-2014 -# plazmism , 2013-2014 -# iLikeIT , 2013 -# Koichi MATSUMOTO , 2013 -# kuromabo , 2014 -# tt yn , 2013-2014 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:20+0000\n" -"Last-Translator: plazmism \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/share.php:112 ajax/share.php:154 -#, php-format -msgid "Couldn't send mail to following users: %s " -msgstr "次のユーザーにメールを送信できませんでした: %s" - -#: ajax/update.php:11 -msgid "Turned on maintenance mode" -msgstr "メンテナンスモードがオンになりました" - -#: ajax/update.php:14 -msgid "Turned off maintenance mode" -msgstr "メンテナンスモードがオフになりました" - -#: ajax/update.php:17 -msgid "Updated database" -msgstr "データベース更新完了" - -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "ファイルキャッシュを更新しています、しばらく掛かる恐れがあります..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "ファイルキャッシュ更新完了" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% 完了 ..." - -#: avatar/controller.php:62 -msgid "No image or file provided" -msgstr "画像もしくはファイルが提供されていません" - -#: avatar/controller.php:81 -msgid "Unknown filetype" -msgstr "不明なファイルタイプ" - -#: avatar/controller.php:85 -msgid "Invalid image" -msgstr "無効な画像" - -#: avatar/controller.php:115 avatar/controller.php:142 -msgid "No temporary profile picture available, try again" -msgstr "一時的なプロファイル用画像が利用できません。もう一度試してください" - -#: avatar/controller.php:135 -msgid "No crop data provided" -msgstr "クロップデータは提供されません" - -#: js/config.php:36 -msgid "Sunday" -msgstr "日" - -#: js/config.php:37 -msgid "Monday" -msgstr "月" - -#: js/config.php:38 -msgid "Tuesday" -msgstr "火" - -#: js/config.php:39 -msgid "Wednesday" -msgstr "水" - -#: js/config.php:40 -msgid "Thursday" -msgstr "木" - -#: js/config.php:41 -msgid "Friday" -msgstr "金" - -#: js/config.php:42 -msgid "Saturday" -msgstr "土" - -#: js/config.php:47 -msgid "January" -msgstr "1月" - -#: js/config.php:48 -msgid "February" -msgstr "2月" - -#: js/config.php:49 -msgid "March" -msgstr "3月" - -#: js/config.php:50 -msgid "April" -msgstr "4月" - -#: js/config.php:51 -msgid "May" -msgstr "5月" - -#: js/config.php:52 -msgid "June" -msgstr "6月" - -#: js/config.php:53 -msgid "July" -msgstr "7月" - -#: js/config.php:54 -msgid "August" -msgstr "8月" - -#: js/config.php:55 -msgid "September" -msgstr "9月" - -#: js/config.php:56 -msgid "October" -msgstr "10月" - -#: js/config.php:57 -msgid "November" -msgstr "11月" - -#: js/config.php:58 -msgid "December" -msgstr "12月" - -#: js/js.js:458 -msgid "Settings" -msgstr "設定" - -#: js/js.js:496 -msgid "Saving..." -msgstr "保存中..." - -#: js/js.js:995 -msgid "seconds ago" -msgstr "数秒前" - -#: js/js.js:996 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分前" - -#: js/js.js:997 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 時間前" - -#: js/js.js:998 -msgid "today" -msgstr "今日" - -#: js/js.js:999 -msgid "yesterday" -msgstr "昨日" - -#: js/js.js:1000 -msgid "%n day ago" -msgid_plural "%n days ago" -msgstr[0] "%n日前" - -#: js/js.js:1001 -msgid "last month" -msgstr "1ヶ月前" - -#: js/js.js:1002 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%nヶ月前" - -#: js/js.js:1003 -msgid "months ago" -msgstr "数ヶ月前" - -#: js/js.js:1004 -msgid "last year" -msgstr "1年前" - -#: js/js.js:1005 -msgid "years ago" -msgstr "数年前" - -#: js/oc-dialogs.js:123 -msgid "Choose" -msgstr "選択" - -#: js/oc-dialogs.js:146 -msgid "Error loading file picker template: {error}" -msgstr "ファイル選択テンプレートの読み込みエラー: {error}" - -#: js/oc-dialogs.js:172 -msgid "Yes" -msgstr "はい" - -#: js/oc-dialogs.js:182 -msgid "No" -msgstr "いいえ" - -#: js/oc-dialogs.js:199 -msgid "Ok" -msgstr "OK" - -#: js/oc-dialogs.js:219 -msgid "Error loading message template: {error}" -msgstr "メッセージテンプレートの読み込みエラー: {error}" - -#: js/oc-dialogs.js:347 -msgid "{count} file conflict" -msgid_plural "{count} file conflicts" -msgstr[0] "{count} ファイルが競合" - -#: js/oc-dialogs.js:361 -msgid "One file conflict" -msgstr "1ファイルが競合" - -#: js/oc-dialogs.js:367 -msgid "Which files do you want to keep?" -msgstr "どちらのファイルを保持したいですか?" - -#: js/oc-dialogs.js:368 -msgid "" -"If you select both versions, the copied file will have a number added to its" -" name." -msgstr "両方のバージョンを選択した場合は、ファイル名の後ろに数字を追加したファイルのコピーを作成します。" - -#: js/oc-dialogs.js:376 -msgid "Cancel" -msgstr "キャンセル" - -#: js/oc-dialogs.js:386 -msgid "Continue" -msgstr "続ける" - -#: js/oc-dialogs.js:433 js/oc-dialogs.js:446 -msgid "(all selected)" -msgstr "(全て選択)" - -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 -msgid "({count} selected)" -msgstr "({count} 選択)" - -#: js/oc-dialogs.js:457 -msgid "Error loading file exists template" -msgstr "既存ファイルのテンプレートの読み込みエラー" - -#: js/setup.js:84 -msgid "Very weak password" -msgstr "非常に弱いパスワード" - -#: js/setup.js:85 -msgid "Weak password" -msgstr "弱いパスワード" - -#: js/setup.js:86 -msgid "So-so password" -msgstr "まずまずのパスワード" - -#: js/setup.js:87 -msgid "Good password" -msgstr "良好なパスワード" - -#: js/setup.js:88 -msgid "Strong password" -msgstr "強いパスワード" - -#: js/share.js:51 js/share.js:66 js/share.js:106 -msgid "Shared" -msgstr "共有中" - -#: js/share.js:109 -msgid "Share" -msgstr "共有" - -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 -msgid "Error" -msgstr "エラー" - -#: js/share.js:160 js/share.js:755 -msgid "Error while sharing" -msgstr "共有でエラー発生" - -#: js/share.js:171 -msgid "Error while unsharing" -msgstr "共有解除でエラー発生" - -#: js/share.js:178 -msgid "Error while changing permissions" -msgstr "権限変更でエラー発生" - -#: js/share.js:188 -msgid "Shared with you and the group {group} by {owner}" -msgstr "あなたと {owner} のグループ {group} で共有中" - -#: js/share.js:190 -msgid "Shared with you by {owner}" -msgstr "{owner} と共有中" - -#: js/share.js:214 -msgid "Share with user or group …" -msgstr "ユーザーもしくはグループと共有 ..." - -#: js/share.js:220 -msgid "Share link" -msgstr "URLで共有" - -#: js/share.js:223 -msgid "Password protect" -msgstr "パスワード保護" - -#: js/share.js:225 templates/installation.php:60 templates/login.php:40 -msgid "Password" -msgstr "パスワード" - -#: js/share.js:230 -msgid "Allow Public Upload" -msgstr "アップロードを許可" - -#: js/share.js:234 -msgid "Email link to person" -msgstr "メールリンク" - -#: js/share.js:235 -msgid "Send" -msgstr "送信" - -#: js/share.js:240 -msgid "Set expiration date" -msgstr "有効期限を設定" - -#: js/share.js:241 -msgid "Expiration date" -msgstr "有効期限" - -#: js/share.js:277 -msgid "Share via email:" -msgstr "メール経由で共有:" - -#: js/share.js:280 -msgid "No people found" -msgstr "ユーザーが見つかりません" - -#: js/share.js:324 js/share.js:363 -msgid "group" -msgstr "グループ" - -#: js/share.js:335 -msgid "Resharing is not allowed" -msgstr "再共有は許可されていません" - -#: js/share.js:379 -msgid "Shared in {item} with {user}" -msgstr "{item} 内で {user} と共有中" - -#: js/share.js:401 -msgid "Unshare" -msgstr "共有解除" - -#: js/share.js:409 -msgid "notify by email" -msgstr "メールで通知" - -#: js/share.js:412 -msgid "can edit" -msgstr "編集を許可" - -#: js/share.js:414 -msgid "access control" -msgstr "アクセス権限" - -#: js/share.js:417 -msgid "create" -msgstr "作成" - -#: js/share.js:420 -msgid "update" -msgstr "アップデート" - -#: js/share.js:423 -msgid "delete" -msgstr "削除" - -#: js/share.js:426 -msgid "share" -msgstr "共有" - -#: js/share.js:698 -msgid "Password protected" -msgstr "パスワード保護" - -#: js/share.js:711 -msgid "Error unsetting expiration date" -msgstr "有効期限の未設定エラー" - -#: js/share.js:723 -msgid "Error setting expiration date" -msgstr "有効期限の設定でエラー発生" - -#: js/share.js:742 -msgid "Sending ..." -msgstr "送信中..." - -#: js/share.js:753 -msgid "Email sent" -msgstr "メールを送信しました" - -#: js/share.js:777 -msgid "Warning" -msgstr "警告" - -#: js/tags.js:4 -msgid "The object type is not specified." -msgstr "オブジェクトタイプが指定されていません。" - -#: js/tags.js:13 -msgid "Enter new" -msgstr "新規に入力" - -#: js/tags.js:27 -msgid "Delete" -msgstr "削除" - -#: js/tags.js:31 -msgid "Add" -msgstr "追加" - -#: js/tags.js:39 -msgid "Edit tags" -msgstr "タグを編集" - -#: js/tags.js:57 -msgid "Error loading dialog template: {error}" -msgstr "メッセージテンプレートの読み込みエラー: {error}" - -#: js/tags.js:261 -msgid "No tags selected for deletion." -msgstr "削除するタグが選択されていません。" - -#: js/update.js:8 -msgid "Please reload the page." -msgstr "ページをリロードしてください。" - -#: js/update.js:17 -msgid "" -"The update was unsuccessful. Please report this issue to the ownCloud " -"community." -msgstr "アップデートに失敗しました。この問題を ownCloud community にレポートしてください。" - -#: js/update.js:21 -msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "アップデートに成功しました。今すぐownCloudにリダイレクトします。" - -#: lostpassword/controller.php:70 -#, php-format -msgid "%s password reset" -msgstr "%s パスワードリセット" - -#: lostpassword/controller.php:72 -msgid "" -"A problem has occurred whilst sending the email, please contact your " -"administrator." -msgstr "メールの送信中に問題が発生しました。管理者に問い合わせください。" - -#: lostpassword/templates/email.php:2 -msgid "Use the following link to reset your password: {link}" -msgstr "パスワードをリセットするには次のリンクをクリックしてください: {link}" - -#: lostpassword/templates/lostpassword.php:7 -msgid "" -"The link to reset your password has been sent to your email.
If you do " -"not receive it within a reasonable amount of time, check your spam/junk " -"folders.
If it is not there ask your local administrator ." -msgstr "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信できない場合は、スパム/迷惑メールフォルダーを確認してください。
もしそこにもない場合は、管理者に問い合わせてください。" - -#: lostpassword/templates/lostpassword.php:15 -msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "リクエストに失敗しました!
あなたのメール/ユーザー名が正しいことを確認しましたか?" - -#: lostpassword/templates/lostpassword.php:18 -msgid "You will receive a link to reset your password via Email." -msgstr "メールでパスワードをリセットするリンクが届きます。" - -#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 -#: templates/login.php:32 -msgid "Username" -msgstr "ユーザー名" - -#: lostpassword/templates/lostpassword.php:25 -msgid "" -"Your files are encrypted. If you haven't enabled the recovery key, there " -"will be no way to get your data back after your password is reset. If you " -"are not sure what to do, please contact your administrator before you " -"continue. Do you really want to continue?" -msgstr "ファイルが暗号化されています。リカバリキーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?" - -#: lostpassword/templates/lostpassword.php:27 -msgid "Yes, I really want to reset my password now" -msgstr "はい、今すぐパスワードをリセットします。" - -#: lostpassword/templates/lostpassword.php:30 -msgid "Reset" -msgstr "リセット" - -#: lostpassword/templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "あなたのパスワードはリセットされました。" - -#: lostpassword/templates/resetpassword.php:5 -msgid "To login page" -msgstr "ログインページへ戻る" - -#: lostpassword/templates/resetpassword.php:8 -msgid "New password" -msgstr "新しいパスワードを入力" - -#: lostpassword/templates/resetpassword.php:11 -msgid "Reset password" -msgstr "パスワードをリセット" - -#: strings.php:5 -msgid "Personal" -msgstr "個人" - -#: strings.php:6 -msgid "Users" -msgstr "ユーザー" - -#: strings.php:7 templates/layout.user.php:116 -msgid "Apps" -msgstr "アプリ" - -#: strings.php:8 -msgid "Admin" -msgstr "管理" - -#: strings.php:9 -msgid "Help" -msgstr "ヘルプ" - -#: tags/controller.php:22 -msgid "Error loading tags" -msgstr "タグの読み込みエラー" - -#: tags/controller.php:48 -msgid "Tag already exists" -msgstr "タグはすでに存在します" - -#: tags/controller.php:64 -msgid "Error deleting tag(s)" -msgstr "タグの削除エラー" - -#: tags/controller.php:75 -msgid "Error tagging" -msgstr "タグの付与エラー" - -#: tags/controller.php:86 -msgid "Error untagging" -msgstr "タグの解除エラー" - -#: tags/controller.php:97 -msgid "Error favoriting" -msgstr "お気に入りに追加エラー" - -#: tags/controller.php:108 -msgid "Error unfavoriting" -msgstr "お気に入りから削除エラー" - -#: templates/403.php:12 -msgid "Access forbidden" -msgstr "アクセスが禁止されています" - -#: templates/404.php:15 -msgid "Cloud not found" -msgstr "見つかりません" - -#: templates/altmail.php:2 -#, php-format -msgid "" -"Hey there,\n" -"\n" -"just letting you know that %s shared %s with you.\n" -"View it: %s\n" -"\n" -msgstr "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n" - -#: templates/altmail.php:4 templates/mail.php:17 -#, php-format -msgid "The share will expire on %s." -msgstr "共有は %s で有効期限が切れます。" - -#: templates/altmail.php:7 templates/mail.php:20 -msgid "Cheers!" -msgstr "それでは!" - -#: templates/installation.php:25 templates/installation.php:32 -#: templates/installation.php:39 -msgid "Security Warning" -msgstr "セキュリティ警告" - -#: templates/installation.php:26 -msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。" - -#: templates/installation.php:27 -#, php-format -msgid "Please update your PHP installation to use %s securely." -msgstr "%s を安全に利用するため、インストールされているPHPをアップデートしてください。" - -#: templates/installation.php:33 -msgid "" -"No secure random number generator is available, please enable the PHP " -"OpenSSL extension." -msgstr "セキュアな乱数生成器が利用可能ではありません。PHPのOpenSSL拡張を有効にしてください。" - -#: templates/installation.php:34 -msgid "" -"Without a secure random number generator an attacker may be able to predict " -"password reset tokens and take over your account." -msgstr "セキュアな乱数生成器が無い場合、攻撃者がパスワードリセットのトークンを予測してアカウントを乗っ取られる可能性があります。" - -#: templates/installation.php:40 -msgid "" -"Your data directory and files are probably accessible from the internet " -"because the .htaccess file does not work." -msgstr ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。" - -#: templates/installation.php:42 -#, php-format -msgid "" -"For information how to properly configure your server, please see the documentation." -msgstr "サーバーを適正に設定する情報は、こちらのドキュメントを参照してください。" - -#: templates/installation.php:48 -msgid "Create an admin account" -msgstr "管理者アカウントを作成してください" - -#: templates/installation.php:70 -msgid "Storage & database" -msgstr "ストレージとデータベース" - -#: templates/installation.php:77 -msgid "Data folder" -msgstr "データフォルダー" - -#: templates/installation.php:90 -msgid "Configure the database" -msgstr "データベースを設定してください" - -#: templates/installation.php:94 -msgid "will be used" -msgstr "が使用されます" - -#: templates/installation.php:109 -msgid "Database user" -msgstr "データベースのユーザー名" - -#: templates/installation.php:118 -msgid "Database password" -msgstr "データベースのパスワード" - -#: templates/installation.php:123 -msgid "Database name" -msgstr "データベース名" - -#: templates/installation.php:132 -msgid "Database tablespace" -msgstr "データベースの表領域" - -#: templates/installation.php:140 -msgid "Database host" -msgstr "データベースのホスト名" - -#: templates/installation.php:150 -msgid "Finish setup" -msgstr "セットアップを完了します" - -#: templates/installation.php:150 -msgid "Finishing …" -msgstr "作業を完了しています ..." - -#: templates/layout.user.php:40 -msgid "" -"This application requires JavaScript to be enabled for correct operation. " -"Please enable " -"JavaScript and re-load this interface." -msgstr "このアプリケーションを使用するにはJavaScriptが必要です。\nJavaScriptを有効にし、インターフェースを更新してください。 " - -#: templates/layout.user.php:44 -#, php-format -msgid "%s is available. Get more information on how to update." -msgstr "%s が利用可能です。アップデート方法について詳細情報を確認してください。" - -#: templates/layout.user.php:74 templates/singleuser.user.php:8 -msgid "Log out" -msgstr "ログアウト" - -#: templates/login.php:9 -msgid "Automatic logon rejected!" -msgstr "自動ログインは拒否されました!" - -#: templates/login.php:10 -msgid "" -"If you did not change your password recently, your account may be " -"compromised!" -msgstr "最近パスワードを変更していない場合、あなたのアカウントが危険にさらされている可能性があります!" - -#: templates/login.php:12 -msgid "Please change your password to secure your account again." -msgstr "アカウント保護のため、パスワードを再度変更してください。" - -#: templates/login.php:17 -msgid "Server side authentication failed!" -msgstr "サーバーサイドの認証に失敗しました!" - -#: templates/login.php:18 -msgid "Please contact your administrator." -msgstr "管理者に問い合わせてください。" - -#: templates/login.php:46 -msgid "Lost your password?" -msgstr "パスワードを忘れましたか?" - -#: templates/login.php:51 -msgid "remember" -msgstr "パスワードを保存" - -#: templates/login.php:54 -msgid "Log in" -msgstr "ログイン" - -#: templates/login.php:60 -msgid "Alternative Logins" -msgstr "代替ログイン" - -#: templates/mail.php:15 -#, php-format -msgid "" -"Hey there,

just letting you know that %s shared %s " -"with you.
View it!

" -msgstr "こんにちは、

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

" - -#: templates/singleuser.user.php:3 -msgid "This ownCloud instance is currently in single user mode." -msgstr "このownCloudインスタンスは、現在シングルユーザーモードです。" - -#: templates/singleuser.user.php:4 -msgid "This means only administrators can use the instance." -msgstr "これは、管理者のみがインスタンスを利用できることを意味しています。" - -#: templates/singleuser.user.php:5 templates/update.user.php:5 -msgid "" -"Contact your system administrator if this message persists or appeared " -"unexpectedly." -msgstr "このメッセージが引き続きもしくは予期せず現れる場合は、システム管理者に連絡してください。" - -#: templates/singleuser.user.php:7 templates/update.user.php:6 -msgid "Thank you for your patience." -msgstr "しばらくお待ちください。" - -#: templates/update.admin.php:3 -#, php-format -msgid "Updating ownCloud to version %s, this may take a while." -msgstr "ownCloud をバージョン %s に更新しています、しばらくお待ちください。" - -#: templates/update.user.php:3 -msgid "" -"This ownCloud instance is currently being updated, which may take a while." -msgstr "この ownCloud インスタンスは現在アップデート中のため、しばらく時間がかかります。" - -#: templates/update.user.php:4 -msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "ownCloud を続けて利用するには、しばらくした後でページをリロードしてください。" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po deleted file mode 100644 index 9ab56aff55..0000000000 --- a/l10n/ja_JP/files.po +++ /dev/null @@ -1,424 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi , 2013 -# plazmism , 2013-2014 -# iLikeIT , 2013 -# Koichi MATSUMOTO , 2013 -# kuromabo , 2014 -# pabook , 2013 -# tt yn , 2013-2014 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" -"Last-Translator: plazmism \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/move.php:17 -#, php-format -msgid "Could not move %s - File with this name already exists" -msgstr "%s を移動できませんでした ― この名前のファイルはすでに存在します" - -#: ajax/move.php:27 ajax/move.php:30 -#, php-format -msgid "Could not move %s" -msgstr "%s を移動できませんでした" - -#: ajax/newfile.php:57 js/files.js:98 -msgid "File name cannot be empty." -msgstr "ファイル名を空にすることはできません。" - -#: ajax/newfile.php:62 -#, php-format -msgid "\"%s\" is an invalid file name." -msgstr "\"%s\" は無効なファイル名です。" - -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 -msgid "" -"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " -"allowed." -msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" - -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 -#: lib/app.php:65 -msgid "The target folder has been moved or deleted." -msgstr "目標のフォルダは移動されたか、削除されました。" - -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 -#, php-format -msgid "" -"The name %s is already used in the folder %s. Please choose a different " -"name." -msgstr "%s はフォルダー %s ですでに使われています。別の名前を選択してください。" - -#: ajax/newfile.php:96 -msgid "Not a valid source" -msgstr "有効なソースではありません" - -#: ajax/newfile.php:101 -msgid "" -"Server is not allowed to open URLs, please check the server configuration" -msgstr "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。" - -#: ajax/newfile.php:118 -#, php-format -msgid "Error while downloading %s to %s" -msgstr "%s から %s へのダウンロードエラー" - -#: ajax/newfile.php:155 -msgid "Error when creating the file" -msgstr "ファイルの生成エラー" - -#: ajax/newfolder.php:21 -msgid "Folder name cannot be empty." -msgstr "フォルダー名は空にできません" - -#: ajax/newfolder.php:65 -msgid "Error when creating the folder" -msgstr "フォルダーの生成エラー" - -#: ajax/upload.php:19 ajax/upload.php:53 -msgid "Unable to set upload directory." -msgstr "アップロードディレクトリを設定できません。" - -#: ajax/upload.php:29 -msgid "Invalid Token" -msgstr "無効なトークン" - -#: ajax/upload.php:67 -msgid "No file was uploaded. Unknown error" -msgstr "ファイルは何もアップロードされていません。不明なエラー" - -#: ajax/upload.php:74 -msgid "There is no error, the file uploaded with success" -msgstr "エラーはありません。ファイルのアップロードは成功しました" - -#: ajax/upload.php:75 -msgid "" -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" - -#: ajax/upload.php:77 -msgid "" -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " -"the HTML form" -msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" - -#: ajax/upload.php:78 -msgid "The uploaded file was only partially uploaded" -msgstr "アップロードファイルは一部分だけアップロードされました" - -#: ajax/upload.php:79 -msgid "No file was uploaded" -msgstr "ファイルはアップロードされませんでした" - -#: ajax/upload.php:80 -msgid "Missing a temporary folder" -msgstr "一時保存フォルダーが見つかりません" - -#: ajax/upload.php:81 -msgid "Failed to write to disk" -msgstr "ディスクへの書き込みに失敗しました" - -#: ajax/upload.php:99 -msgid "Not enough storage available" -msgstr "ストレージに十分な空き容量がありません" - -#: ajax/upload.php:156 -msgid "Upload failed. Could not find uploaded file" -msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" - -#: ajax/upload.php:166 -msgid "Upload failed. Could not get file info." -msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" - -#: ajax/upload.php:185 -msgid "Invalid directory." -msgstr "無効なディレクトリです。" - -#: appinfo/app.php:11 js/filelist.js:14 -msgid "Files" -msgstr "ファイル" - -#: js/file-upload.js:247 -msgid "Unable to upload {filename} as it is a directory or has 0 bytes" -msgstr "ディレクトリもしくは0バイトのため {filename} をアップロードできません" - -#: js/file-upload.js:258 -msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "合計ファイルサイズ {size1} はアップロード制限 {size2} を超過しています。" - -#: js/file-upload.js:268 -msgid "" -"Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "空き容量が十分でなく、 {size1} をアップロードしていますが、 {size2} しか残っていません。" - -#: js/file-upload.js:338 -msgid "Upload cancelled." -msgstr "アップロードはキャンセルされました。" - -#: js/file-upload.js:383 -msgid "Could not get result from server." -msgstr "サーバーから結果を取得できませんでした。" - -#: js/file-upload.js:475 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" - -#: js/file-upload.js:562 -msgid "URL cannot be empty" -msgstr "URL は空にできません" - -#: js/file-upload.js:566 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です" - -#: js/file-upload.js:568 js/filelist.js:430 -msgid "{new_name} already exists" -msgstr "{new_name} はすでに存在します" - -#: js/file-upload.js:634 -msgid "Could not create file" -msgstr "ファイルを作成できませんでした" - -#: js/file-upload.js:650 -msgid "Could not create folder" -msgstr "フォルダーを作成できませんでした" - -#: js/file-upload.js:700 -msgid "Error fetching URL" -msgstr "URL取得エラー" - -#: js/fileactions.js:149 -msgid "Share" -msgstr "共有" - -#: js/fileactions.js:162 -msgid "Delete permanently" -msgstr "完全に削除する" - -#: js/fileactions.js:223 -msgid "Rename" -msgstr "名前の変更" - -#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 -msgid "Pending" -msgstr "中断" - -#: js/filelist.js:456 -msgid "Could not rename file" -msgstr "ファイルの名前変更ができませんでした" - -#: js/filelist.js:591 -msgid "replaced {new_name} with {old_name}" -msgstr "{old_name} を {new_name} に置換" - -#: js/filelist.js:591 -msgid "undo" -msgstr "元に戻す" - -#: js/filelist.js:662 -msgid "Error deleting file." -msgstr "ファイルの削除エラー。" - -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 -msgid "%n folder" -msgid_plural "%n folders" -msgstr[0] "%n 個のフォルダー" - -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 -msgid "%n file" -msgid_plural "%n files" -msgstr[0] "%n 個のファイル" - -#: js/filelist.js:695 -msgid "{dirs} and {files}" -msgstr "{dirs} と {files}" - -#: js/filelist.js:931 js/filelist.js:969 -msgid "Uploading %n file" -msgid_plural "Uploading %n files" -msgstr[0] "%n 個のファイルをアップロード中" - -#: js/files.js:96 -msgid "\"{name}\" is an invalid file name." -msgstr "\"{name}\" は無効なファイル名です。" - -#: js/files.js:117 -msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!" - -#: js/files.js:121 -msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "ストレージがほぼ一杯です({usedSpacePercent}%)" - -#: js/files.js:134 -msgid "" -"Encryption App is enabled but your keys are not initialized, please log-out " -"and log-in again" -msgstr "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください" - -#: js/files.js:138 -msgid "" -"Invalid private key for Encryption App. Please update your private key " -"password in your personal settings to recover access to your encrypted " -"files." -msgstr "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。" - -#: js/files.js:142 -msgid "" -"Encryption was disabled but your files are still encrypted. Please go to " -"your personal settings to decrypt your files." -msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。" - -#: js/files.js:379 -msgid "" -"Your download is being prepared. This might take some time if the files are " -"big." -msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" - -#: js/files.js:610 js/files.js:654 -msgid "Error moving file" -msgstr "ファイルの移動エラー" - -#: js/files.js:610 js/files.js:654 -msgid "Error" -msgstr "エラー" - -#: js/files.js:672 templates/index.php:68 -msgid "Name" -msgstr "名前" - -#: js/files.js:673 templates/index.php:80 -msgid "Size" -msgstr "サイズ" - -#: js/files.js:674 templates/index.php:82 -msgid "Modified" -msgstr "更新日時" - -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "無効なフォルダー名。「Shared」の利用は予約されています。" - -#: lib/app.php:111 -#, php-format -msgid "%s could not be renamed" -msgstr "%sの名前を変更できませんでした" - -#: lib/helper.php:14 templates/index.php:23 -msgid "Upload" -msgstr "アップロード" - -#: templates/admin.php:5 -msgid "File handling" -msgstr "ファイル操作" - -#: templates/admin.php:7 -msgid "Maximum upload size" -msgstr "最大アップロードサイズ" - -#: templates/admin.php:10 -msgid "max. possible: " -msgstr "最大容量: " - -#: templates/admin.php:15 -msgid "Needed for multi-file and folder downloads." -msgstr "複数ファイルおよびフォルダーのダウンロードに必要" - -#: templates/admin.php:17 -msgid "Enable ZIP-download" -msgstr "ZIP形式のダウンロードを有効にする" - -#: templates/admin.php:20 -msgid "0 is unlimited" -msgstr "0を指定した場合は無制限" - -#: templates/admin.php:22 -msgid "Maximum input size for ZIP files" -msgstr "ZIPファイルでの最大入力サイズ" - -#: templates/admin.php:26 -msgid "Save" -msgstr "保存" - -#: templates/index.php:6 -msgid "New" -msgstr "新規作成" - -#: templates/index.php:9 -msgid "New text file" -msgstr "新規のテキストファイル作成" - -#: templates/index.php:10 -msgid "Text file" -msgstr "テキストファイル" - -#: templates/index.php:13 -msgid "New folder" -msgstr "新しいフォルダー" - -#: templates/index.php:14 -msgid "Folder" -msgstr "フォルダー" - -#: templates/index.php:17 -msgid "From link" -msgstr "リンク" - -#: templates/index.php:41 -msgid "Deleted files" -msgstr "ゴミ箱" - -#: templates/index.php:46 -msgid "Cancel upload" -msgstr "アップロードをキャンセル" - -#: templates/index.php:52 -msgid "You don’t have permission to upload or create files here" -msgstr "ここにファイルをアップロードもしくは作成する権限がありません" - -#: templates/index.php:57 -msgid "Nothing in here. Upload something!" -msgstr "ここには何もありません。何かアップロードしてください。" - -#: templates/index.php:74 -msgid "Download" -msgstr "ダウンロード" - -#: templates/index.php:85 templates/index.php:86 -msgid "Delete" -msgstr "削除" - -#: templates/index.php:98 -msgid "Upload too large" -msgstr "アップロードには大きすぎます。" - -#: templates/index.php:100 -msgid "" -"The files you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "アップロードしようとしているファイルは、サーバーで規定された最大サイズを超えています。" - -#: templates/index.php:105 -msgid "Files are being scanned, please wait." -msgstr "ファイルをスキャンしています、しばらくお待ちください。" - -#: templates/index.php:108 -msgid "Current scanning" -msgstr "スキャン中" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "ファイルシステムキャッシュを更新中..." diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po deleted file mode 100644 index 84a9a5fbd8..0000000000 --- a/l10n/ja_JP/files_encryption.po +++ /dev/null @@ -1,205 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi , 2013 -# plazmism , 2013-2014 -# kuromabo , 2014 -# tt yn , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" -"Last-Translator: plazmism \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/adminrecovery.php:29 -msgid "Recovery key successfully enabled" -msgstr "リカバリ用のキーを正常に有効にしました" - -#: ajax/adminrecovery.php:34 -msgid "" -"Could not enable recovery key. Please check your recovery key password!" -msgstr "リカバリ用のキーを有効にできませんでした。リカバリ用のキーのパスワードを確認してください!" - -#: ajax/adminrecovery.php:48 -msgid "Recovery key successfully disabled" -msgstr "リカバリ用のキーを正常に無効化しました" - -#: ajax/adminrecovery.php:53 -msgid "" -"Could not disable recovery key. Please check your recovery key password!" -msgstr "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認してください!" - -#: ajax/changeRecoveryPassword.php:49 -msgid "Password successfully changed." -msgstr "パスワードを変更できました。" - -#: ajax/changeRecoveryPassword.php:51 -msgid "Could not change the password. Maybe the old password was not correct." -msgstr "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。" - -#: ajax/updatePrivateKeyPassword.php:52 -msgid "Private key password successfully updated." -msgstr "秘密鍵のパスワードが正常に更新されました。" - -#: ajax/updatePrivateKeyPassword.php:54 -msgid "" -"Could not update the private key password. Maybe the old password was not " -"correct." -msgstr "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。" - -#: files/error.php:12 -msgid "" -"Encryption app not initialized! Maybe the encryption app was re-enabled " -"during your session. Please try to log out and log back in to initialize the" -" encryption app." -msgstr "セッション中に暗号化アプリを再度有効にされたため、暗号化アプリが初期化されていません。暗号化アプリを初期化するため、ログアウトしてログインしなおしてください。" - -#: files/error.php:16 -#, php-format -msgid "" -"Your private key is not valid! Likely your password was changed outside of " -"%s (e.g. your corporate directory). You can update your private key password" -" in your personal settings to recover access to your encrypted files." -msgstr "プライベートキーが有効ではありません!パスワードが%sの外部で変更された(例: 共同ディレクトリ)と思われます。個人設定でプライベートキーのパスワードを更新して、暗号化ファイルへのアクセスを回復することができます。" - -#: files/error.php:19 -msgid "" -"Can not decrypt this file, probably this is a shared file. Please ask the " -"file owner to reshare the file with you." -msgstr "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。" - -#: files/error.php:22 files/error.php:27 -msgid "" -"Unknown error please check your system settings or contact your " -"administrator" -msgstr "不明なエラーです。システム設定を確認するか、管理者に問い合わせてください。" - -#: hooks/hooks.php:64 -msgid "Missing requirements." -msgstr "必要要件が満たされていません。" - -#: hooks/hooks.php:65 -msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " -"together with the PHP extension is enabled and configured properly. For now," -" the encryption app has been disabled." -msgstr "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。" - -#: hooks/hooks.php:295 -msgid "Following users are not set up for encryption:" -msgstr "以下のユーザーは、暗号化設定がされていません:" - -#: js/detect-migration.js:21 -msgid "Initial encryption started... This can take some time. Please wait." -msgstr "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。お待ちください。" - -#: js/detect-migration.js:25 -msgid "Initial encryption running... Please try again later." -msgstr "初期暗号化実行中... 後でもう一度お試しください。" - -#: templates/invalid_private_key.php:8 -msgid "Go directly to your " -msgstr "あなたのディレクトリへ" - -#: templates/invalid_private_key.php:8 -msgid "personal settings" -msgstr "秘密鍵をアンロックできます" - -#: templates/settings-admin.php:4 templates/settings-personal.php:3 -msgid "Encryption" -msgstr "暗号化" - -#: templates/settings-admin.php:7 -msgid "" -"Enable recovery key (allow to recover users files in case of password loss):" -msgstr "リカバリキーを有効にする (パスワードを忘れた場合にユーザーのファイルを回復できます):" - -#: templates/settings-admin.php:11 -msgid "Recovery key password" -msgstr "リカバリキーのパスワード" - -#: templates/settings-admin.php:14 -msgid "Repeat Recovery key password" -msgstr "リカバリキーのパスワードをもう一度入力" - -#: templates/settings-admin.php:21 templates/settings-personal.php:51 -msgid "Enabled" -msgstr "有効" - -#: templates/settings-admin.php:29 templates/settings-personal.php:59 -msgid "Disabled" -msgstr "無効" - -#: templates/settings-admin.php:34 -msgid "Change recovery key password:" -msgstr "リカバリキーのパスワードを変更:" - -#: templates/settings-admin.php:40 -msgid "Old Recovery key password" -msgstr "古いリカバリキーのパスワード" - -#: templates/settings-admin.php:47 -msgid "New Recovery key password" -msgstr "新しいリカバリキーのパスワード" - -#: templates/settings-admin.php:53 -msgid "Repeat New Recovery key password" -msgstr "新しいリカバリキーのパスワードをもう一度入力" - -#: templates/settings-admin.php:58 -msgid "Change Password" -msgstr "パスワードを変更" - -#: templates/settings-personal.php:9 -msgid "Your private key password no longer match your log-in password:" -msgstr "もはや秘密鍵はログインパスワードと一致しません:" - -#: templates/settings-personal.php:12 -msgid "Set your old private key password to your current log-in password." -msgstr "古い秘密鍵のパスワードを現在のログインパスワードに設定する。" - -#: templates/settings-personal.php:14 -msgid "" -" If you don't remember your old password you can ask your administrator to " -"recover your files." -msgstr "古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。" - -#: templates/settings-personal.php:22 -msgid "Old log-in password" -msgstr "古いログインパスワード" - -#: templates/settings-personal.php:28 -msgid "Current log-in password" -msgstr "現在のログインパスワード" - -#: templates/settings-personal.php:33 -msgid "Update Private Key Password" -msgstr "秘密鍵のパスワードを更新" - -#: templates/settings-personal.php:42 -msgid "Enable password recovery:" -msgstr "パスワードリカバリを有効に:" - -#: templates/settings-personal.php:44 -msgid "" -"Enabling this option will allow you to reobtain access to your encrypted " -"files in case of password loss" -msgstr "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。" - -#: templates/settings-personal.php:60 -msgid "File recovery settings updated" -msgstr "ファイルリカバリ設定を更新しました" - -#: templates/settings-personal.php:61 -msgid "Could not update file recovery" -msgstr "ファイルリカバリを更新できませんでした" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po deleted file mode 100644 index 03beb70d11..0000000000 --- a/l10n/ja_JP/files_external.po +++ /dev/null @@ -1,129 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# plazmism , 2014 -# kuromabo , 2014 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:31+0000\n" -"Last-Translator: plazmism \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 -msgid "Access granted" -msgstr "アクセスは許可されました" - -#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 -msgid "Error configuring Dropbox storage" -msgstr "Dropboxストレージの設定エラー" - -#: js/dropbox.js:68 js/google.js:89 -msgid "Grant access" -msgstr "アクセスを許可" - -#: js/dropbox.js:102 -msgid "Please provide a valid Dropbox app key and secret." -msgstr "有効なDropboxアプリのキーとパスワードを入力してください。" - -#: js/google.js:45 js/google.js:122 -msgid "Error configuring Google Drive storage" -msgstr "Googleドライブストレージの設定エラー" - -#: js/settings.js:313 js/settings.js:320 -msgid "Saved" -msgstr "保存されました" - -#: lib/config.php:512 -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:516 -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 "警告: PHPのFTPサポートが無効またはインストールされていません。FTP共有のマウントはできません。システム管理者にインストールを依頼してください。" - -#: lib/config.php:519 -msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " -"your system administrator to install it." -msgstr "警告: PHPのCurlサポートが無効またはインストールされていません。ownCloud / WebDAVまたはGoogleDriveのマウントはできません。システム管理者にインストールを依頼してください。" - -#: templates/settings.php:3 -msgid "External Storage" -msgstr "外部ストレージ" - -#: templates/settings.php:9 templates/settings.php:28 -msgid "Folder name" -msgstr "フォルダー名" - -#: templates/settings.php:10 -msgid "External storage" -msgstr "外部ストレージ" - -#: templates/settings.php:11 -msgid "Configuration" -msgstr "設定" - -#: templates/settings.php:12 -msgid "Options" -msgstr "オプション" - -#: templates/settings.php:13 -msgid "Applicable" -msgstr "適用範囲" - -#: templates/settings.php:33 -msgid "Add storage" -msgstr "ストレージを追加" - -#: templates/settings.php:90 -msgid "None set" -msgstr "未設定" - -#: templates/settings.php:91 -msgid "All Users" -msgstr "すべてのユーザー" - -#: templates/settings.php:92 -msgid "Groups" -msgstr "グループ" - -#: templates/settings.php:100 -msgid "Users" -msgstr "ユーザー" - -#: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:155 templates/settings.php:156 -msgid "Delete" -msgstr "削除" - -#: templates/settings.php:127 -msgid "Enable User External Storage" -msgstr "ユーザーの外部ストレージを有効にする" - -#: templates/settings.php:130 -msgid "Allow users to mount the following external storage" -msgstr "ユーザに以下の外部ストレージのマウントを許可する" - -#: templates/settings.php:147 -msgid "SSL root certificates" -msgstr "SSLルート証明書" - -#: templates/settings.php:165 -msgid "Import Root Certificate" -msgstr "ルート証明書をインポート" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po deleted file mode 100644 index 575dc714ea..0000000000 --- a/l10n/ja_JP/files_sharing.po +++ /dev/null @@ -1,75 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi , 2013 -# plazmism , 2014 -# tt yn , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:31+0000\n" -"Last-Translator: plazmism \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: js/share.js:13 -msgid "Shared by {owner}" -msgstr "{owner} と共有中" - -#: templates/authenticate.php:4 -msgid "This share is password-protected" -msgstr "この共有はパスワードで保護されています" - -#: templates/authenticate.php:7 -msgid "The password is wrong. Try again." -msgstr "パスワードが間違っています。再試行してください。" - -#: templates/authenticate.php:10 -msgid "Password" -msgstr "パスワード" - -#: templates/part.404.php:3 -msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "申し訳ございません。このリンクはもう利用できません。" - -#: templates/part.404.php:4 -msgid "Reasons might be:" -msgstr "理由は以下の通りと考えられます:" - -#: templates/part.404.php:6 -msgid "the item was removed" -msgstr "アイテムが削除されました" - -#: templates/part.404.php:7 -msgid "the link expired" -msgstr "リンクの期限が切れています" - -#: templates/part.404.php:8 -msgid "sharing is disabled" -msgstr "共有が無効になっています" - -#: templates/part.404.php:10 -msgid "For more info, please ask the person who sent this link." -msgstr "不明な点は、こちらのリンクの提供者に確認をお願いします。" - -#: templates/public.php:17 -#, php-format -msgid "shared by %s" -msgstr "%s で共有中" - -#: templates/public.php:44 -#, php-format -msgid "Download %s" -msgstr "%s をダウンロード" - -#: templates/public.php:48 -msgid "Direct link" -msgstr "リンク" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po deleted file mode 100644 index d41ec512fa..0000000000 --- a/l10n/ja_JP/files_trashbin.po +++ /dev/null @@ -1,68 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi , 2013 -# plazmism , 2013 -# kuromabo , 2014 -# tt yn , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+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" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/delete.php:59 -#, php-format -msgid "Couldn't delete %s permanently" -msgstr "%s を完全に削除できませんでした" - -#: ajax/undelete.php:64 -#, php-format -msgid "Couldn't restore %s" -msgstr "%s を復元できませんでした" - -#: js/filelist.js:23 -msgid "Deleted files" -msgstr "ゴミ箱" - -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 -msgid "Error" -msgstr "エラー" - -#: lib/trashbin.php:852 lib/trashbin.php:854 -msgid "restored" -msgstr "復元済" - -#: templates/index.php:7 -msgid "Nothing in here. Your trash bin is empty!" -msgstr "ここには何もありません。ゴミ箱は空です!" - -#: templates/index.php:20 -msgid "Name" -msgstr "名前" - -#: templates/index.php:23 templates/index.php:25 -msgid "Restore" -msgstr "復元" - -#: templates/index.php:31 -msgid "Deleted" -msgstr "削除済み" - -#: templates/index.php:34 templates/index.php:35 -msgid "Delete" -msgstr "削除" - -#: templates/part.breadcrumb.php:8 -msgid "Deleted Files" -msgstr "ゴミ箱" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po deleted file mode 100644 index a160c897a2..0000000000 --- a/l10n/ja_JP/files_versions.po +++ /dev/null @@ -1,44 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# tt yn , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 01:10+0000\n" -"Last-Translator: tt yn \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/rollbackVersion.php:13 -#, php-format -msgid "Could not revert: %s" -msgstr "元に戻せませんでした: %s" - -#: js/versions.js:7 -msgid "Versions" -msgstr "バージョン" - -#: js/versions.js:53 -msgid "Failed to revert {file} to revision {timestamp}." -msgstr "{file} を {timestamp} のリヴィジョンに戻すことができません。" - -#: js/versions.js:79 -msgid "More versions..." -msgstr "もっと他のバージョン..." - -#: js/versions.js:116 -msgid "No other versions available" -msgstr "利用可能な他のバージョンはありません" - -#: js/versions.js:149 -msgid "Restore" -msgstr "復元" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po deleted file mode 100644 index eb1a568d6e..0000000000 --- a/l10n/ja_JP/lib.po +++ /dev/null @@ -1,339 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi , 2013 -# plazmism , 2013-2014 -# Koichi MATSUMOTO , 2013 -# kuromabo , 2014 -# tt yn , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:31+0000\n" -"Last-Translator: plazmism \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: private/app.php:236 -#, php-format -msgid "" -"App \"%s\" can't be installed because it is not compatible with this version" -" of ownCloud." -msgstr " \"%s\" アプリは、このバージョンのownCloudと互換性がないためインストールできません。" - -#: private/app.php:248 -msgid "No app name specified" -msgstr "アプリ名が未指定" - -#: private/app.php:353 -msgid "Help" -msgstr "ヘルプ" - -#: private/app.php:366 -msgid "Personal" -msgstr "個人" - -#: private/app.php:377 -msgid "Settings" -msgstr "設定" - -#: private/app.php:389 -msgid "Users" -msgstr "ユーザー" - -#: private/app.php:402 -msgid "Admin" -msgstr "管理" - -#: private/app.php:875 -#, php-format -msgid "Failed to upgrade \"%s\"." -msgstr "\"%s\" へのアップグレードに失敗しました。" - -#: private/avatar.php:66 -msgid "Unknown filetype" -msgstr "不明なファイルタイプ" - -#: private/avatar.php:71 -msgid "Invalid image" -msgstr "無効な画像" - -#: private/defaults.php:35 -msgid "web services under your control" -msgstr "管理下のウェブサービス" - -#: private/files.php:231 -msgid "ZIP download is turned off." -msgstr "ZIPダウンロードは無効です。" - -#: private/files.php:232 -msgid "Files need to be downloaded one by one." -msgstr "ファイルは1つずつダウンロードする必要があります。" - -#: private/files.php:233 private/files.php:261 -msgid "Back to Files" -msgstr "ファイルに戻る" - -#: private/files.php:258 -msgid "Selected files too large to generate zip file." -msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" - -#: private/files.php:259 -msgid "" -"Please download the files separately in smaller chunks or kindly ask your " -"administrator." -msgstr "少しずつに分けてファイルをダウンロードするか、管理者に問い合わせてください。" - -#: private/installer.php:64 -msgid "No source specified when installing app" -msgstr "アプリインストール時のソースが未指定" - -#: private/installer.php:71 -msgid "No href specified when installing app from http" -msgstr "アプリインストール時のhttpの URL が未指定" - -#: private/installer.php:76 -msgid "No path specified when installing app from local file" -msgstr "アプリインストール時のローカルファイルのパスが未指定" - -#: private/installer.php:90 -#, php-format -msgid "Archives of type %s are not supported" -msgstr "\"%s\"タイプのアーカイブ形式は未サポート" - -#: private/installer.php:104 -msgid "Failed to open archive when installing app" -msgstr "アプリをインストール中にアーカイブファイルを開けませんでした。" - -#: private/installer.php:126 -msgid "App does not provide an info.xml file" -msgstr "アプリにinfo.xmlファイルが入っていません" - -#: private/installer.php:132 -msgid "App can't be installed because of not allowed code in the App" -msgstr "アプリで許可されないコードが入っているのが原因でアプリがインストールできません" - -#: private/installer.php:141 -msgid "" -"App can't be installed because it is not compatible with this version of " -"ownCloud" -msgstr "アプリは、このバージョンのownCloudと互換性がないためインストールできません。" - -#: private/installer.php:147 -msgid "" -"App can't be installed because it contains the true tag " -"which is not allowed for non shipped apps" -msgstr "非shippedアプリには許可されないtrueタグが含まれているためにアプリをインストールできません。" - -#: private/installer.php:160 -msgid "" -"App can't be installed because the version in info.xml/version is not the " -"same as the version reported from the app store" -msgstr "info.xml/versionのバージョンがアプリストアのバージョンと合っていないため、アプリはインストールされません" - -#: private/installer.php:170 -msgid "App directory already exists" -msgstr "アプリディレクトリはすでに存在します" - -#: private/installer.php:183 -#, php-format -msgid "Can't create app folder. Please fix permissions. %s" -msgstr "アプリフォルダーを作成できませんでした。%s のパーミッションを修正してください。" - -#: private/json.php:29 -msgid "Application is not enabled" -msgstr "アプリケーションは無効です" - -#: private/json.php:40 private/json.php:63 private/json.php:88 -msgid "Authentication error" -msgstr "認証エラー" - -#: private/json.php:52 -msgid "Token expired. Please reload page." -msgstr "トークンが無効になりました。ページを再読込してください。" - -#: private/json.php:75 -msgid "Unknown user" -msgstr "不明なユーザー" - -#: private/search/provider/file.php:18 private/search/provider/file.php:36 -msgid "Files" -msgstr "ファイル" - -#: private/search/provider/file.php:27 private/search/provider/file.php:34 -msgid "Text" -msgstr "TTY TDD" - -#: private/search/provider/file.php:30 -msgid "Images" -msgstr "画像" - -#: private/setup/abstractdatabase.php:26 -#, php-format -msgid "%s enter the database username." -msgstr "%s のデータベースのユーザー名を入力してください。" - -#: private/setup/abstractdatabase.php:29 -#, php-format -msgid "%s enter the database name." -msgstr "%s のデータベース名を入力してください。" - -#: private/setup/abstractdatabase.php:32 -#, php-format -msgid "%s you may not use dots in the database name" -msgstr "%s ではデータベース名にドットを利用できないかもしれません。" - -#: private/setup/mssql.php:20 -#, php-format -msgid "MS SQL username and/or password not valid: %s" -msgstr "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s" - -#: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 -msgid "You need to enter either an existing account or the administrator." -msgstr "既存のアカウントもしくは管理者のどちらかを入力する必要があります。" - -#: private/setup/mysql.php:12 -msgid "MySQL/MariaDB username and/or password not valid" -msgstr "MySQL/MariaDB のユーザー名及び/またはパスワードが無効" - -#: private/setup/mysql.php:67 private/setup/oci.php:54 -#: private/setup/oci.php:121 private/setup/oci.php:144 -#: private/setup/oci.php:151 private/setup/oci.php:162 -#: private/setup/oci.php:169 private/setup/oci.php:178 -#: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "DBエラー: \"%s\"" - -#: private/setup/mysql.php:68 private/setup/oci.php:55 -#: private/setup/oci.php:122 private/setup/oci.php:145 -#: private/setup/oci.php:152 private/setup/oci.php:163 -#: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 -#, php-format -msgid "Offending command was: \"%s\"" -msgstr "違反コマンド: \"%s\"" - -#: private/setup/mysql.php:85 -#, php-format -msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "MySQL/MariaDB のユーザー '%s'@'localhost' はすでに存在します。" - -#: private/setup/mysql.php:86 -msgid "Drop this user from MySQL/MariaDB" -msgstr "MySQL/MariaDB からこのユーザーを削除" - -#: private/setup/mysql.php:91 -#, php-format -msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "MySQL/MariaDB のユーザー '%s'@'%%' はすでに存在します" - -#: private/setup/mysql.php:92 -msgid "Drop this user from MySQL/MariaDB." -msgstr "MySQL/MariaDB からこのユーザーを削除。" - -#: private/setup/oci.php:34 -msgid "Oracle connection could not be established" -msgstr "Oracleへの接続が確立できませんでした。" - -#: private/setup/oci.php:41 private/setup/oci.php:113 -msgid "Oracle username and/or password not valid" -msgstr "Oracleのユーザー名もしくはパスワードは有効ではありません" - -#: private/setup/oci.php:170 private/setup/oci.php:202 -#, php-format -msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" - -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 -msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQLのユーザー名もしくはパスワードは有効ではありません" - -#: private/setup.php:28 -msgid "Set an admin username." -msgstr "管理者のユーザー名を設定" - -#: private/setup.php:31 -msgid "Set an admin password." -msgstr "管理者のパスワードを設定。" - -#: private/setup.php:198 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。" - -#: private/setup.php:199 -#, php-format -msgid "Please double check the installation guides." -msgstr "インストールガイドをよく確認してください。" - -#: private/share/mailnotifications.php:73 -#: private/share/mailnotifications.php:119 -#, php-format -msgid "%s shared »%s« with you" -msgstr "%sが あなたと »%s«を共有しました" - -#: private/tags.php:193 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "カテゴリ \"%s\" が見つかりませんでした" - -#: private/template/functions.php:133 -msgid "seconds ago" -msgstr "数秒前" - -#: private/template/functions.php:134 -msgid "%n minute ago" -msgid_plural "%n minutes ago" -msgstr[0] "%n 分前" - -#: private/template/functions.php:135 -msgid "%n hour ago" -msgid_plural "%n hours ago" -msgstr[0] "%n 時間前" - -#: private/template/functions.php:136 -msgid "today" -msgstr "今日" - -#: private/template/functions.php:137 -msgid "yesterday" -msgstr "1日前" - -#: private/template/functions.php:139 -msgid "%n day go" -msgid_plural "%n days ago" -msgstr[0] "%n日前" - -#: private/template/functions.php:141 -msgid "last month" -msgstr "1ヶ月前" - -#: private/template/functions.php:142 -msgid "%n month ago" -msgid_plural "%n months ago" -msgstr[0] "%nヶ月前" - -#: private/template/functions.php:144 -msgid "last year" -msgstr "1年前" - -#: private/template/functions.php:145 -msgid "years ago" -msgstr "年前" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po deleted file mode 100644 index 6cbc42a212..0000000000 --- a/l10n/ja_JP/settings.po +++ /dev/null @@ -1,813 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi , 2013-2014 -# plazmism , 2013-2014 -# iLikeIT , 2013 -# kuromabo , 2014 -# tt yn , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 07:20+0000\n" -"Last-Translator: kuromabo \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" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: admin/controller.php:66 -#, php-format -msgid "Invalid value supplied for %s" -msgstr "%s に提供された無効な値" - -#: admin/controller.php:73 -msgid "Saved" -msgstr "保存されました" - -#: admin/controller.php:90 -msgid "test email settings" -msgstr "eメール設定をテスト" - -#: admin/controller.php:91 -msgid "If you received this email, the settings seem to be correct." -msgstr "このメールを受け取ったら、設定は正しいはずです。" - -#: admin/controller.php:94 -msgid "" -"A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "メールの送信中に問題が発生しました。設定を再考してください。" - -#: admin/controller.php:99 -msgid "Email sent" -msgstr "メールを送信しました" - -#: admin/controller.php:101 -msgid "You need to set your user email before being able to send test emails." -msgstr "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。" - -#: admin/controller.php:116 templates/admin.php:284 -msgid "Send mode" -msgstr "送信モード" - -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 -msgid "Encryption" -msgstr "暗号化" - -#: admin/controller.php:120 templates/admin.php:321 -msgid "Authentication method" -msgstr "認証方法" - -#: ajax/apps/ocs.php:20 -msgid "Unable to load list from App Store" -msgstr "アプリストアからリストをロードできません" - -#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 -msgid "Authentication error" -msgstr "認証エラー" - -#: ajax/changedisplayname.php:31 -msgid "Your full name has been changed." -msgstr "フルネームを変更しました。" - -#: ajax/changedisplayname.php:34 -msgid "Unable to change full name" -msgstr "フルネームを変更できません" - -#: ajax/creategroup.php:10 -msgid "Group already exists" -msgstr "グループはすでに存在します" - -#: ajax/creategroup.php:19 -msgid "Unable to add group" -msgstr "グループを追加できません" - -#: ajax/lostpassword.php:12 -msgid "Email saved" -msgstr "メールアドレスを保存しました" - -#: ajax/lostpassword.php:14 -msgid "Invalid email" -msgstr "無効なメールアドレス" - -#: ajax/removegroup.php:13 -msgid "Unable to delete group" -msgstr "グループを削除できません" - -#: ajax/removeuser.php:25 -msgid "Unable to delete user" -msgstr "ユーザーを削除できません" - -#: ajax/setlanguage.php:15 -msgid "Language changed" -msgstr "言語が変更されました" - -#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 -msgid "Invalid request" -msgstr "不正なリクエスト" - -#: ajax/togglegroups.php:12 -msgid "Admins can't remove themself from the admin group" -msgstr "管理者は自身を管理者グループから削除できません。" - -#: ajax/togglegroups.php:30 -#, php-format -msgid "Unable to add user to group %s" -msgstr "ユーザーをグループ %s に追加できません" - -#: ajax/togglegroups.php:36 -#, php-format -msgid "Unable to remove user from group %s" -msgstr "ユーザーをグループ %s から削除できません" - -#: ajax/updateapp.php:14 -msgid "Couldn't update app." -msgstr "アプリをアップデートできませんでした。" - -#: changepassword/controller.php:20 -msgid "Wrong password" -msgstr "無効なパスワード" - -#: changepassword/controller.php:42 -msgid "No user supplied" -msgstr "ユーザーが指定されていません" - -#: changepassword/controller.php:74 -msgid "" -"Please provide an admin recovery password, otherwise all user data will be " -"lost" -msgstr "リカバリ用の管理者パスワードを入力してください。そうでない場合は、全ユーザーのデータが失われます。" - -#: changepassword/controller.php:79 -msgid "" -"Wrong admin recovery password. Please check the password and try again." -msgstr "リカバリ用の管理者パスワードが間違っています。パスワードを確認して再度実行してください。" - -#: changepassword/controller.php:87 -msgid "" -"Back-end doesn't support password change, but the users encryption key was " -"successfully updated." -msgstr "バックエンドはパスワード変更をサポートしていませんが、ユーザーの暗号化キーは正常に更新されました。" - -#: changepassword/controller.php:92 changepassword/controller.php:103 -msgid "Unable to change password" -msgstr "パスワードを変更できません" - -#: js/admin.js:73 -msgid "Sending..." -msgstr "送信中…" - -#: js/apps.js:45 templates/help.php:4 -msgid "User Documentation" -msgstr "ユーザードキュメント" - -#: js/apps.js:50 -msgid "Admin Documentation" -msgstr "管理者ドキュメント" - -#: js/apps.js:67 -msgid "Update to {appversion}" -msgstr "{appversion} にアップデート" - -#: js/apps.js:73 js/apps.js:106 js/apps.js:134 -msgid "Disable" -msgstr "無効" - -#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 -msgid "Enable" -msgstr "有効にする" - -#: js/apps.js:95 -msgid "Please wait...." -msgstr "しばらくお待ちください。" - -#: js/apps.js:103 js/apps.js:104 js/apps.js:125 -msgid "Error while disabling app" -msgstr "アプリ無効化中にエラーが発生" - -#: js/apps.js:124 js/apps.js:138 js/apps.js:139 -msgid "Error while enabling app" -msgstr "アプリを有効にする際にエラーが発生" - -#: js/apps.js:149 -msgid "Updating...." -msgstr "更新中...." - -#: js/apps.js:152 -msgid "Error while updating app" -msgstr "アプリの更新中にエラーが発生" - -#: js/apps.js:152 -msgid "Error" -msgstr "エラー" - -#: js/apps.js:153 templates/apps.php:54 -msgid "Update" -msgstr "アップデート" - -#: js/apps.js:156 -msgid "Updated" -msgstr "アップデート済み" - -#: js/personal.js:244 -msgid "Select a profile picture" -msgstr "プロファイル画像を選択" - -#: js/personal.js:274 -msgid "Very weak password" -msgstr "非常に弱いパスワード" - -#: js/personal.js:275 -msgid "Weak password" -msgstr "弱いパスワード" - -#: js/personal.js:276 -msgid "So-so password" -msgstr "まずまずのパスワード" - -#: js/personal.js:277 -msgid "Good password" -msgstr "良好なパスワード" - -#: js/personal.js:278 -msgid "Strong password" -msgstr "強いパスワード" - -#: js/personal.js:301 -msgid "Decrypting files... Please wait, this can take some time." -msgstr "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。" - -#: js/users.js:47 -msgid "deleted" -msgstr "削除" - -#: js/users.js:47 -msgid "undo" -msgstr "元に戻す" - -#: js/users.js:79 -msgid "Unable to remove user" -msgstr "ユーザーを削除できません" - -#: js/users.js:101 templates/users.php:24 templates/users.php:88 -#: templates/users.php:116 -msgid "Groups" -msgstr "グループ" - -#: js/users.js:105 templates/users.php:90 templates/users.php:128 -msgid "Group Admin" -msgstr "グループ管理者" - -#: js/users.js:127 templates/users.php:168 -msgid "Delete" -msgstr "削除" - -#: js/users.js:310 -msgid "add group" -msgstr "グループを追加" - -#: js/users.js:486 -msgid "A valid username must be provided" -msgstr "有効なユーザー名を指定する必要があります" - -#: js/users.js:487 js/users.js:493 js/users.js:508 -msgid "Error creating user" -msgstr "ユーザー作成エラー" - -#: js/users.js:492 -msgid "A valid password must be provided" -msgstr "有効なパスワードを指定する必要があります" - -#: js/users.js:516 -msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "警告: ユーザー \"{user}\" のホームディレクトリはすでに存在します" - -#: personal.php:49 personal.php:50 -msgid "__language_name__" -msgstr "Japanese (日本語)" - -#: templates/admin.php:8 -msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "すべて (致命的な問題、エラー、警告、情報、デバッグ)" - -#: templates/admin.php:9 -msgid "Info, warnings, errors and fatal issues" -msgstr "情報、警告、エラー、致命的な問題" - -#: templates/admin.php:10 -msgid "Warnings, errors and fatal issues" -msgstr "警告、エラー、致命的な問題" - -#: templates/admin.php:11 -msgid "Errors and fatal issues" -msgstr "エラー、致命的な問題" - -#: templates/admin.php:12 -msgid "Fatal issues only" -msgstr "致命的な問題のみ" - -#: templates/admin.php:16 templates/admin.php:23 -msgid "None" -msgstr "なし" - -#: templates/admin.php:17 -msgid "Login" -msgstr "ログイン" - -#: templates/admin.php:18 -msgid "Plain" -msgstr "平文" - -#: templates/admin.php:19 -msgid "NT LAN Manager" -msgstr "NT LAN マネージャー" - -#: templates/admin.php:24 -msgid "SSL" -msgstr "SSL" - -#: templates/admin.php:25 -msgid "TLS" -msgstr "TLS" - -#: templates/admin.php:47 templates/admin.php:61 -msgid "Security Warning" -msgstr "セキュリティ警告" - -#: templates/admin.php:50 -#, php-format -msgid "" -"You are accessing %s via HTTP. We strongly suggest you configure your server" -" to require using HTTPS instead." -msgstr "HTTP経由で %s にアクセスしています。HTTPSを使用するようサーバーを設定することを強くおすすめします。" - -#: templates/admin.php:64 -msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file is not working. We strongly suggest that you " -"configure your webserver in a way that the data directory is no longer " -"accessible or you move the data directory outside the webserver document " -"root." -msgstr "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。" - -#: templates/admin.php:75 -msgid "Setup Warning" -msgstr "セットアップ警告" - -#: templates/admin.php:78 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。" - -#: templates/admin.php:79 -#, php-format -msgid "Please double check the installation guides." -msgstr "installation guidesをもう一度チェックするようにお願いいたします。" - -#: templates/admin.php:90 -msgid "Module 'fileinfo' missing" -msgstr "モジュール 'fileinfo' が見つかりません" - -#: templates/admin.php:93 -msgid "" -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " -"module to get best results with mime-type detection." -msgstr "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。" - -#: templates/admin.php:104 -msgid "Your PHP version is outdated" -msgstr "PHPバーションが古くなっています。" - -#: templates/admin.php:107 -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 "PHPバーションが古くなっています。古いバージョンには既知の問題があるため、5.3.8以降のバージョンにアップデートすることを強く推奨します。このインストール状態では正常に動作しない可能性があります。" - -#: templates/admin.php:118 -msgid "Locale not working" -msgstr "ロケールが動作していません" - -#: templates/admin.php:123 -msgid "System locale can not be set to a one which supports UTF-8." -msgstr "システムロケールを UTF-8 をサポートするロケールに設定できません。" - -#: templates/admin.php:127 -msgid "" -"This means that there might be problems with certain characters in file " -"names." -msgstr "これは、ファイル名の特定の文字に問題があることを意味しています。" - -#: templates/admin.php:131 -#, php-format -msgid "" -"We strongly suggest to install the required packages on your system to " -"support one of the following locales: %s." -msgstr "次のロケールをサポートするために、システムに必要なパッケージをインストールすることを強くおすすめします: %s。" - -#: templates/admin.php:143 -msgid "Internet connection not working" -msgstr "インターネット接続が動作していません" - -#: templates/admin.php:146 -msgid "" -"This server has no working internet connection. This means that some of the " -"features like mounting of external storage, notifications about updates or " -"installation of 3rd party apps don´t work. Accessing files from remote and " -"sending of notification emails might also not work. We suggest to enable " -"internet connection for this server if you want to have all features." -msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" - -#: templates/admin.php:160 -msgid "Cron" -msgstr "Cron" - -#: templates/admin.php:167 -msgid "Execute one task with each page loaded" -msgstr "各ページの読み込み時にタスクを実行する" - -#: templates/admin.php:175 -msgid "" -"cron.php is registered at a webcron service to call cron.php every 15 " -"minutes over http." -msgstr "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されています" - -#: templates/admin.php:183 -msgid "Use systems cron service to call the cron.php file every 15 minutes." -msgstr "システムのcronサービスを利用して15分ごとにcron.phpファイルを実行します。" - -#: templates/admin.php:188 -msgid "Sharing" -msgstr "共有" - -#: templates/admin.php:194 -msgid "Enable Share API" -msgstr "共有APIを有効にする" - -#: templates/admin.php:195 -msgid "Allow apps to use the Share API" -msgstr "アプリからの共有APIの利用を許可する" - -#: templates/admin.php:202 -msgid "Allow links" -msgstr "リンクを許可する" - -#: templates/admin.php:203 -msgid "Allow users to share items to the public with links" -msgstr "ユーザーがリンクによりアイテムを公開することを許可する" - -#: templates/admin.php:211 -msgid "Allow public uploads" -msgstr "パブリックなアップロードを許可" - -#: templates/admin.php:212 -msgid "" -"Allow users to enable others to upload into their publicly shared folders" -msgstr "公開している共有フォルダーへのアップロードを共有しているメンバーにも許可" - -#: templates/admin.php:220 -msgid "Allow resharing" -msgstr "再共有を許可する" - -#: templates/admin.php:221 -msgid "Allow users to share items shared with them again" -msgstr "ユーザーが共有しているアイテムの再共有を許可する" - -#: templates/admin.php:228 -msgid "Allow users to share with anyone" -msgstr "ユーザーに誰とでも共有することを許可する" - -#: templates/admin.php:231 -msgid "Allow users to only share with users in their groups" -msgstr "ユーザーにグループ内のユーザーとのみ共有を許可する" - -#: templates/admin.php:238 -msgid "Allow mail notification" -msgstr "メール通知を許可" - -#: templates/admin.php:239 -msgid "Allow user to send mail notification for shared files" -msgstr "共有ファイルに関するメール通知の送信をユーザーに許可する" - -#: templates/admin.php:246 -msgid "Security" -msgstr "セキュリティ" - -#: templates/admin.php:259 -msgid "Enforce HTTPS" -msgstr "常にHTTPSを使用する" - -#: templates/admin.php:261 -#, php-format -msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "クライアントから %sへの接続を常に暗号化します。" - -#: templates/admin.php:267 -#, php-format -msgid "" -"Please connect to your %s via HTTPS to enable or disable the SSL " -"enforcement." -msgstr "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。" - -#: templates/admin.php:279 -msgid "Email Server" -msgstr "メールサーバー" - -#: templates/admin.php:281 -msgid "This is used for sending out notifications." -msgstr "これは通知の送信に使われます。" - -#: templates/admin.php:312 -msgid "From address" -msgstr "アドレスから" - -#: templates/admin.php:334 -msgid "Authentication required" -msgstr "要求される認証" - -#: templates/admin.php:338 -msgid "Server address" -msgstr "サーバーアドレス" - -#: templates/admin.php:342 -msgid "Port" -msgstr "ポート" - -#: templates/admin.php:347 -msgid "Credentials" -msgstr "資格情報" - -#: templates/admin.php:348 -msgid "SMTP Username" -msgstr "SMTP ユーザー名" - -#: templates/admin.php:351 -msgid "SMTP Password" -msgstr "SMTP パスワード" - -#: templates/admin.php:355 -msgid "Test email settings" -msgstr "メールテスト設定" - -#: templates/admin.php:356 -msgid "Send email" -msgstr "メールを送信" - -#: templates/admin.php:361 -msgid "Log" -msgstr "ログ" - -#: templates/admin.php:362 -msgid "Log level" -msgstr "ログレベル" - -#: templates/admin.php:394 -msgid "More" -msgstr "もっと見る" - -#: templates/admin.php:395 -msgid "Less" -msgstr "閉じる" - -#: templates/admin.php:401 templates/personal.php:181 -msgid "Version" -msgstr "バージョン" - -#: templates/admin.php:405 templates/personal.php:184 -msgid "" -"Developed by the ownCloud community, the source code is " -"licensed under the AGPL." -msgstr "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。" - -#: templates/apps.php:14 -msgid "Add your App" -msgstr "アプリを追加" - -#: templates/apps.php:31 -msgid "More Apps" -msgstr "さらにアプリを表示" - -#: templates/apps.php:37 -msgid "Select an App" -msgstr "アプリを選択してください" - -#: templates/apps.php:42 -msgid "Documentation:" -msgstr "ドキュメント:" - -#: templates/apps.php:48 -msgid "See application page at apps.owncloud.com" -msgstr "apps.owncloud.com でアプリケーションのページを見てください" - -#: templates/apps.php:50 -msgid "See application website" -msgstr "アプリケーションのウェブサイトを見る" - -#: templates/apps.php:52 -msgid "-licensed by " -msgstr "-ライセンス: " - -#: templates/help.php:6 -msgid "Administrator Documentation" -msgstr "管理者ドキュメント" - -#: templates/help.php:9 -msgid "Online Documentation" -msgstr "オンラインドキュメント" - -#: templates/help.php:11 -msgid "Forum" -msgstr "フォーラム" - -#: templates/help.php:14 -msgid "Bugtracker" -msgstr "バグトラッカー" - -#: templates/help.php:17 -msgid "Commercial Support" -msgstr "商用サポート" - -#: templates/personal.php:8 -msgid "Get the apps to sync your files" -msgstr "ファイルを同期するためのアプリを取得" - -#: templates/personal.php:19 -msgid "Show First Run Wizard again" -msgstr "初回ウィザードを再表示する" - -#: templates/personal.php:27 -#, php-format -msgid "You have used %s of the available %s" -msgstr "現在、%s / %s を利用しています" - -#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 -msgid "Password" -msgstr "パスワード" - -#: templates/personal.php:40 -msgid "Your password was changed" -msgstr "パスワードを変更しました" - -#: templates/personal.php:41 -msgid "Unable to change your password" -msgstr "パスワードを変更することができません" - -#: templates/personal.php:43 -msgid "Current password" -msgstr "Current password" - -#: templates/personal.php:46 -msgid "New password" -msgstr "新しいパスワードを入力" - -#: templates/personal.php:50 -msgid "Change password" -msgstr "パスワードを変更" - -#: templates/personal.php:64 templates/users.php:86 -msgid "Full Name" -msgstr "名前" - -#: templates/personal.php:81 -msgid "Email" -msgstr "メール" - -#: templates/personal.php:83 -msgid "Your email address" -msgstr "あなたのメールアドレス" - -#: templates/personal.php:86 -msgid "" -"Fill in an email address to enable password recovery and receive " -"notifications" -msgstr "パスワードの回復を有効にし、通知を受け取るにはメールアドレスを入力してください" - -#: templates/personal.php:96 -msgid "Profile picture" -msgstr "プロフィール写真" - -#: templates/personal.php:101 -msgid "Upload new" -msgstr "新規にアップロード" - -#: templates/personal.php:103 -msgid "Select new from Files" -msgstr "ファイルから新規に選択" - -#: templates/personal.php:104 -msgid "Remove image" -msgstr "画像を削除" - -#: templates/personal.php:105 -msgid "Either png or jpg. Ideally square but you will be able to crop it." -msgstr "png と jpg のいずれか。正方形が理想ですが、切り取って加工することも可能です。" - -#: templates/personal.php:107 -msgid "Your avatar is provided by your original account." -msgstr "あなたのアバターは、あなたのオリジナルのアカウントで提供されています。" - -#: templates/personal.php:111 -msgid "Cancel" -msgstr "キャンセル" - -#: templates/personal.php:112 -msgid "Choose as profile image" -msgstr "プロファイル画像として選択" - -#: templates/personal.php:120 templates/personal.php:121 -msgid "Language" -msgstr "言語" - -#: templates/personal.php:140 -msgid "Help translate" -msgstr "翻訳に協力する" - -#: templates/personal.php:147 -msgid "WebDAV" -msgstr "WebDAV" - -#: templates/personal.php:149 -#, php-format -msgid "" -"Use this address to access your Files via " -"WebDAV" -msgstr "WebDAV 経由でファイルにアクセス するにはこのアドレスを利用してください" - -#: templates/personal.php:161 -msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください" - -#: templates/personal.php:167 -msgid "Log-in password" -msgstr "ログインパスワード" - -#: templates/personal.php:172 -msgid "Decrypt all Files" -msgstr "すべてのファイルを複合する" - -#: templates/users.php:19 -msgid "Login Name" -msgstr "ログイン名" - -#: templates/users.php:28 -msgid "Create" -msgstr "作成" - -#: templates/users.php:34 -msgid "Admin Recovery Password" -msgstr "管理者リカバリパスワード" - -#: templates/users.php:35 templates/users.php:36 -msgid "" -"Enter the recovery password in order to recover the users files during " -"password change" -msgstr "パスワード変更時のユーザーのファイルを回復するため、リカバリパスワードを入力してください" - -#: templates/users.php:40 -msgid "Default Storage" -msgstr "デフォルトストレージ" - -#: templates/users.php:42 templates/users.php:137 -msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "ストレージの割り当てを入力してください (例: \"512MB\" や \"12 GB\")" - -#: templates/users.php:46 templates/users.php:146 -msgid "Unlimited" -msgstr "無制限" - -#: templates/users.php:64 templates/users.php:161 -msgid "Other" -msgstr "その他" - -#: templates/users.php:85 -msgid "Username" -msgstr "ユーザー名" - -#: templates/users.php:92 -msgid "Storage" -msgstr "ストレージ" - -#: templates/users.php:106 -msgid "change full name" -msgstr "フルネームを変更" - -#: templates/users.php:110 -msgid "set new password" -msgstr "新しいパスワードを設定" - -#: templates/users.php:141 -msgid "Default" -msgstr "デフォルト" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po deleted file mode 100644 index fb59bd8414..0000000000 --- a/l10n/ja_JP/user_ldap.po +++ /dev/null @@ -1,525 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi , 2013 -# plazmism , 2013-2014 -# kuromabo , 2014 -# tt yn , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:31+0000\n" -"Last-Translator: plazmism \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: ajax/clearMappings.php:34 -msgid "Failed to clear the mappings." -msgstr "マッピングのクリアに失敗しました。" - -#: ajax/deleteConfiguration.php:34 -msgid "Failed to delete the server configuration" -msgstr "サーバー設定の削除に失敗しました" - -#: ajax/testConfiguration.php:39 -msgid "The configuration is valid and the connection could be established!" -msgstr "設定は有効であり、接続を確立しました!" - -#: ajax/testConfiguration.php:42 -msgid "" -"The configuration is valid, but the Bind failed. Please check the server " -"settings and credentials." -msgstr "設定は有効ですが、接続に失敗しました。サーバー設定と資格情報を確認してください。" - -#: ajax/testConfiguration.php:46 -msgid "" -"The configuration is invalid. Please have a look at the logs for further " -"details." -msgstr "設定が無効です。詳細はログを確認してください。" - -#: ajax/wizard.php:32 -msgid "No action specified" -msgstr "アクションが指定されていません" - -#: ajax/wizard.php:38 -msgid "No configuration specified" -msgstr "構成が指定されていません" - -#: ajax/wizard.php:81 -msgid "No data specified" -msgstr "データが指定されていません" - -#: ajax/wizard.php:89 -#, php-format -msgid " Could not set configuration %s" -msgstr "構成 %s を設定できませんでした" - -#: js/settings.js:67 -msgid "Deletion failed" -msgstr "削除に失敗しました" - -#: js/settings.js:83 -msgid "Take over settings from recent server configuration?" -msgstr "最近のサーバー設定から設定を引き継ぎますか?" - -#: js/settings.js:84 -msgid "Keep settings?" -msgstr "設定を保持しますか?" - -#: js/settings.js:99 -msgid "Cannot add server configuration" -msgstr "サーバー設定を追加できません" - -#: js/settings.js:127 -msgid "mappings cleared" -msgstr "マッピングをクリアしました" - -#: js/settings.js:128 -msgid "Success" -msgstr "成功" - -#: js/settings.js:133 -msgid "Error" -msgstr "エラー" - -#: js/settings.js:838 -msgid "Configuration OK" -msgstr "設定OK" - -#: js/settings.js:847 -msgid "Configuration incorrect" -msgstr "設定に誤りがあります" - -#: js/settings.js:856 -msgid "Configuration incomplete" -msgstr "設定が不完全です" - -#: js/settings.js:873 js/settings.js:882 -msgid "Select groups" -msgstr "グループを選択" - -#: js/settings.js:876 js/settings.js:885 -msgid "Select object classes" -msgstr "オブジェクトクラスを選択" - -#: js/settings.js:879 -msgid "Select attributes" -msgstr "属性を選択" - -#: js/settings.js:906 -msgid "Connection test succeeded" -msgstr "接続テストに成功しました" - -#: js/settings.js:913 -msgid "Connection test failed" -msgstr "接続テストに失敗しました" - -#: js/settings.js:922 -msgid "Do you really want to delete the current Server Configuration?" -msgstr "現在のサーバー設定を本当に削除してもよろしいですか?" - -#: js/settings.js:923 -msgid "Confirm Deletion" -msgstr "削除の確認" - -#: lib/wizard.php:79 lib/wizard.php:93 -#, php-format -msgid "%s group found" -msgid_plural "%s groups found" -msgstr[0] "%s グループが見つかりました" - -#: lib/wizard.php:122 -#, php-format -msgid "%s user found" -msgid_plural "%s users found" -msgstr[0] "%s ユーザーが見つかりました" - -#: lib/wizard.php:784 lib/wizard.php:796 -msgid "Invalid Host" -msgstr "無効なホスト" - -#: lib/wizard.php:963 -msgid "Could not find the desired feature" -msgstr "望ましい機能は見つかりませんでした" - -#: templates/part.settingcontrols.php:2 -msgid "Save" -msgstr "保存" - -#: templates/part.settingcontrols.php:4 -msgid "Test Configuration" -msgstr "設定をテスト" - -#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 -msgid "Help" -msgstr "ヘルプ" - -#: templates/part.wizard-groupfilter.php:4 -#, php-format -msgid "Groups meeting these criteria are available in %s:" -msgstr "これらの基準を満たすグループが %s で利用可能:" - -#: templates/part.wizard-groupfilter.php:8 -#: templates/part.wizard-userfilter.php:8 -msgid "only those object classes:" -msgstr "それらのオブジェクトクラスのみ:" - -#: templates/part.wizard-groupfilter.php:17 -#: templates/part.wizard-userfilter.php:17 -msgid "only from those groups:" -msgstr "それらのグループからのみ:" - -#: templates/part.wizard-groupfilter.php:25 -#: templates/part.wizard-loginfilter.php:32 -#: templates/part.wizard-userfilter.php:25 -msgid "Edit raw filter instead" -msgstr "フィルタを編集" - -#: templates/part.wizard-groupfilter.php:30 -#: templates/part.wizard-loginfilter.php:37 -#: templates/part.wizard-userfilter.php:30 -msgid "Raw LDAP filter" -msgstr "LDAP フィルタ" - -#: templates/part.wizard-groupfilter.php:31 -#, php-format -msgid "" -"The filter specifies which LDAP groups shall have access to the %s instance." -msgstr "フィルタは、どの LDAP グループが %s にアクセスするかを指定します。" - -#: templates/part.wizard-groupfilter.php:38 -msgid "groups found" -msgstr "グループが見つかりました" - -#: templates/part.wizard-loginfilter.php:4 -msgid "Users login with this attribute:" -msgstr "この属性でユーザーログイン:" - -#: templates/part.wizard-loginfilter.php:8 -msgid "LDAP Username:" -msgstr "LDAP ユーザー名:" - -#: templates/part.wizard-loginfilter.php:16 -msgid "LDAP Email Address:" -msgstr "LDAP メールアドレス:" - -#: templates/part.wizard-loginfilter.php:24 -msgid "Other Attributes:" -msgstr "他の属性:" - -#: templates/part.wizard-loginfilter.php:38 -#, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action. Example: \"uid=%%uid\"" -msgstr "ログイン実行時に適用するフィルタを定義します。%%uid にはログイン操作におけるユーザー名が入ります。例: \"uid=%%uid\"" - -#: templates/part.wizard-server.php:18 -msgid "Add Server Configuration" -msgstr "サーバー設定を追加" - -#: templates/part.wizard-server.php:30 -msgid "Host" -msgstr "ホスト" - -#: templates/part.wizard-server.php:31 -msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。" - -#: templates/part.wizard-server.php:36 -msgid "Port" -msgstr "ポート" - -#: templates/part.wizard-server.php:44 -msgid "User DN" -msgstr "ユーザーDN" - -#: templates/part.wizard-server.php:45 -msgid "" -"The DN of the client user with which the bind shall be done, e.g. " -"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " -"empty." -msgstr "クライアントユーザーのDNは、特定のものに結びつけることはしません。 例えば uid=agent,dc=example,dc=com. だと匿名アクセスの場合、DNとパスワードは空のままです。" - -#: templates/part.wizard-server.php:52 -msgid "Password" -msgstr "パスワード" - -#: templates/part.wizard-server.php:53 -msgid "For anonymous access, leave DN and Password empty." -msgstr "匿名アクセスの場合は、DNとパスワードを空にしてください。" - -#: templates/part.wizard-server.php:60 -msgid "One Base DN per line" -msgstr "1行に1つのベースDN" - -#: templates/part.wizard-server.php:61 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "拡張タブでユーザーとグループのベースDNを指定することができます。" - -#: templates/part.wizard-userfilter.php:4 -#, php-format -msgid "Limit %s access to users meeting these criteria:" -msgstr "この基準を満たすユーザに対し %s へのアクセスを制限:" - -#: templates/part.wizard-userfilter.php:31 -#, php-format -msgid "" -"The filter specifies which LDAP users shall have access to the %s instance." -msgstr "フィルタは、どのLDAPユーザーが %s にアクセスするかを指定します。" - -#: templates/part.wizard-userfilter.php:38 -msgid "users found" -msgstr "ユーザーが見つかりました" - -#: templates/part.wizardcontrols.php:5 -msgid "Back" -msgstr "戻る" - -#: templates/part.wizardcontrols.php:8 -msgid "Continue" -msgstr "続ける" - -#: templates/settings.php:11 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behavior. Please ask your system administrator to " -"disable one of them." -msgstr "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。" - -#: templates/settings.php:14 -msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "警告: PHP LDAP モジュールがインストールされていません。バックエンドが正しく動作しません。システム管理者にインストールするよう問い合わせてください。" - -#: templates/settings.php:20 -msgid "Connection Settings" -msgstr "接続設定" - -#: templates/settings.php:22 -msgid "Configuration Active" -msgstr "設定はアクティブです" - -#: templates/settings.php:22 -msgid "When unchecked, this configuration will be skipped." -msgstr "チェックを外すと、この設定はスキップされます。" - -#: templates/settings.php:23 -msgid "Backup (Replica) Host" -msgstr "バックアップ(レプリカ)ホスト" - -#: templates/settings.php:23 -msgid "" -"Give an optional backup host. It must be a replica of the main LDAP/AD " -"server." -msgstr "バックアップホストをオプションで指定することができます。メインのLDAP/ADサーバーのレプリカである必要があります。" - -#: templates/settings.php:24 -msgid "Backup (Replica) Port" -msgstr "バックアップ(レプリカ)ポート" - -#: templates/settings.php:25 -msgid "Disable Main Server" -msgstr "メインサーバーを無効にする" - -#: templates/settings.php:25 -msgid "Only connect to the replica server." -msgstr "レプリカサーバーにのみ接続します。" - -#: templates/settings.php:26 -msgid "Case insensitve LDAP server (Windows)" -msgstr "大文字/小文字を区別しないLDAPサーバー(Windows)" - -#: templates/settings.php:27 -msgid "Turn off SSL certificate validation." -msgstr "SSL証明書の確認を無効にする。" - -#: templates/settings.php:27 -#, php-format -msgid "" -"Not recommended, use it for testing only! If connection only works with this" -" option, import the LDAP server's SSL certificate in your %s server." -msgstr "推奨されません、テストにおいてのみ使用してください!このオプションでのみ接続が動作する場合は、LDAP サーバーのSSL証明書を %s サーバーにインポートしてください。" - -#: templates/settings.php:28 -msgid "Cache Time-To-Live" -msgstr "キャッシュのTTL" - -#: templates/settings.php:28 -msgid "in seconds. A change empties the cache." -msgstr "秒。変更後にキャッシュがクリアされます。" - -#: templates/settings.php:30 -msgid "Directory Settings" -msgstr "ディレクトリ設定" - -#: templates/settings.php:32 -msgid "User Display Name Field" -msgstr "ユーザー表示名のフィールド" - -#: templates/settings.php:32 -msgid "The LDAP attribute to use to generate the user's display name." -msgstr "ユーザーの表示名の生成に利用するLDAP属性" - -#: templates/settings.php:33 -msgid "Base User Tree" -msgstr "ベースユーザーツリー" - -#: templates/settings.php:33 -msgid "One User Base DN per line" -msgstr "1行に1つのユーザーベースDN" - -#: templates/settings.php:34 -msgid "User Search Attributes" -msgstr "ユーザー検索属性" - -#: templates/settings.php:34 templates/settings.php:37 -msgid "Optional; one attribute per line" -msgstr "オプション:1行に1属性" - -#: templates/settings.php:35 -msgid "Group Display Name Field" -msgstr "グループ表示名のフィールド" - -#: templates/settings.php:35 -msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "ユーザのグループ表示名の生成に利用するLDAP属性" - -#: templates/settings.php:36 -msgid "Base Group Tree" -msgstr "ベースグループツリー" - -#: templates/settings.php:36 -msgid "One Group Base DN per line" -msgstr "1行に1つのグループベースDN" - -#: templates/settings.php:37 -msgid "Group Search Attributes" -msgstr "グループ検索属性" - -#: templates/settings.php:38 -msgid "Group-Member association" -msgstr "グループとメンバーの関連付け" - -#: templates/settings.php:39 -msgid "Nested Groups" -msgstr "ネスト化ブロック" - -#: templates/settings.php:39 -msgid "" -"When switched on, groups that contain groups are supported. (Only works if " -"the group member attribute contains DNs.)" -msgstr "オンに切り替えたら、グループを含むグループがサポートされます。(グループメンバーの属性がDNを含む場合のみ有効です。)" - -#: templates/settings.php:41 -msgid "Special Attributes" -msgstr "特殊属性" - -#: templates/settings.php:43 -msgid "Quota Field" -msgstr "クォータフィールド" - -#: templates/settings.php:44 -msgid "Quota Default" -msgstr "クォータのデフォルト" - -#: templates/settings.php:44 -msgid "in bytes" -msgstr "バイト" - -#: templates/settings.php:45 -msgid "Email Field" -msgstr "メールフィールド" - -#: templates/settings.php:46 -msgid "User Home Folder Naming Rule" -msgstr "ユーザーのホームフォルダー命名規則" - -#: templates/settings.php:46 -msgid "" -"Leave empty for user name (default). Otherwise, specify an LDAP/AD " -"attribute." -msgstr "ユーザー名を空のままにしてください(デフォルト)。もしくは、LDAPもしくはADの属性を指定してください。" - -#: templates/settings.php:52 -msgid "Internal Username" -msgstr "内部ユーザー名" - -#: templates/settings.php:53 -msgid "" -"By default the internal username will be created from the UUID attribute. It" -" makes sure that the username is unique and characters do not need to be " -"converted. The internal username has the restriction that only these " -"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " -"with their ASCII correspondence or simply omitted. On collisions a number " -"will be added/increased. The internal username is used to identify a user " -"internally. It is also the default name for the user home folder. It is also" -" a part of remote URLs, for instance for all *DAV services. With this " -"setting, the default behavior can be overridden. To achieve a similar " -"behavior as before ownCloud 5 enter the user display name attribute in the " -"following field. Leave it empty for default behavior. Changes will have " -"effect only on newly mapped (added) LDAP users." -msgstr "デフォルトでは、内部ユーザー名はUUID属性から作成されます。これにより、ユーザー名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザー名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザー名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダー名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザー表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザーにおいてのみ有効となります。" - -#: templates/settings.php:54 -msgid "Internal Username Attribute:" -msgstr "内部ユーザー名属性:" - -#: templates/settings.php:55 -msgid "Override UUID detection" -msgstr "UUID検出を再定義する" - -#: templates/settings.php:56 -msgid "" -"By default, the UUID attribute is automatically detected. The UUID attribute" -" is used to doubtlessly identify LDAP users and groups. Also, the internal " -"username will be created based on the UUID, if not specified otherwise " -"above. You can override the setting and pass an attribute of your choice. " -"You must make sure that the attribute of your choice can be fetched for both" -" users and groups and it is unique. Leave it empty for default behavior. " -"Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザーとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザー名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザーとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザーとLDAPグループに対してのみ有効となります。" - -#: templates/settings.php:57 -msgid "UUID Attribute for Users:" -msgstr "ユーザーの UUID 属性:" - -#: templates/settings.php:58 -msgid "UUID Attribute for Groups:" -msgstr "グループの UUID 属性:" - -#: templates/settings.php:59 -msgid "Username-LDAP User Mapping" -msgstr "ユーザー名とLDAPユーザのマッピング" - -#: templates/settings.php:60 -msgid "" -"Usernames are used to store and assign (meta) data. In order to precisely " -"identify and recognize users, each LDAP user will have a internal username. " -"This requires a mapping from username to LDAP user. The created username is " -"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " -"to reduce LDAP interaction, but it is not used for identification. If the DN" -" changes, the changes will be found. The internal username is used all over." -" Clearing the mappings will have leftovers everywhere. Clearing the mappings" -" is not configuration sensitive, it affects all LDAP configurations! Never " -"clear the mappings in a production environment, only in a testing or " -"experimental stage." -msgstr "ユーザー名は(メタ)データの保存と割り当てに使用されます。ユーザーを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザー名からLDAPユーザーへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" - -#: templates/settings.php:61 -msgid "Clear Username-LDAP User Mapping" -msgstr "ユーザー名とLDAPユーザーのマッピングをクリアする" - -#: templates/settings.php:61 -msgid "Clear Groupname-LDAP Group Mapping" -msgstr "グループ名とLDAPグループのマッピングをクリアする" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po deleted file mode 100644 index c24eb2a95d..0000000000 --- a/l10n/ja_JP/user_webdavauth.po +++ /dev/null @@ -1,37 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Daisuke Deguchi , 2012 -# Daisuke Deguchi , 2012-2013 -# plazmism , 2013 -# tt yn , 2013 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 01:10+0000\n" -"Last-Translator: tt yn \n" -"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja_JP\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: templates/settings.php:3 -msgid "WebDAV Authentication" -msgstr "WebDAV 認証" - -#: templates/settings.php:4 -msgid "Address: " -msgstr "アドレス:" - -#: templates/settings.php:7 -msgid "" -"The user credentials will be sent to this address. This plugin checks the " -"response and will interpret the HTTP statuscodes 401 and 403 as invalid " -"credentials, and all other responses as valid credentials." -msgstr "ユーザーの権限情報をこのアドレスに送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index ccd88150ff..51515a4381 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index e4d6ee44d8..38bc4b02d3 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index d58859f710..50638fe851 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "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 a7bce5d649..eb3cec90fc 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "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 784c9fe0d7..b3637067b2 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "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 57b7f8e5cc..c04658c060 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "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 75765928b3..8c2622025d 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "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 f4f54f3875..3fb700b81f 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "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 11347d9c39..f199b45b0c 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "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 d71c2f34a1..392890f6e2 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "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 fd9350af6b..eb6d284735 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "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 aeb74b71b8..af28ca61f4 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" +"POT-Creation-Date: 2014-03-13 17:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 53f5747ac1cefb7b9f8de137f9b9d0d8919c81fa Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 14 Mar 2014 01:55:34 -0400 Subject: [PATCH 159/333] [tx-robot] updated from transifex --- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 51515a4381..fad824e4cf 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 38bc4b02d3..5ed78456ae 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 50638fe851..2ca671e3d6 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "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 eb3cec90fc..f77ce30c0e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "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 b3637067b2..a69b4d0a8a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "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 c04658c060..2dd1785039 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "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 8c2622025d..9fd8be348a 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "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 3fb700b81f..5a827a9fc3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "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 f199b45b0c..c76e18fa33 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "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 392890f6e2..2a09a545ff 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "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 eb6d284735..71af3cea43 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "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 af28ca61f4..8fbfd39986 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:20-0400\n" +"POT-Creation-Date: 2014-03-14 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 84c96c2bf701711cc54d1bb44b49e364123a5aa9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 09:14:52 +0100 Subject: [PATCH 160/333] mobile: don't require a minimum width for controls bar --- core/css/mobile.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/css/mobile.css b/core/css/mobile.css index a63aa902d3..15ff8c6545 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -18,5 +18,10 @@ display: none; } +/* don’t require a minimum width for controls bar */ +#controls { + min-width: initial !important; +} + } From eb7b12525438df4345a588f1e87d208daa040654 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 09:15:20 +0100 Subject: [PATCH 161/333] mobile: position share dropdown --- core/css/mobile.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/css/mobile.css b/core/css/mobile.css index 15ff8c6545..665ad0daae 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -23,5 +23,11 @@ min-width: initial !important; } +/* position share dropdown */ +#dropdown { + margin-right: 10% !important; + width: 80% !important; +} + } From ec67d7e63528069269e4469b4feeeb9b52b90680 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 09:16:53 +0100 Subject: [PATCH 162/333] mobile: first mobile fixes for Files. We still need to hide Rename and Versions --- apps/files/css/mobile.css | 44 +++++++++++++++++++++++++++++++++++++++ apps/files/index.php | 1 + 2 files changed, 45 insertions(+) create mode 100644 apps/files/css/mobile.css diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css new file mode 100644 index 0000000000..5f1c08af58 --- /dev/null +++ b/apps/files/css/mobile.css @@ -0,0 +1,44 @@ +@media only screen and (max-width: 600px) { + +/* don’t require a minimum width for files table */ +#body-user #filestable { + min-width: initial !important; +} + +/* hide size and date columns */ +table th#headerSize, +table td.filesize, +table th#headerDate, +table td.date { + display: none; +} + +/* restrict length of displayed filename to prevent overflow */ +table td.filename .nametext { + max-width: 75% !important; +} + +/* do not show Rename or Versions on mobile */ +#fileList .action-rename, +#fileList .action-versions { + display: none !important; +} + +/* always show actions on mobile, not only on hover */ +#fileList a.action { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)" !important; + filter: alpha(opacity=20) !important; + opacity: .2 !important; + display: inline !important; +} +/* some padding for better clickability */ +#fileList a.action img { + padding: 0 6px 0 12px; +} +/* hide text of the actions on mobile */ +#fileList a.action span { + display: none; +} + + +} diff --git a/apps/files/index.php b/apps/files/index.php index ad7a2e210e..a856a56136 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -27,6 +27,7 @@ OCP\User::checkLoggedIn(); // Load the files we need OCP\Util::addStyle('files', 'files'); OCP\Util::addStyle('files', 'upload'); +OCP\Util::addStyle('files', 'mobile'); OCP\Util::addscript('files', 'file-upload'); OCP\Util::addscript('files', 'jquery.iframe-transport'); OCP\Util::addscript('files', 'jquery.fileupload'); From b37aae9925a1d5516a24f1f9db31a156c2d3bc72 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 10:33:19 +0100 Subject: [PATCH 163/333] mobile: menu togglable for mobile, use code by @PVince81 --- core/css/mobile.css | 65 +++++++++++++++++++++++++++++++++++++++++++++ core/js/js.js | 40 ++++++++++++++++++++++++++++ 2 files changed, 105 insertions(+) diff --git a/core/css/mobile.css b/core/css/mobile.css index 665ad0daae..5a465b35fb 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -18,6 +18,71 @@ display: none; } +/* toggle navigation */ +#content-wrapper { + padding-left: 0; +} + +#navigation { + top: 45px; + bottom: initial; + width: 90%; + max-width: 320px; + max-height: 90%; + margin-top: 0; + top: 45px; + background-color: rgba(36, 40, 47, .97); + overflow-x: initial; + border-bottom-right-radius: 7px; + border-bottom: 1px #333 solid; + border-right: 1px #333 solid; + box-shadow: 0 0 7px rgba(29,45,68,.97); + display: none; +} +#navigation, #navigation * { + box-sizing:border-box; -moz-box-sizing:border-box; +} +#navigation li { + display: inline-block; +} +#navigation a { + width: 70px; + height: 80px; + display: inline-block; + text-align: center; + padding: 20px 0; +} +#navigation a span { + display: inline-block; + font-size: 13px; + padding-bottom: 0; + padding-left: 0; + width: initial; +} +#navigation .icon { + margin: 0 auto; + padding: 0; +} +#navigation li:first-child .icon { + padding-top: 0; +} +/* Apps management as sticky footer */ +#navigation .wrapper { + min-height: initial; + margin: 0; +} +#apps-management, #navigation .push { + height: initial; +} + + + +/* shift to account for missing navigation */ +#body-user #controls, +#body-settings #controls { + padding-left: 0; +} + /* don’t require a minimum width for controls bar */ #controls { min-width: initial !important; diff --git a/core/js/js.js b/core/js/js.js index 841f3a769f..2b3a9f0477 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -482,6 +482,29 @@ var OC={ }).show(); }, 'html'); } + }, + + // for menu toggling + registerMenu: function($toggle, $menuEl) { + $menuEl.addClass('menu'); + $toggle.addClass('menutoggle'); + $toggle.on('click', function(event) { + if ($menuEl.is(OC._currentMenu)) { + $menuEl.hide(); + OC._currentMenu = null; + OC._currentMenuToggle = null; + return false; + } + // another menu was open? + else if (OC._currentMenu) { + // close it + OC._currentMenu.hide(); + } + $menuEl.show(); + OC._currentMenu = $menuEl; + OC._currentMenuToggle = $toggle; + return false + }); } }; OC.search.customResults={}; @@ -940,6 +963,23 @@ function initCore() { $('a.action').tipsy({gravity:'s', fade:true, live:true}); $('td .modified').tipsy({gravity:'s', fade:true, live:true}); $('input').tipsy({gravity:'w', fade:true}); + + // toggle for menus + $(document).on('mouseup.closemenus', function(event) { + var $el = $(event.target); + if ($el.closest('.menu').length || $el.closest('.menutoggle').length) { + // don't close when clicking on the menu directly or a menu toggle + return false; + } + if (OC._currentMenu) { + OC._currentMenu.hide(); + } + OC._currentMenu = null; + OC._currentMenuToggle = null; + }); + + // toggle the navigation on mobile + OC.registerMenu($('#header #owncloud'), $('#navigation')); } $(document).ready(initCore); From ac48563efd74675f75b2b300b7d8b0c4f74be70b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 10:48:28 +0100 Subject: [PATCH 164/333] add spans around replaced 'Shared' indicators to make text hide on mobile --- core/js/share.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 129e50b22d..90119105fa 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -48,7 +48,7 @@ OC.Share={ var action = $(file).find('.fileactions .action[data-action="Share"]'); var img = action.find('img').attr('src', image); action.addClass('permanent'); - action.html(' '+t('core', 'Shared')).prepend(img); + action.html(' '+t('core', 'Shared')+'').prepend(img); } else { var dir = $('#dir').val(); if (dir.length > 1) { @@ -63,7 +63,7 @@ OC.Share={ if (img.attr('src') != OC.imagePath('core', 'actions/public')) { img.attr('src', image); $(action).addClass('permanent'); - $(action).html(' '+t('core', 'Shared')).prepend(img); + $(action).html(' '+t('core', 'Shared')+'').prepend(img); } }); } @@ -103,10 +103,10 @@ OC.Share={ var img = action.find('img').attr('src', image); if (shares) { action.addClass('permanent'); - action.html(' '+ escapeHTML(t('core', 'Shared'))).prepend(img); + action.html(' '+ escapeHTML(t('core', 'Shared'))+'').prepend(img); } else { action.removeClass('permanent'); - action.html(' '+ escapeHTML(t('core', 'Share'))).prepend(img); + action.html(' '+ escapeHTML(t('core', 'Share'))+'').prepend(img); } } } From 74eb9bea22bb65294a29c0438536f03643d22749 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 11:08:16 +0100 Subject: [PATCH 165/333] add 'body-public' ID to body in base layout so it can be identified via CSS --- core/templates/layout.base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index bae52a7323..b3e2f4da91 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -31,7 +31,7 @@ - + From 6f96ab3e9093d03088ebd6bde399edf2d1ba2fac Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Fri, 14 Mar 2014 11:13:45 +0100 Subject: [PATCH 166/333] make it possible to influence output type of \OC_Image --- lib/private/image.php | 47 ++++++++++++++++++++++++++++++++++++------- 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/lib/private/image.php b/lib/private/image.php index a4a23f0f09..df49bf9848 100644 --- a/lib/private/image.php +++ b/lib/private/image.php @@ -150,9 +150,12 @@ class OC_Image { * @brief Outputs the image. * @returns bool */ - public function show() { - header('Content-Type: '.$this->mimeType()); - return $this->_output(); + public function show($mimeType=null) { + if($mimeType === null) { + $mimeType = $this->mimeType(); + } + header('Content-Type: '.$mimeType); + return $this->_output(null, $mimeType); } /** @@ -161,20 +164,23 @@ class OC_Image { * @param string $filePath */ - public function save($filePath=null) { + public function save($filePath=null, $mimeType=null) { + if($mimeType === null) { + $mimeType = $this->mimeType(); + } if($filePath === null && $this->filePath === null) { OC_Log::write('core', __METHOD__.'(): called with no path.', OC_Log::ERROR); return false; } elseif($filePath === null && $this->filePath !== null) { $filePath = $this->filePath; } - return $this->_output($filePath); + return $this->_output($filePath, $mimeType); } /** * @brief Outputs/saves the image. */ - private function _output($filePath=null) { + private function _output($filePath=null, $mimeType=null) { if($filePath) { if (!file_exists(dirname($filePath))) mkdir(dirname($filePath), 0777, true); @@ -192,7 +198,34 @@ class OC_Image { return false; } - switch($this->imageType) { + $imageType = null; + if($mimeType !== null) { + switch($mimeType) { + case 'image/gif': + $this->imageType = IMAGETYPE_GIF; + break; + case 'image/jpeg': + case 'image/pjpeg': + $this->imageType = IMAGETYPE_JPEG; + break; + case 'image/png': + $this->imageType = IMAGETYPE_PNG; + break; + case 'image/x-xbitmap': + $this->imageType = IMAGETYPE_XBM; + break; + case 'image/bmp': + $this->imageType = IMAGETYPE_BMP; + break; + default: + $this->imageType = IMAGETYPE_PNG; + break; + } + } else { + $imageType = $this->imageType; + } + + switch($imageType) { case IMAGETYPE_GIF: $retVal = imagegif($this->resource, $filePath); break; From 0c3c75efd5fd2e68d67ac45a63e6226d1b8e822b Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Fri, 14 Mar 2014 11:14:09 +0100 Subject: [PATCH 167/333] always output a png --- lib/private/preview.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/preview.php b/lib/private/preview.php index 74051fbc2a..70bfdb6e70 100755 --- a/lib/private/preview.php +++ b/lib/private/preview.php @@ -463,7 +463,7 @@ class Preview { if (is_null($this->preview)) { $this->getPreview(); } - $this->preview->show(); + $this->preview->show('image/png'); return; } From 1a116828cf00b434c5d3f5a3948393a714899df9 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 14 Mar 2014 10:48:07 +0100 Subject: [PATCH 168/333] Added warning for trusted_domains after CLI upgrade If trusted_domains is not set after a CLI upgrade, show a warning in the output. --- core/command/upgrade.php | 26 ++++++++++++++++++++++++++ lib/private/updater.php | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 128d27aa3d..6e5681b26d 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -27,6 +27,12 @@ class Upgrade extends Command { ; } + /** + * Execute the upgrade command + * + * @param InputInterface $input input interface + * @param OutputInterface $output output interface + */ protected function execute(InputInterface $input, OutputInterface $output) { global $RUNTIME_NOAPPS; @@ -69,6 +75,9 @@ class Upgrade extends Command { }); $updater->upgrade(); + + $this->postUpgradeCheck($input, $output); + return self::ERROR_SUCCESS; } else if(\OC_Config::getValue('maintenance', false)) { //Possible scenario: ownCloud core is updated but an app failed @@ -84,4 +93,21 @@ class Upgrade extends Command { return self::ERROR_UP_TO_DATE; } } + + /** + * Perform a post upgrade check (specific to the command line tool) + * + * @param InputInterface $input input interface + * @param OutputInterface $output output interface + */ + protected function postUpgradeCheck(InputInterface $input, OutputInterface $output) { + $trustedDomains = \OC_Config::getValue('trusted_domains', array()); + if (empty($trustedDomains)) { + $output->write( + 'The setting "trusted_domains" could not be ' . + 'set automatically by the upgrade script, ' . + 'please set it manually' + ); + } + } } diff --git a/lib/private/updater.php b/lib/private/updater.php index fd2d46a1fa..dd8dc84e80 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -108,7 +108,7 @@ class Updater extends BasicEmitter { /* * START CONFIG CHANGES FOR OLDER VERSIONS */ - if (version_compare($currentVersion, '6.90.1', '<')) { + if (!\OC::$CLI && version_compare($currentVersion, '6.90.1', '<')) { // Add the overwriteHost config if it is not existant // This is added to prevent host header poisoning \OC_Config::setValue('trusted_domains', \OC_Config::getValue('trusted_domains', array(\OC_Request::serverHost()))); From c140010e813480c5d67ec7b7751b0b36a8a3af65 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Fri, 14 Mar 2014 11:17:20 +0100 Subject: [PATCH 169/333] don't change mimetype of whole image object --- lib/private/image.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/private/image.php b/lib/private/image.php index df49bf9848..d108360b2a 100644 --- a/lib/private/image.php +++ b/lib/private/image.php @@ -202,23 +202,23 @@ class OC_Image { if($mimeType !== null) { switch($mimeType) { case 'image/gif': - $this->imageType = IMAGETYPE_GIF; + $imageType = IMAGETYPE_GIF; break; case 'image/jpeg': case 'image/pjpeg': - $this->imageType = IMAGETYPE_JPEG; + $imageType = IMAGETYPE_JPEG; break; case 'image/png': - $this->imageType = IMAGETYPE_PNG; + $imageType = IMAGETYPE_PNG; break; case 'image/x-xbitmap': - $this->imageType = IMAGETYPE_XBM; + $imageType = IMAGETYPE_XBM; break; case 'image/bmp': - $this->imageType = IMAGETYPE_BMP; + $imageType = IMAGETYPE_BMP; break; default: - $this->imageType = IMAGETYPE_PNG; + $imageType = IMAGETYPE_PNG; break; } } else { From 55c630ea7dad32bb85171c74e7fa8d67e8546dec Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 14 Mar 2014 14:47:40 +0100 Subject: [PATCH 170/333] remove unneeded icon class --- apps/files/templates/index.php | 8 ++++---- apps/files_sharing/templates/authenticate.php | 2 +- apps/files_sharing/templates/public.php | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index faf24d82b8..5b0bad7f34 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -5,15 +5,15 @@

t('New'));?>
    -
  • t('Text file'));?>

  • -
  • t('Folder'));?>

  • -
@@ -35,7 +35,7 @@ - +
/> diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 19b1fb2763..055329ecab 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -12,7 +12,7 @@ placeholder="" value="" autocomplete="off" autocapitalize="off" autocorrect="off" autofocus /> - +

diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 3eb84ce167..fc8d59e1e8 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -9,7 +9,7 @@ -
- - array())); ?> - $mount): ?> - > + + > - + - ').attr({ - "class": "filename", + "class": "filename svg", "style": 'background-image:url('+iconurl+'); background-size: 32px;' }); var rand = Math.random().toString(16).slice(2); From 832d3c954edacfc1187cc55f58eb57c542489b1c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 14:48:54 +0100 Subject: [PATCH 316/333] enable SVG->PNG fallback for 'New' menu --- apps/files/templates/index.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 5b0bad7f34..34acd9c4f5 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -5,15 +5,15 @@
t('New'));?>
    -
  • t('Text file'));?>

  • -
  • t('Folder'));?>

  • -
From 53b1e4a00b30db8d385370680ab5d81676b3644e Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 17:13:12 +0100 Subject: [PATCH 317/333] remove additional radio button width declaration --- settings/css/settings.css | 1 - 1 file changed, 1 deletion(-) diff --git a/settings/css/settings.css b/settings/css/settings.css index 280d022af4..2cb1867087 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -152,7 +152,6 @@ table.grid td.date{ /* ADMIN */ span.securitywarning {color:#C33; font-weight:bold; } span.connectionwarning {color:#933; font-weight:bold; } -input[type=radio] { width:1em; } table.shareAPI td { padding-bottom: 0.8em; } #mail_settings p label:first-child { From ec46a071957dd21fa0613ebeb7a539ee8b1eaa47 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 17:13:36 +0100 Subject: [PATCH 318/333] convert input metrics to px --- core/css/styles.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index bd8111ebc7..9719de191e 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -101,9 +101,14 @@ select, button, .button, #quota, .pager li a { - width:10em; margin:.3em; padding:.6em .5em .4em; - font-size:1em; - background:#fff; color:#333; border:1px solid #ddd; outline:none; + width: 130px; + margin: 3px 3px 3px 0; + padding: 7px 6px 5px; + font-size: 13px; + background: #fff; + color: #333; + border: 1px solid #ddd; + outline: none; border-radius: 3px; } input[type="hidden"] { From 6a8e93ffa63f17624fbc7de54c501b4c94b0c81a Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 27 Mar 2014 23:53:19 +0100 Subject: [PATCH 319/333] fix breadcrumbs for IE8 --- apps/files/templates/part.breadcrumb.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index 2a0df62276..69b4cbca10 100644 --- a/apps/files/templates/part.breadcrumb.php +++ b/apps/files/templates/part.breadcrumb.php @@ -1,4 +1,4 @@ -
" data-dir=''> +
" data-dir=''> Date: Wed, 26 Mar 2014 17:48:33 +0100 Subject: [PATCH 320/333] prevent dimmed ocdialog div from scrolling --- core/css/jquery.ocdialog.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css index 236968e324..a1221137bc 100644 --- a/core/css/jquery.ocdialog.css +++ b/core/css/jquery.ocdialog.css @@ -43,7 +43,7 @@ background-color: #000; opacity: .20;filter:Alpha(Opacity=20); z-index: 999; - position: absolute; + position: fixed; top: 0; left: 0; width: 100%; height: 100%; } From ccc55f40e6be7c9cc5e5484721998b2d60aeedc9 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 28 Mar 2014 01:55:47 -0400 Subject: [PATCH 321/333] [tx-robot] updated from transifex --- apps/files/l10n/ru.php | 5 +++++ apps/files_encryption/l10n/ru.php | 1 + apps/files_external/l10n/ru.php | 2 ++ core/l10n/es.php | 6 +++--- core/l10n/ru.php | 11 +++++++++++ core/l10n/tr.php | 2 +- l10n/cs_CZ/settings.po | 12 ++++++------ l10n/es/core.po | 12 ++++++------ l10n/pt_BR/settings.po | 12 ++++++------ l10n/ru/core.po | 29 +++++++++++++++-------------- l10n/ru/files.po | 17 +++++++++-------- l10n/ru/files_encryption.po | 9 +++++---- l10n/ru/files_external.po | 17 +++++++++-------- l10n/ru/settings.po | 16 ++++++++-------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 8 ++++---- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 12 ++++++------ l10n/templates/private.pot | 12 ++++++------ l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 6 +++--- l10n/tr/settings.po | 12 ++++++------ settings/l10n/cs_CZ.php | 3 +++ settings/l10n/pt_BR.php | 3 +++ settings/l10n/ru.php | 6 ++++++ settings/l10n/tr.php | 3 +++ 32 files changed, 136 insertions(+), 98 deletions(-) diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 2c0335f3cc..ac958e5dfd 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s" => "Невозможно переместить %s", "File name cannot be empty." => "Имя файла не может быть пустым.", +"\"%s\" is an invalid file name." => "\"%s\" это не правильное имя файла.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", +"The target folder has been moved or deleted." => "Целевой каталог был перемещен или удален.", "The name %s is already used in the folder %s. Please choose a different name." => "Имя %s уже используется для каталога %s. Пожалуйста, выберите другое имя.", "Not a valid source" => "Неправильный источник", "Server is not allowed to open URLs, please check the server configuration" => "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера", @@ -27,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Неверный каталог.", "Files" => "Файлы", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Невозможно загрузить {filename}, так как это либо каталог, либо файл нулевого размера", +"Total file size {size1} exceeds upload limit {size2}" => "Полный размер файла {size1} превышает лимит по загрузке {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Не достаточно свободного места, Вы загружаете {size1} но осталось только {size2}", "Upload cancelled." => "Загрузка отменена.", "Could not get result from server." => "Не удалось получить ответ от сервера.", "File upload is in progress. Leaving the page now will cancel the upload." => "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку.", @@ -48,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n файл","%n файла","%n файлов"), "{dirs} and {files}" => "{dirs} и {files}", "_Uploading %n file_::_Uploading %n files_" => array("Закачка %n файла","Закачка %n файлов","Закачка %n файлов"), +"\"{name}\" is an invalid file name." => "\"{name}\" это не правильное имя файла.", "Your storage is full, files can not be updated or synced anymore!" => "Ваше хранилище заполнено, произведите очистку перед загрузкой новых файлов.", "Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти заполнено ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Приложение для шифрования активно, но ваши ключи не инициализированы, пожалуйста, перелогиньтесь", diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index bce245ce68..ba98486893 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Пожалуйста, убедитесь, что версия PHP 5.3.3 или новее, а также, что OpenSSL и соответствующее расширение PHP включены и правильно настроены. На данный момент приложение шифрования отключено.", "Following users are not set up for encryption:" => "Для следующих пользователей шифрование не настроено:", "Initial encryption started... This can take some time. Please wait." => "Начато начальное шифрование... Это может занять какое-то время. Пожалуйста, подождите.", +"Initial encryption running... Please try again later." => "Работает первоначальное шифрование... Пожалуйста, повторите попытку позже.", "Go directly to your " => "Перейти прямо в", "personal settings" => "персональные настройки", "Encryption" => "Шифрование", diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index 66d6f9fa6b..8ed437839c 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Предоставление доступа", "Please provide a valid Dropbox app key and secret." => "Пожалуйста, предоставьте действующий ключ Dropbox и пароль.", "Error configuring Google Drive storage" => "Ошибка при настройке хранилища Google Drive", +"Saved" => "Сохранено", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Внимание: Поддержка FTP не включена в PHP. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы включить.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Внимание: Поддержка Curl в PHP не включена или не установлена. Подключение ownCloud / WebDAV или GoogleDrive невозможно. Попросите вашего системного администратора установить его.", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Пользователи", "Delete" => "Удалить", "Enable User External Storage" => "Включить пользовательские внешние носители", +"Allow users to mount the following external storage" => "Разрешить пользователям монтировать следующую внешнюю систему хранения данных", "SSL root certificates" => "Корневые сертификаты SSL", "Import Root Certificate" => "Импортировать корневые сертификаты" ); diff --git a/core/l10n/es.php b/core/l10n/es.php index 7f4d46aa1f..52f1a15089 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,6 +1,6 @@ "La fecha de caducidad está en el pasado.", +"Expiration date is in the past." => "Ha pasado la fecha de caducidad", "Couldn't send mail to following users: %s " => "No se pudo enviar el mensaje a los siguientes usuarios: %s", "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", @@ -105,7 +105,7 @@ $TRANSLATIONS = array( "Edit tags" => "Editar etiquetas", "Error loading dialog template: {error}" => "Error cargando plantilla de diálogo: {error}", "No tags selected for deletion." => "No hay etiquetas seleccionadas para borrar.", -"Please reload the page." => "Vuelva a cargar la página.", +"Please reload the page." => "Recargue/Actualice la página", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", "%s password reset" => "%s restablecer contraseña", @@ -179,6 +179,6 @@ $TRANSLATIONS = array( "Thank you for your patience." => "Gracias por su paciencia.", "Updating ownCloud to version %s, this may take a while." => "Actualizando ownCloud a la versión %s, esto puede demorar un tiempo.", "This ownCloud instance is currently being updated, which may take a while." => "Esta versión de owncloud se está actualizando, esto puede demorar un tiempo.", -"Please reload this page after a short time to continue using ownCloud." => "Por favor , recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo." +"Please reload this page after a short time to continue using ownCloud." => "Por favor, recargue la página tras un corto periodo de tiempo para continuar usando ownCloud" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 8d84e7d31b..e2fdc36be0 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -1,5 +1,6 @@ "Дата истечения срока действия в прошлом.", "Couldn't send mail to following users: %s " => "Невозможно отправить письмо следующим пользователям: %s", "Turned on maintenance mode" => "Режим отладки включён", "Turned off maintenance mode" => "Режим отладки отключён", @@ -56,6 +57,11 @@ $TRANSLATIONS = array( "(all selected)" => "(выбраны все)", "({count} selected)" => "({count} выбрано)", "Error loading file exists template" => "Ошибка при загрузке шаблона существующего файла", +"Very weak password" => "Очень слабый пароль", +"Weak password" => "Слабый пароль", +"So-so password" => "Так себе пароль", +"Good password" => "Хороший пароль", +"Strong password" => "Устойчивый к взлому пароль", "Shared" => "Общие", "Share" => "Открыть доступ", "Error" => "Ошибка", @@ -103,6 +109,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the ownCloud community." => "При обновлении произошла ошибка. Пожалуйста сообщите об этом в ownCloud сообщество.", "The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...", "%s password reset" => "%s сброс пароля", +"A problem has occurred whilst sending the email, please contact your administrator." => "Произошла ошибка при отправке сообщения электронной почты, пожалуйста, свяжитесь с Вашим администратором.", "Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Ссылка для сброса пароля отправлена вам ​​по электронной почте.
Если вы не получите письмо в пределах одной-двух минут, проверьте папку Спам.
Если письма там нет, обратитесь к своему администратору.", "Request failed!
Did you make sure your email/username was right?" => "Запрос не удался. Вы уверены, что email или имя пользователя указаны верно?", @@ -115,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "На страницу авторизации", "New password" => "Новый пароль", "Reset password" => "Сбросить пароль", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X не поддерживается и %s не будет работать правильно на этой платформе. Используйте ее на свой страх и риск!", +"For the best results, please consider using a GNU/Linux server instead." => "Для достижения наилучших результатов, пожалуйста, рассмотрите возможность использовать взамен GNU/Linux сервер.", "Personal" => "Личное", "Users" => "Пользователи", "Apps" => "Приложения", @@ -140,6 +149,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваша папка с данными и файлы возможно доступны из интернета потому что файл .htaccess не работает.", "For information how to properly configure your server, please see the documentation." => "Для информации, как правильно настроить Ваш сервер, пожалуйста загляните в документацию.", "Create an admin account" => "Создать учётную запись администратора", +"Storage & database" => "Система хранения данных & база данных", "Data folder" => "Директория с данными", "Configure the database" => "Настройка базы данных", "will be used" => "будет использовано", @@ -162,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "запомнить", "Log in" => "Войти", "Alternative Logins" => "Альтернативные имена пользователя", +"Hey there,

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

" => "Здравствуйте,

просто даём вам знать, что %s открыл доступ к %s для вас.
Посмотреть!

", "This ownCloud instance is currently in single user mode." => "Эта установка ownCloud в настоящее время в однопользовательском режиме.", "This means only administrators can use the instance." => "Это значит, что только администраторы могут использовать эту установку.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Обратитесь к вашему системному администратору если это сообщение не исчезает или появляется неожиданно.", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 03544cd3c0..affa1b063d 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -111,7 +111,7 @@ $TRANSLATIONS = array( "%s password reset" => "%s parola sıfırlama", "A problem has occurred whilst sending the email, please contact your administrator." => "E-posta gönderilirken bir hata oluştu. Lütfen yönetinizle iletişime geçin.", "Use the following link to reset your password: {link}" => "Parolanızı sıfırlamak için bu bağlantıyı kullanın: {link}", -"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
Eğer orada da bulamazsanız sistem yöneticinize sorunuz.", +"The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.
Eğer yine bulamazsanız sistem yöneticinize sorunuz.", "Request failed!
Did you make sure your email/username was right?" => "İstek başarısız!
E-posta ve/veya kullanıcı adınızın doğru olduğundan emin misiniz?", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantıyı e-posta olarak alacaksınız.", "Username" => "Kullanıcı Adı", diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b092cba79c..3a2d8b6029 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 21:10+0000\n" +"Last-Translator: m23 \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -436,18 +436,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Poslední cron byl spuštěn v %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Poslední cron byl spuštěn v %s. To se stalo před více než hodinu. Vypadá to, že není něco v pořádku." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron ještě nebyl spuštěn!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/es/core.po b/l10n/es/core.po index 10724eb143..1d3856000d 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 18:40+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 05:55+0000\n" +"Last-Translator: victormce \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +33,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "La fecha de caducidad está en el pasado." +msgstr "Ha pasado la fecha de caducidad" #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -467,7 +467,7 @@ msgstr "No hay etiquetas seleccionadas para borrar." #: js/update.js:8 msgid "Please reload the page." -msgstr "Vuelva a cargar la página." +msgstr "Recargue/Actualice la página" #: js/update.js:17 msgid "" @@ -812,4 +812,4 @@ msgstr "Esta versión de owncloud se está actualizando, esto puede demorar un t #: templates/update.user.php:4 msgid "Please reload this page after a short time to continue using ownCloud." -msgstr "Por favor , recargue esta instancia de onwcloud tras un corto periodo de tiempo y continue usándolo." +msgstr "Por favor, recargue la página tras un corto periodo de tiempo para continuar usando ownCloud" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 2de5517c11..aed155f749 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 19:31+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -431,18 +431,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Último cron foi executado em %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Última cron foi executado em %s. Isso é, mais do que uma hora atrás, algo parece errado." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron não foi executado ainda!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 1c955e4977..fec52335de 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -13,6 +13,7 @@ # stushev, 2013 # eurekafag , 2013 # sk.avenger , 2013 +# Swab , 2014 # Victor Bravo <>, 2013 # vsapronov , 2013 # not_your_conscience , 2013 @@ -23,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:31+0000\n" +"Last-Translator: Swab \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" @@ -35,7 +36,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Дата истечения срока действия в прошлом." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -281,23 +282,23 @@ msgstr "Ошибка при загрузке шаблона существующ #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Очень слабый пароль" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Слабый пароль" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Так себе пароль" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Хороший пароль" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Устойчивый к взлому пароль" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -496,7 +497,7 @@ msgstr "%s сброс пароля" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Произошла ошибка при отправке сообщения электронной почты, пожалуйста, свяжитесь с Вашим администратором." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -559,12 +560,12 @@ msgstr "Сбросить пароль" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X не поддерживается и %s не будет работать правильно на этой платформе. Используйте ее на свой страх и риск!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Для достижения наилучших результатов, пожалуйста, рассмотрите возможность использовать взамен GNU/Linux сервер." #: strings.php:5 msgid "Personal" @@ -686,7 +687,7 @@ msgstr "Создать учётную запись администра #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Система хранения данных & база данных" #: templates/installation.php:77 msgid "Data folder" @@ -787,7 +788,7 @@ msgstr "Альтернативные имена пользователя" msgid "" "Hey there,

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

" -msgstr "" +msgstr "Здравствуйте,

просто даём вам знать, что %s открыл доступ к %s для вас.
Посмотреть!

" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 8e80384b7c..4b5c985dfc 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,6 +8,7 @@ # jekader , 2013 # mogarych , 2014 # eurekafag , 2013 +# Swab , 2014 # Victor Bravo <>, 2013 # vsapronov , 2013 # not_your_conscience , 2013 @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:22+0000\n" +"Last-Translator: Swab \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" @@ -45,7 +46,7 @@ msgstr "Имя файла не может быть пустым." #: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" это не правильное имя файла." #: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" @@ -56,7 +57,7 @@ msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':' #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Целевой каталог был перемещен или удален." #: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format @@ -160,12 +161,12 @@ msgstr "Невозможно загрузить {filename}, так как это #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Полный размер файла {size1} превышает лимит по загрузке {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Не достаточно свободного места, Вы загружаете {size1} но осталось только {size2}" #: js/file-upload.js:340 msgid "Upload cancelled." @@ -263,7 +264,7 @@ msgstr[2] "Закачка %n файлов" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" это не правильное имя файла." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 07f348b79d..d0f028c8df 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -8,15 +8,16 @@ # lord93 , 2013 # jekader , 2013 # eurekafag , 2013 +# Swab , 2014 # Victor Bravo <>, 2013 # vsapronov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:31+0000\n" +"Last-Translator: Swab \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" @@ -108,7 +109,7 @@ msgstr "Начато начальное шифрование... Это може #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Работает первоначальное шифрование... Пожалуйста, повторите попытку позже." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 6af3711cc6..74a21556d8 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Swab , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:41+0000\n" +"Last-Translator: Swab \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" @@ -39,22 +40,22 @@ msgstr "Ошибка при настройке хранилища Google Drive" #: js/settings.js:313 js/settings.js:320 msgid "Saved" -msgstr "" +msgstr "Сохранено" -#: lib/config.php:512 +#: lib/config.php:654 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:516 +#: lib/config.php:658 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:519 +#: lib/config.php:661 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -116,7 +117,7 @@ msgstr "Включить пользовательские внешние нос #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Разрешить пользователям монтировать следующую внешнюю систему хранения данных" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 5ee5f5e35c..5654edd1a8 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 14:41+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" @@ -39,7 +39,7 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Сохранено" #: admin/controller.php:90 msgid "test email settings" @@ -232,23 +232,23 @@ msgstr "Выберите картинку профиля" #: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Очень слабый пароль" #: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Слабый пароль" #: js/personal.js:279 msgid "So-so password" -msgstr "" +msgstr "Так себе пароль" #: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Хороший пароль" #: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Устойчивый к взлому пароль" #: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 8f14123eed..d93a971a80 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index f2639f9303..82e117c528 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 1ef7c2cab9..4d1a870edd 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "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 965c851209..0c968b9069 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,20 +41,20 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:646 +#: lib/config.php:654 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:650 +#: lib/config.php:658 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:653 +#: lib/config.php:661 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/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 2f8678ef6e..dd36e90e60 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "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 d4dcc61a85..19c5f5f273 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "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 5bae82bfe6..76eba3454d 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "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 90e076435a..f599cc3ba6 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,23 +66,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: private/files.php:231 +#: private/files.php:232 msgid "ZIP download is turned off." msgstr "" -#: private/files.php:232 +#: private/files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:233 private/files.php:261 +#: private/files.php:234 private/files.php:262 msgid "Back to Files" msgstr "" -#: private/files.php:258 +#: private/files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: private/files.php:259 +#: private/files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 2925d3cdfd..4a9473b3ff 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,23 +66,23 @@ msgstr "" msgid "web services under your control" msgstr "" -#: files.php:231 +#: files.php:232 msgid "ZIP download is turned off." msgstr "" -#: files.php:232 +#: files.php:233 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:233 files.php:261 +#: files.php:234 files.php:262 msgid "Back to Files" msgstr "" -#: files.php:258 +#: files.php:259 msgid "Selected files too large to generate zip file." msgstr "" -#: files.php:259 +#: files.php:260 msgid "" "Please download the files separately in smaller chunks or kindly ask your " "administrator." diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 2c810d328e..e91e82eccc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "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 73d07c3e4d..f8fe27cf0d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "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 a01f6858bc..e30d5c43f5 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 177ac78651..09a1e3d278 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 13:20+0000\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 19:31+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -490,7 +490,7 @@ msgid "" "The link to reset your password has been sent to your email.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
Eğer orada da bulamazsanız sistem yöneticinize sorunuz." +msgstr "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk/gereksiz dizinini kontrol ediniz.
Eğer yine bulamazsanız sistem yöneticinize sorunuz." #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
Did you make sure your email/username was right?" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 9cf4c3306c..cb9da3017d 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"PO-Revision-Date: 2014-03-27 19:31+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -433,18 +433,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Son cron %s zamanında çalıştırıldı." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Son cron %s zamanında çalıştırıldı. Bu bir saatten daha uzun bir süre, bir şeyler yanlış gibi görünüyor." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron henüz çalıştırılmadı!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 09bfe89d8a..960938b1c6 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Připojení k internetu nefunguje", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", +"Last cron was executed at %s." => "Poslední cron byl spuštěn v %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Poslední cron byl spuštěn v %s. To se stalo před více než hodinu. Vypadá to, že není něco v pořádku.", +"Cron was not executed yet!" => "Cron ještě nebyl spuštěn!", "Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Použít systémovou službu cron pro volání cron.php každých 15 minut.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 4a7554499d..dad6773d6a 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Sem conexão com a internet", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades.", "Cron" => "Cron", +"Last cron was executed at %s." => "Último cron foi executado em %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Última cron foi executado em %s. Isso é, mais do que uma hora atrás, algo parece errado.", +"Cron was not executed yet!" => "Cron não foi executado ainda!", "Execute one task with each page loaded" => "Execute uma tarefa com cada página carregada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos.", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 49f3aeeb65..9cbdeee2c2 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,5 +1,6 @@ "Сохранено", "Email sent" => "Письмо отправлено", "Encryption" => "Шифрование", "Unable to load list from App Store" => "Не удалось загрузить список из App Store", @@ -37,6 +38,11 @@ $TRANSLATIONS = array( "Update" => "Обновить", "Updated" => "Обновлено", "Select a profile picture" => "Выберите картинку профиля", +"Very weak password" => "Очень слабый пароль", +"Weak password" => "Слабый пароль", +"So-so password" => "Так себе пароль", +"Good password" => "Хороший пароль", +"Strong password" => "Устойчивый к взлому пароль", "Decrypting files... Please wait, this can take some time." => "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время.", "deleted" => "удален", "undo" => "отмена", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index e02c6701a9..68b464a5cc 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "İnternet bağlantısı çalışmıyor", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", "Cron" => "Cron", +"Last cron was executed at %s." => "Son cron %s zamanında çalıştırıldı.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Son cron %s zamanında çalıştırıldı. Bu bir saatten daha uzun bir süre, bir şeyler yanlış gibi görünüyor.", +"Cron was not executed yet!" => "Cron henüz çalıştırılmadı!", "Execute one task with each page loaded" => "Yüklenen her sayfa ile bir görev çalıştır", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir.", "Use systems cron service to call the cron.php file every 15 minutes." => "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan.", From f3d6b2f3e918809a189d03a59297c7134e32ab6a Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 25 Mar 2014 11:00:01 +0100 Subject: [PATCH 322/333] Do not retrieve storage stats for trash bin --- apps/files_trashbin/js/trash.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 6aade21050..efe1e89f0b 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -25,6 +25,11 @@ $(document).ready(function() { enableActions(); } + Files.updateStorageStatistics = function() { + // no op because the trashbin doesn't have + // storage info like free space / used space + }; + if (typeof FileActions !== 'undefined') { FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { var tr = FileList.findFileEl(filename); From b9100bc2de3cd94b386ae4c1dff5e0f3c2086f9b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 28 Mar 2014 12:02:49 +0100 Subject: [PATCH 323/333] don't write file if opening a stream to encrypt the data fails --- apps/files_encryption/lib/proxy.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index bae1fded53..6549273c8f 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -128,6 +128,8 @@ class Proxy extends \OC_FileProxy { // re-enable proxy - our work is done \OC_FileProxy::$enabled = $proxyStatus; + } else { + return false; } } } From 2d592ddc8f26e72211d1c01cec8979cd371b8215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 28 Mar 2014 12:07:44 +0100 Subject: [PATCH 324/333] Fix CURLOPT_FOLLOWLOCATION bug with open_basedir or safe_mode restriction enabled. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Squashed commit of the following: commit eaf4f43f687db59137a0b00bc0e12ed4eb0d0943 Merge: 1e9c5be 1e7d7bd Author: Thomas Müller Date: Fri Mar 28 11:49:04 2014 +0100 Merge branch 'master' of https://github.com/kev300/core into kev300-master commit 1e7d7bdd8b5c7f301501cb822cdf2ef0ad3f2872 Author: kev300 Date: Tue Dec 17 14:11:42 2013 +0100 Update util.php commit 3f0723f054a27a506be7f26932ccb54fff6f2be9 Author: kev300 Date: Tue Dec 17 14:09:15 2013 +0100 Update util.php commit 512176abdcfbe5b2b060b91033abc9608912d1f8 Author: kev300 Date: Tue Dec 17 14:02:04 2013 +0100 Update util.php commit 6cbefd080188d287024e0b047b88dd4525d6c2c1 Author: kev300 Date: Mon Dec 16 16:44:46 2013 +0100 Update util.php Fix CURLOPT_FOLLOWLOCATION bug with open_basedir or safe_mode restriction enabled. --- lib/private/util.php | 49 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 45 insertions(+), 4 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index cd152234cc..c48a5505d4 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -1072,13 +1072,13 @@ class OC_Util { public static function getUrlContent($url) { if (function_exists('curl_init')) { $curl = curl_init(); + $max_redirects = 10; curl_setopt($curl, CURLOPT_HEADER, 0); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_URL, $url); - curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); - curl_setopt($curl, CURLOPT_MAXREDIRS, 10); + curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); if(OC_Config::getValue('proxy', '') != '') { @@ -1087,9 +1087,50 @@ class OC_Util { if(OC_Config::getValue('proxyuserpwd', '') != '') { curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('proxyuserpwd')); } - $data = curl_exec($curl); + + if (ini_get('open_basedir') === '' && ini_get('safe_mode' === 'Off')) { + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); + curl_setopt($curl, CURLOPT_MAXREDIRS, $max_redirects); + $data = curl_exec($curl); + } else { + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, false); + $mr = $max_redirects; + if ($mr > 0) { + $newurl = curl_getinfo($curl, CURLINFO_EFFECTIVE_URL); + + $rcurl = curl_copy_handle($curl); + curl_setopt($rcurl, CURLOPT_HEADER, true); + curl_setopt($rcurl, CURLOPT_NOBODY, true); + curl_setopt($rcurl, CURLOPT_FORBID_REUSE, false); + curl_setopt($rcurl, CURLOPT_RETURNTRANSFER, true); + do { + curl_setopt($rcurl, CURLOPT_URL, $newurl); + $header = curl_exec($rcurl); + if (curl_errno($rcurl)) { + $code = 0; + } else { + $code = curl_getinfo($rcurl, CURLINFO_HTTP_CODE); + if ($code == 301 || $code == 302) { + preg_match('/Location:(.*?)\n/', $header, $matches); + $newurl = trim(array_pop($matches)); + } else { + $code = 0; + } + } + } while ($code && --$mr); + curl_close($rcurl); + if ($mr > 0) { + curl_setopt($curl, CURLOPT_URL, $newurl); + } + } + + if($mr == 0 && $max_redirects > 0) { + $data = false; + } else { + $data = curl_exec($curl); + } + } curl_close($curl); - } else { $contextArray = null; From f1b085df0189dee6c92a4a6145d22206d7cba778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 28 Mar 2014 12:57:27 +0100 Subject: [PATCH 325/333] adding @method annotation to declare methods which can be called on the wrapped statement object --- lib/private/db/statementwrapper.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/lib/private/db/statementwrapper.php b/lib/private/db/statementwrapper.php index eaf215c723..492209b883 100644 --- a/lib/private/db/statementwrapper.php +++ b/lib/private/db/statementwrapper.php @@ -8,6 +8,11 @@ /** * small wrapper around \Doctrine\DBAL\Driver\Statement to make it behave, more like an MDB2 Statement + * + * @method boolean bindValue(mixed $param, mixed $value, integer $type = null); + * @method string errorCode(); + * @method array errorInfo(); + * @method integer rowCount(); */ class OC_DB_StatementWrapper { /** @@ -161,6 +166,8 @@ class OC_DB_StatementWrapper { /** * provide an alias for fetch + * + * @return mixed */ public function fetchRow() { return $this->statement->fetch(); @@ -168,12 +175,13 @@ class OC_DB_StatementWrapper { /** * Provide a simple fetchOne. + * * fetch single column from the next row - * @param int $colnum the column number to fetch + * @param int $column the column number to fetch * @return string */ - public function fetchOne($colnum = 0) { - return $this->statement->fetchColumn($colnum); + public function fetchOne($column = 0) { + return $this->statement->fetchColumn($column); } /** From e4069e155386fbb8391b76ba7684512dc57897aa Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Fri, 28 Mar 2014 15:00:13 +0100 Subject: [PATCH 326/333] Emit event after setting a new expiration for a share all credits to @frisco82 https://github.com/owncloud/core/pull/5335 --- lib/private/share/share.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index a385328edc..8238797600 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -747,7 +747,8 @@ class Share extends \OC\Share\Constants { * @return \OCP\Share_Backend */ public static function setExpirationDate($itemType, $itemSource, $date) { - $items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false); + $user = \OC_User::getUser(); + $items = self::getItems($itemType, $itemSource, null, null, $user, self::FORMAT_NONE, null, -1, false); if (!empty($items)) { if ($date == '') { $date = null; @@ -759,6 +760,12 @@ class Share extends \OC\Share\Constants { foreach ($items as $item) { $query->bindValue(2, (int) $item['id']); $query->execute(); + \OC_Hook::emit('OCP\Share', 'post_set_expiration_date', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'date' => $date, + 'uidOwner' => $user + )); } return true; } From c14107550d8c7588bb78e7ffc34c7190e475c23e Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Fri, 28 Mar 2014 18:05:48 +0100 Subject: [PATCH 327/333] Use UrlGenerator in OC\Util::redirectToDefaultPage(). Fix #7936 --- lib/private/util.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index c48a5505d4..c1adbaf254 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -701,17 +701,18 @@ class OC_Util { * @return void */ public static function redirectToDefaultPage() { + $urlGenerator = \OC::$server->getURLGenerator(); if(isset($_REQUEST['redirect_url'])) { - $location = OC_Helper::makeURLAbsolute(urldecode($_REQUEST['redirect_url'])); + $location = $urlGenerator->getAbsoluteURL(urldecode($_REQUEST['redirect_url'])); } else if (isset(OC::$REQUESTEDAPP) && !empty(OC::$REQUESTEDAPP)) { - $location = OC_Helper::linkToAbsolute( OC::$REQUESTEDAPP, 'index.php' ); + $location = $urlGenerator->getAbsoluteURL('/index.php/apps/'.OC::$REQUESTEDAPP.'/index.php'); } else { $defaultPage = OC_Appconfig::getValue('core', 'defaultpage'); if ($defaultPage) { - $location = OC_Helper::makeURLAbsolute(OC::$WEBROOT.'/'.$defaultPage); + $location = $urlGenerator->getAbsoluteURL($defaultPage); } else { - $location = OC_Helper::linkToAbsolute( 'files', 'index.php' ); + $location = $urlGenerator->getAbsoluteURL('/index.php/files/index.php'); } } OC_Log::write('core', 'redirectToDefaultPage: '.$location, OC_Log::DEBUG); From 915fa3da7481d83a7dbe9d0732628657a7bcd7c0 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 29 Mar 2014 01:55:44 -0400 Subject: [PATCH 328/333] [tx-robot] updated from transifex --- l10n/es/core.po | 42 ++++++++++++++--------------- l10n/es/files_sharing.po | 6 ++--- l10n/es/files_trashbin.po | 10 +++---- l10n/gl/settings.po | 28 +++++++++---------- l10n/templates/core.pot | 40 +++++++++++++-------------- l10n/templates/files.pot | 24 ++++++++--------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 24 ++++++++--------- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 4 +-- l10n/templates/files_versions.pot | 12 ++++----- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 18 ++++++------- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/gl.php | 3 +++ 17 files changed, 113 insertions(+), 110 deletions(-) diff --git a/l10n/es/core.po b/l10n/es/core.po index 1d3856000d..758f1024ad 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" -"PO-Revision-Date: 2014-03-28 05:55+0000\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 06:06+0000\n" "Last-Translator: victormce \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -31,24 +31,24 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Ha pasado la fecha de caducidad" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Modo mantenimiento activado" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Modo mantenimiento desactivado" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Base de datos actualizada" @@ -152,59 +152,59 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:496 +#: js/js.js:543 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:995 +#: js/js.js:1103 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:996 +#: js/js.js:1104 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:997 +#: js/js.js:1105 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:998 +#: js/js.js:1106 msgid "today" msgstr "hoy" -#: js/js.js:999 +#: js/js.js:1107 msgid "yesterday" msgstr "ayer" -#: js/js.js:1000 +#: js/js.js:1108 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1001 +#: js/js.js:1109 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1002 +#: js/js.js:1110 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1003 +#: js/js.js:1111 msgid "months ago" msgstr "meses antes" -#: js/js.js:1004 +#: js/js.js:1112 msgid "last year" msgstr "el año pasado" -#: js/js.js:1005 +#: js/js.js:1113 msgid "years ago" msgstr "años antes" @@ -547,14 +547,14 @@ msgstr "Nueva contraseña" msgid "Reset password" msgstr "Restablecer contraseña" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsela a su propio riesgo! " -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." msgstr "Para óptimos resultados, considere utilizar un servidor GNU/Linux." diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index dd65ca15ed..f44f8bcb5b 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 15:20+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 06:16+0000\n" +"Last-Translator: victormce \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index c4e1766460..2586fb2af3 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 06:24+0000\n" +"Last-Translator: victormce \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,11 +33,11 @@ msgstr "No se puede restaurar %s" msgid "Deleted files" msgstr "Archivos eliminados" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:16 js/trash.js:108 js/trash.js:157 msgid "Error" msgstr "Error" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "recuperado" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 8cb40f5bbb..2403bc7cc3 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"PO-Revision-Date: 2014-03-28 19:40+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +66,7 @@ msgid "Unable to load list from App Store" msgstr "Non foi posíbel cargar a lista desde a App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Produciuse un erro de autenticación" @@ -128,32 +128,32 @@ msgstr "Non é posíbel eliminar o usuario do grupo %s" msgid "Couldn't update app." msgstr "Non foi posíbel actualizar o aplicativo." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Contrasinal incorrecto" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Non subministrado polo usuario" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Forneza un contrasinal de recuperación do administrador de recuperación, senón perderanse todos os datos do usuario" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Contrasinal de recuperación do administrador incorrecto. Comprobe o contrasinal e tenteo de novo." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "A infraestrutura non admite o cambio de contrasinal, mais a chave de cifrado dos usuarios foi actualizada correctamente." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Non é posíbel cambiar o contrasinal" @@ -286,7 +286,7 @@ msgstr "Debe fornecer un contrasinal" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Aviso: O directorio persoal para o usuario «{user}» xa existe" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Galego" @@ -431,18 +431,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "O último «cron» executouse ás %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "O último «cron» executouse ás %s. Isto supón que pasou máis dunha hora. polo que semella que algo vai mal." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "«Cron» aínda non foi executado!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index d93a971a80..e53a6e7be1 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,24 +18,24 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "" -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "" @@ -139,59 +139,59 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:496 +#: js/js.js:543 msgid "Saving..." msgstr "" -#: js/js.js:995 +#: js/js.js:1103 msgid "seconds ago" msgstr "" -#: js/js.js:996 +#: js/js.js:1104 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:997 +#: js/js.js:1105 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1106 msgid "today" msgstr "" -#: js/js.js:999 +#: js/js.js:1107 msgid "yesterday" msgstr "" -#: js/js.js:1000 +#: js/js.js:1108 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1001 +#: js/js.js:1109 msgid "last month" msgstr "" -#: js/js.js:1002 +#: js/js.js:1110 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1003 +#: js/js.js:1111 msgid "months ago" msgstr "" -#: js/js.js:1004 +#: js/js.js:1112 msgid "last year" msgstr "" -#: js/js.js:1005 +#: js/js.js:1113 msgid "years ago" msgstr "" @@ -534,14 +534,14 @@ msgstr "" msgid "Reset password" msgstr "" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " msgstr "" -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "For the best results, please consider using a GNU/Linux server instead." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 82e117c528..ab798413e1 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -193,15 +193,15 @@ msgstr "" msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:149 +#: js/fileactions.js:164 msgid "Share" msgstr "" -#: js/fileactions.js:162 +#: js/fileactions.js:177 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:223 +#: js/fileactions.js:238 msgid "Rename" msgstr "" @@ -225,13 +225,13 @@ msgstr "" msgid "Error deleting file." msgstr "" -#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +#: js/filelist.js:687 js/filelist.js:761 js/files.js:694 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +#: js/filelist.js:688 js/filelist.js:762 js/files.js:700 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -277,29 +277,29 @@ msgid "" "your personal settings to decrypt your files." msgstr "" -#: js/files.js:379 +#: js/files.js:382 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:610 js/files.js:654 +#: js/files.js:613 js/files.js:657 msgid "Error moving file" msgstr "" -#: js/files.js:610 js/files.js:654 +#: js/files.js:613 js/files.js:657 msgid "Error" msgstr "" -#: js/files.js:672 templates/index.php:68 +#: js/files.js:675 templates/index.php:68 msgid "Name" msgstr "" -#: js/files.js:673 templates/index.php:80 +#: js/files.js:676 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:674 templates/index.php:82 +#: js/files.js:677 templates/index.php:82 msgid "Modified" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4d1a870edd..a02470e332 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "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 0c968b9069..4fa49bd928 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,7 +37,7 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: js/settings.js:313 js/settings.js:320 +#: js/settings.js:318 js/settings.js:325 msgid "Saved" msgstr "" @@ -89,39 +89,39 @@ msgstr "" msgid "Add storage" msgstr "" -#: templates/settings.php:90 +#: templates/settings.php:93 msgid "None set" msgstr "" -#: templates/settings.php:91 +#: templates/settings.php:94 msgid "All Users" msgstr "" -#: templates/settings.php:92 +#: templates/settings.php:95 msgid "Groups" msgstr "" -#: templates/settings.php:100 +#: templates/settings.php:103 msgid "Users" msgstr "" -#: templates/settings.php:113 templates/settings.php:114 -#: templates/settings.php:155 templates/settings.php:156 +#: templates/settings.php:116 templates/settings.php:117 +#: templates/settings.php:158 templates/settings.php:159 msgid "Delete" msgstr "" -#: templates/settings.php:127 +#: templates/settings.php:130 msgid "Enable User External Storage" msgstr "" -#: templates/settings.php:130 +#: templates/settings.php:133 msgid "Allow users to mount the following external storage" msgstr "" -#: templates/settings.php:147 +#: templates/settings.php:150 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:165 +#: templates/settings.php:168 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index dd36e90e60..1cf0e96e29 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "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 19c5f5f273..6259fe5f8e 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -31,7 +31,7 @@ msgstr "" msgid "Deleted files" msgstr "" -#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +#: js/trash.js:16 js/trash.js:108 js/trash.js:157 msgid "Error" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 76eba3454d..270f007084 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,22 +22,22 @@ msgstr "" msgid "Could not revert: %s" msgstr "" -#: js/versions.js:14 +#: js/versions.js:39 msgid "Versions" msgstr "" -#: js/versions.js:60 +#: js/versions.js:61 msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: js/versions.js:87 +#: js/versions.js:88 msgid "More versions..." msgstr "" -#: js/versions.js:125 +#: js/versions.js:126 msgid "No other versions available" msgstr "" -#: js/versions.js:155 +#: js/versions.js:156 msgid "Restore" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f599cc3ba6..3320212771 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "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 4a9473b3ff..4f0be41971 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "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 e91e82eccc..0223d8e2cf 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -64,7 +64,7 @@ msgid "Unable to load list from App Store" msgstr "" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "" @@ -126,31 +126,31 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "" -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "Wrong admin recovery password. Please check the password and try again." msgstr "" -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "" -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "" @@ -283,7 +283,7 @@ msgstr "" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index f8fe27cf0d..b0c1b1ce4b 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "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 e30d5c43f5..5acbae2836 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-28 01:55-0400\n" +"POT-Creation-Date: 2014-03-29 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index d98d812d94..2d23efd96a 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "A conexión á Internet non funciona", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades.", "Cron" => "Cron", +"Last cron was executed at %s." => "O último «cron» executouse ás %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "O último «cron» executouse ás %s. Isto supón que pasou máis dunha hora. polo que semella que algo vai mal.", +"Cron was not executed yet!" => "«Cron» aínda non foi executado!", "Execute one task with each page loaded" => "Executar unha tarefa con cada páxina cargada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use o servizo de sistema cron para chamar ao ficheiro cron.php cada 15 minutos.", From 3a7829f784a3f98642ac19b633c003e74aa87e9d Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sat, 29 Mar 2014 20:39:55 +0100 Subject: [PATCH 329/333] Sub-dir was prepended twice --- lib/private/helper.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/private/helper.php b/lib/private/helper.php index 98a86388d2..d7ac0b5f4f 100644 --- a/lib/private/helper.php +++ b/lib/private/helper.php @@ -78,8 +78,7 @@ class OC_Helper { * Returns a absolute url to the given app and file. */ public static function linkToAbsolute($app, $file, $args = array()) { - $urlLinkTo = self::linkTo($app, $file, $args); - return self::makeURLAbsolute($urlLinkTo); + return self::linkTo($app, $file, $args); } /** From 7278f2f5673ca3ebc62938f854cb1028bb5bcfef Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sat, 29 Mar 2014 20:40:49 +0100 Subject: [PATCH 330/333] Sub-dir was prepended twice --- lib/private/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/util.php b/lib/private/util.php index c1adbaf254..731b7c9750 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -703,7 +703,7 @@ class OC_Util { public static function redirectToDefaultPage() { $urlGenerator = \OC::$server->getURLGenerator(); if(isset($_REQUEST['redirect_url'])) { - $location = $urlGenerator->getAbsoluteURL(urldecode($_REQUEST['redirect_url'])); + $location = urldecode($_REQUEST['redirect_url']); } else if (isset(OC::$REQUESTEDAPP) && !empty(OC::$REQUESTEDAPP)) { $location = $urlGenerator->getAbsoluteURL('/index.php/apps/'.OC::$REQUESTEDAPP.'/index.php'); From bfb0b9a044b164fb40c5db26598f17da78037eb4 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 30 Mar 2014 01:55:42 -0400 Subject: [PATCH 331/333] [tx-robot] updated from transifex --- apps/user_ldap/l10n/sl.php | 1 + core/l10n/sl.php | 2 ++ l10n/sl/core.po | 48 ++++++++++++++--------------- l10n/sl/settings.po | 24 +++++++-------- l10n/sl/user_ldap.po | 10 +++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- settings/l10n/sl.php | 1 + 18 files changed, 57 insertions(+), 53 deletions(-) diff --git a/apps/user_ldap/l10n/sl.php b/apps/user_ldap/l10n/sl.php index b2a21b6e02..b6df62ffb7 100644 --- a/apps/user_ldap/l10n/sl.php +++ b/apps/user_ldap/l10n/sl.php @@ -85,6 +85,7 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Eno osnovno ime skupine na vrstico", "Group Search Attributes" => "Skupinski atributi iskanja", "Group-Member association" => "Povezava član-skupina", +"Nested Groups" => "Gnezdene skupine", "Special Attributes" => "Posebni atributi", "Quota Field" => "Polje količinske omejitve", "Quota Default" => "Privzeta količinska omejitev", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 2cfdfd1189..49eb4f9aa6 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Na prijavno stran", "New password" => "Novo geslo", "Reset password" => "Ponastavi geslo", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Sistem Mac OS X ni podprt, zato %s ne bo deloval zanesljivo v tem okolju. Program uporabljate na lastno odgovornost! ", +"For the best results, please consider using a GNU/Linux server instead." => "Za najbolj še rezultate je priporočljivo uporabljati strežnik GNU/Linux.", "Personal" => "Osebno", "Users" => "Uporabniki", "Apps" => "Programi", diff --git a/l10n/sl/core.po b/l10n/sl/core.po index ddd78cae32..e3285d025c 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"PO-Revision-Date: 2014-03-29 20:30+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,24 +19,24 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/share.php:88 +#: ajax/share.php:87 msgid "Expiration date is in the past." msgstr "Datum preteka je v preteklosti." -#: ajax/share.php:120 ajax/share.php:162 +#: ajax/share.php:119 ajax/share.php:161 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Ni mogoče poslati sporočila za: %s" -#: ajax/update.php:11 +#: ajax/update.php:10 msgid "Turned on maintenance mode" msgstr "Vzdrževalni način je omogočen" -#: ajax/update.php:14 +#: ajax/update.php:13 msgid "Turned off maintenance mode" msgstr "Vzdrževalni način je onemogočen" -#: ajax/update.php:17 +#: ajax/update.php:16 msgid "Updated database" msgstr "Posodobljena podatkovna zbirka" @@ -140,15 +140,15 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:496 +#: js/js.js:543 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/js.js:995 +#: js/js.js:1103 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:996 +#: js/js.js:1104 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -156,7 +156,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:997 +#: js/js.js:1105 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -164,15 +164,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:998 +#: js/js.js:1106 msgid "today" msgstr "danes" -#: js/js.js:999 +#: js/js.js:1107 msgid "yesterday" msgstr "včeraj" -#: js/js.js:1000 +#: js/js.js:1108 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -180,11 +180,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:1001 +#: js/js.js:1109 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:1002 +#: js/js.js:1110 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -192,15 +192,15 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:1003 +#: js/js.js:1111 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:1004 +#: js/js.js:1112 msgid "last year" msgstr "lansko leto" -#: js/js.js:1005 +#: js/js.js:1113 msgid "years ago" msgstr "let nazaj" @@ -545,17 +545,17 @@ msgstr "Novo geslo" msgid "Reset password" msgstr "Ponastavi geslo" -#: setup/controller.php:138 +#: setup/controller.php:140 #, php-format msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Sistem Mac OS X ni podprt, zato %s ne bo deloval zanesljivo v tem okolju. Program uporabljate na lastno odgovornost! " -#: setup/controller.php:142 +#: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Za najbolj še rezultate je priporočljivo uporabljati strežnik GNU/Linux." #: strings.php:5 msgid "Personal" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 91e310d8f2..dbde28d85d 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"PO-Revision-Date: 2014-03-29 20:50+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Navedena je napačna vrednost za %s" #: admin/controller.php:73 msgid "Saved" @@ -66,7 +66,7 @@ msgid "Unable to load list from App Store" msgstr "Ni mogoče naložiti seznama iz programskega središča" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 changepassword/controller.php:55 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 msgid "Authentication error" msgstr "Napaka med overjanjem" @@ -128,32 +128,32 @@ msgstr "Uporabnika ni mogoče odstraniti iz skupine %s" msgid "Couldn't update app." msgstr "Programa ni mogoče posodobiti." -#: changepassword/controller.php:20 +#: changepassword/controller.php:17 msgid "Wrong password" msgstr "Napačno geslo" -#: changepassword/controller.php:42 +#: changepassword/controller.php:36 msgid "No user supplied" msgstr "Ni navedenega uporabnika" -#: changepassword/controller.php:74 +#: changepassword/controller.php:68 msgid "" "Please provide an admin recovery password, otherwise all user data will be " "lost" msgstr "Podati je treba skrbniško obnovitveno geslo, sicer bodo vsi uporabniški podatki izgubljeni." -#: changepassword/controller.php:79 +#: changepassword/controller.php:73 msgid "" "Wrong admin recovery password. Please check the password and try again." msgstr "Napačno navedeno skrbniško obnovitveno geslo. Preverite geslo in poskusite znova." -#: changepassword/controller.php:87 +#: changepassword/controller.php:81 msgid "" "Back-end doesn't support password change, but the users encryption key was " "successfully updated." msgstr "Hrbtišče programa ne podpira spreminjanja gesla, je pa uspešno posodobljeno uporabniško šifriranje." -#: changepassword/controller.php:92 changepassword/controller.php:103 +#: changepassword/controller.php:86 changepassword/controller.php:97 msgid "Unable to change password" msgstr "Ni mogoče spremeniti gesla" @@ -286,7 +286,7 @@ msgstr "Navedeno mora biti veljavno geslo" msgid "Warning: Home directory for user \"{user}\" already exists" msgstr "Opozorilo: osebna mapa uporabnika \"{user}\" že obstaja" -#: personal.php:49 personal.php:50 +#: personal.php:48 personal.php:49 msgid "__language_name__" msgstr "Slovenščina" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 5a24ba9ffa..222415e4d0 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -4,14 +4,14 @@ # # Translators: # barbarak , 2013 -# mateju <>, 2013 +# mateju <>, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-27 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 06:01+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"PO-Revision-Date: 2014-03-29 20:50+0000\n" +"Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -417,7 +417,7 @@ msgstr "Povezava član-skupina" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Gnezdene skupine" #: templates/settings.php:39 msgid "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e53a6e7be1..e121b6d17a 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ab798413e1..55217cf4e9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index a02470e332..dbae6761cb 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "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 4fa49bd928..25d27460e9 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "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 1cf0e96e29..80bb68a9c3 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "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 6259fe5f8e..c59d59cc93 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "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 270f007084..0607bbcedb 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "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 3320212771..3638bd22ef 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "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 4f0be41971..38923e73dd 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "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 0223d8e2cf..0c628b82bf 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "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 b0c1b1ce4b..e9e4f6b323 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "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 5acbae2836..224a8368cd 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-29 01:55-0400\n" +"POT-Creation-Date: 2014-03-30 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index fea2d4cc3a..414f46712e 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,5 +1,6 @@ "Navedena je napačna vrednost za %s", "Saved" => "Shranjeno", "Email sent" => "Elektronska pošta je poslana", "Send mode" => "Način pošiljanja", From 5b552c84daed2f2dff60a6df26dfdb49bb4b94aa Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 31 Mar 2014 01:55:43 -0400 Subject: [PATCH 332/333] [tx-robot] updated from transifex --- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index e121b6d17a..eacfde04d8 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 55217cf4e9..bc931be91d 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index dbae6761cb..99f9cf030b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "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 25d27460e9..6334e403e4 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "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 80bb68a9c3..8fbff46261 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "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 c59d59cc93..f9b4401c78 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "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 0607bbcedb..3381aea0a7 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "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 3638bd22ef..10017472d1 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "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 38923e73dd..12fa6ad930 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "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 0c628b82bf..892d64a273 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "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 e9e4f6b323..d16fe0386e 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "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 224a8368cd..d2e917267c 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-30 01:55-0400\n" +"POT-Creation-Date: 2014-03-31 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 615de6534f659b3f0bc8149b5ccf8558aaf491e9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Mon, 31 Mar 2014 12:27:26 +0200 Subject: [PATCH 333/333] fix duplicate rules for button/input styles, em to px --- core/css/styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 9719de191e..68317d1588 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -99,6 +99,8 @@ input[type="time"], textarea, select, button, .button, +input[type="submit"], +input[type="button"], #quota, .pager li a { width: 130px; @@ -173,14 +175,12 @@ input[type="submit"], input[type="button"], button, .button, #quota, select, .pager li a { width: auto; - padding: .4em; + padding: 5px; background-color: rgba(240,240,240,.9); font-weight: bold; color: #555; border: 1px solid rgba(190,190,190,.9); cursor: pointer; - border-radius: 3px; - outline: none; } input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus,
  -<?php p($theme->getName()); ?> +  +<?php p($theme->getName()); ?>
 
--
getName()); ?> - getSlogan()); ?> -
getBaseUrl());?> +
getBaseUrl());?>
> t('Allow users to enable others to upload into their publicly shared folders')); ?>
> Date: Tue, 18 Mar 2014 11:44:22 +0100 Subject: [PATCH 199/333] redefine reopen() in class \OC\Session\Internal to avoid accidental calls in productive code --- lib/private/session/internal.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/private/session/internal.php b/lib/private/session/internal.php index 9d3b9cb81b..42ec9606dc 100644 --- a/lib/private/session/internal.php +++ b/lib/private/session/internal.php @@ -54,4 +54,7 @@ class Internal extends Memory { parent::close(); } + public function reopen() { + throw new \Exception('The session cannot be reopened - reopen() is ony to be used in unit testing.'); + } } From 285fc5ba96eba1c9046a3c05c39ed7708c13b897 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 18 Mar 2014 11:50:08 +0100 Subject: [PATCH 200/333] mobile: change CSS order so rename and versions are hidden --- apps/files/css/mobile.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 5f1c08af58..00c4630ea6 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -18,12 +18,6 @@ table td.filename .nametext { max-width: 75% !important; } -/* do not show Rename or Versions on mobile */ -#fileList .action-rename, -#fileList .action-versions { - display: none !important; -} - /* always show actions on mobile, not only on hover */ #fileList a.action { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)" !important; @@ -31,6 +25,11 @@ table td.filename .nametext { opacity: .2 !important; display: inline !important; } +/* do not show Rename or Versions on mobile */ +#fileList .action.action-rename, +#fileList .action.action-versions { + display: none !important; +} /* some padding for better clickability */ #fileList a.action img { padding: 0 6px 0 12px; From fe04106e0f6a88b5e3cf490773f2cb625465e98a Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 13:09:25 +0100 Subject: [PATCH 201/333] Add/remove main menu action when switching between desktop/mobile mode --- core/js/js.js | 59 +++++++++++++++++-- core/js/tests/specs/coreSpec.js | 101 ++++++++++++++++++++++++++++++++ 2 files changed, 154 insertions(+), 6 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 23d16b6923..aefca23509 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -488,7 +488,7 @@ var OC={ registerMenu: function($toggle, $menuEl) { $menuEl.addClass('menu'); $toggle.addClass('menutoggle'); - $toggle.on('click', function(event) { + $toggle.on('click.menu', function(event) { if ($menuEl.is(OC._currentMenu)) { $menuEl.hide(); OC._currentMenu = null; @@ -505,6 +505,17 @@ var OC={ OC._currentMenuToggle = $toggle; return false }); + }, + + unregisterMenu: function($toggle, $menuEl) { + // close menu if opened + if ($menuEl.is(OC._currentMenu)) { + $menuEl.hide(); + OC._currentMenu = null; + OC._currentMenuToggle = null; + } + $toggle.off('click.menu').removeClass('menutoggle'); + $menuEl.removeClass('menu'); } }; OC.search.customResults={}; @@ -978,13 +989,49 @@ function initCore() { OC._currentMenuToggle = null; }); - // toggle the navigation on mobile - if (window.matchMedia) { - var mq = window.matchMedia('(max-width: 600px)'); - if (mq && mq.matches) { - OC.registerMenu($('#header #owncloud'), $('#navigation')); + + /** + * Set up the main menu toggle to react to media query changes. + * If the screen is small enough, the main menu becomes a toggle. + * If the screen is bigger, the main menu is not a toggle any more. + */ + function setupMainMenu() { + // toggle the navigation on mobile + if (window.matchMedia) { + var mq = window.matchMedia('(max-width: 600px)'); + var lastMatch = mq.matches; + var $toggle = $('#header #owncloud'); + var $navigation = $('#navigation'); + + function updateMainMenu() { + // mobile mode ? + if (lastMatch && !$toggle.hasClass('menutoggle')) { + // init the menu + OC.registerMenu($toggle, $navigation); + $toggle.data('oldhref', $toggle.attr('href')); + $toggle.attr('href', '#'); + $navigation.hide(); + } + else { + OC.unregisterMenu($toggle, $navigation); + $toggle.attr('href', $toggle.data('oldhref')); + $navigation.show(); + } + } + + updateMainMenu(); + + // TODO: debounce this + $(window).resize(function() { + if (lastMatch !== mq.matches) { + lastMatch = mq.matches; + updateMainMenu(); + } + }); } } + + setupMainMenu(); } $(document).ready(initCore); diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 069546387c..7fa0b8e9e6 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -279,5 +279,106 @@ describe('Core base tests', function() { expect(OC.generateUrl('apps/files/download{file}', {file: '/Welcome.txt'})).toEqual(OC.webroot + '/index.php/apps/files/download/Welcome.txt'); }); }); + describe('Main menu mobile toggle', function() { + var oldMatchMedia; + var $toggle; + var $navigation; + + beforeEach(function() { + oldMatchMedia = window.matchMedia; + window.matchMedia = sinon.stub(); + $('#testArea').append('' + + ''); + $toggle = $('#owncloud'); + $navigation = $('#navigation'); + }); + + afterEach(function() { + window.matchMedia = oldMatchMedia; + }); + it('Sets up menu toggle in mobile mode', function() { + window.matchMedia.returns({matches: true}); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(true); + expect($navigation.hasClass('menu')).toEqual(true); + }); + it('Does not set up menu toggle in desktop mode', function() { + window.matchMedia.returns({matches: false}); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(false); + expect($navigation.hasClass('menu')).toEqual(false); + }); + it('Switches on menu toggle when mobile mode changes', function() { + var mq = {matches: false}; + window.matchMedia.returns(mq); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(false); + mq.matches = true; + $(window).trigger('resize'); + expect($toggle.hasClass('menutoggle')).toEqual(true); + }); + it('Switches off menu toggle when mobile mode changes', function() { + var mq = {matches: true}; + window.matchMedia.returns(mq); + window.initCore(); + expect($toggle.hasClass('menutoggle')).toEqual(true); + mq.matches = false; + $(window).trigger('resize'); + expect($toggle.hasClass('menutoggle')).toEqual(false); + }); + it('Clicking menu toggle toggles navigation in mobile mode', function() { + window.matchMedia.returns({matches: true}); + window.initCore(); + $navigation.hide(); // normally done through media query triggered CSS + expect($navigation.is(':visible')).toEqual(false); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(false); + }); + it('Clicking menu toggle does not toggle navigation in desktop mode', function() { + window.matchMedia.returns({matches: false}); + window.initCore(); + expect($navigation.is(':visible')).toEqual(true); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + }); + it('Switching to mobile mode hides navigation', function() { + var mq = {matches: false}; + window.matchMedia.returns(mq); + window.initCore(); + expect($navigation.is(':visible')).toEqual(true); + mq.matches = true; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(false); + }); + it('Switching to desktop mode shows navigation', function() { + var mq = {matches: true}; + window.matchMedia.returns(mq); + window.initCore(); + expect($navigation.is(':visible')).toEqual(false); + mq.matches = false; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(true); + }); + it('Switch to desktop with opened menu then back to mobile resets toggle', function() { + var mq = {matches: true}; + window.matchMedia.returns(mq); + window.initCore(); + expect($navigation.is(':visible')).toEqual(false); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + mq.matches = false; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(true); + mq.matches = true; + $(window).trigger('resize'); + expect($navigation.is(':visible')).toEqual(false); + $toggle.click(); + expect($navigation.is(':visible')).toEqual(true); + }); + }); }); From cc6c1529848022765b9be6be808cf4dfb5b2d029 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 15:52:06 +0100 Subject: [PATCH 202/333] Fixed matchMedia usage to make unit tests work in PhantomJS PhantomJS has a bug that makes it impossible to properly stub window.matchMedia. This fix adds a wrapper as OC._matchMedia that is used for unit tests --- core/js/js.js | 71 ++++++++++++++++++--------------- core/js/tests/specs/coreSpec.js | 27 +++++++------ 2 files changed, 54 insertions(+), 44 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index aefca23509..87b2d59f16 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -997,41 +997,48 @@ function initCore() { */ function setupMainMenu() { // toggle the navigation on mobile - if (window.matchMedia) { - var mq = window.matchMedia('(max-width: 600px)'); - var lastMatch = mq.matches; - var $toggle = $('#header #owncloud'); - var $navigation = $('#navigation'); - - function updateMainMenu() { - // mobile mode ? - if (lastMatch && !$toggle.hasClass('menutoggle')) { - // init the menu - OC.registerMenu($toggle, $navigation); - $toggle.data('oldhref', $toggle.attr('href')); - $toggle.attr('href', '#'); - $navigation.hide(); - } - else { - OC.unregisterMenu($toggle, $navigation); - $toggle.attr('href', $toggle.data('oldhref')); - $navigation.show(); - } - } - - updateMainMenu(); - - // TODO: debounce this - $(window).resize(function() { - if (lastMatch !== mq.matches) { - lastMatch = mq.matches; - updateMainMenu(); - } - }); + if (!OC._matchMedia) { + return; } + var mq = OC._matchMedia('(max-width: 600px)'); + var lastMatch = mq.matches; + var $toggle = $('#header #owncloud'); + var $navigation = $('#navigation'); + + function updateMainMenu() { + // mobile mode ? + if (lastMatch && !$toggle.hasClass('menutoggle')) { + // init the menu + OC.registerMenu($toggle, $navigation); + $toggle.data('oldhref', $toggle.attr('href')); + $toggle.attr('href', '#'); + $navigation.hide(); + } + else { + OC.unregisterMenu($toggle, $navigation); + $toggle.attr('href', $toggle.data('oldhref')); + $navigation.show(); + } + } + + updateMainMenu(); + + // TODO: debounce this + $(window).resize(function() { + if (lastMatch !== mq.matches) { + lastMatch = mq.matches; + updateMainMenu(); + } + }); } - setupMainMenu(); + if (window.matchMedia) { + // wrapper needed for unit tests due to PhantomJS bugs + OC._matchMedia = function(media) { + return window.matchMedia(media); + } + setupMainMenu(); + } } $(document).ready(initCore); diff --git a/core/js/tests/specs/coreSpec.js b/core/js/tests/specs/coreSpec.js index 7fa0b8e9e6..57ea5be8be 100644 --- a/core/js/tests/specs/coreSpec.js +++ b/core/js/tests/specs/coreSpec.js @@ -285,8 +285,11 @@ describe('Core base tests', function() { var $navigation; beforeEach(function() { - oldMatchMedia = window.matchMedia; - window.matchMedia = sinon.stub(); + oldMatchMedia = OC._matchMedia; + // a separate method was needed because window.matchMedia + // cannot be stubbed due to a bug in PhantomJS: + // https://github.com/ariya/phantomjs/issues/12069 + OC._matchMedia = sinon.stub(); $('#testArea').append('' + @@ -296,23 +299,23 @@ describe('Core base tests', function() { }); afterEach(function() { - window.matchMedia = oldMatchMedia; + OC._matchMedia = oldMatchMedia; }); it('Sets up menu toggle in mobile mode', function() { - window.matchMedia.returns({matches: true}); + OC._matchMedia.returns({matches: true}); window.initCore(); expect($toggle.hasClass('menutoggle')).toEqual(true); expect($navigation.hasClass('menu')).toEqual(true); }); it('Does not set up menu toggle in desktop mode', function() { - window.matchMedia.returns({matches: false}); + OC._matchMedia.returns({matches: false}); window.initCore(); expect($toggle.hasClass('menutoggle')).toEqual(false); expect($navigation.hasClass('menu')).toEqual(false); }); it('Switches on menu toggle when mobile mode changes', function() { var mq = {matches: false}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($toggle.hasClass('menutoggle')).toEqual(false); mq.matches = true; @@ -321,7 +324,7 @@ describe('Core base tests', function() { }); it('Switches off menu toggle when mobile mode changes', function() { var mq = {matches: true}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($toggle.hasClass('menutoggle')).toEqual(true); mq.matches = false; @@ -329,7 +332,7 @@ describe('Core base tests', function() { expect($toggle.hasClass('menutoggle')).toEqual(false); }); it('Clicking menu toggle toggles navigation in mobile mode', function() { - window.matchMedia.returns({matches: true}); + OC._matchMedia.returns({matches: true}); window.initCore(); $navigation.hide(); // normally done through media query triggered CSS expect($navigation.is(':visible')).toEqual(false); @@ -339,7 +342,7 @@ describe('Core base tests', function() { expect($navigation.is(':visible')).toEqual(false); }); it('Clicking menu toggle does not toggle navigation in desktop mode', function() { - window.matchMedia.returns({matches: false}); + OC._matchMedia.returns({matches: false}); window.initCore(); expect($navigation.is(':visible')).toEqual(true); $toggle.click(); @@ -347,7 +350,7 @@ describe('Core base tests', function() { }); it('Switching to mobile mode hides navigation', function() { var mq = {matches: false}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($navigation.is(':visible')).toEqual(true); mq.matches = true; @@ -356,7 +359,7 @@ describe('Core base tests', function() { }); it('Switching to desktop mode shows navigation', function() { var mq = {matches: true}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($navigation.is(':visible')).toEqual(false); mq.matches = false; @@ -365,7 +368,7 @@ describe('Core base tests', function() { }); it('Switch to desktop with opened menu then back to mobile resets toggle', function() { var mq = {matches: true}; - window.matchMedia.returns(mq); + OC._matchMedia.returns(mq); window.initCore(); expect($navigation.is(':visible')).toEqual(false); $toggle.click(); From 67b8cfedf9f500eb25871265a05c874acc4809ff Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 16:02:13 +0100 Subject: [PATCH 203/333] Define _matchMedia wrapper earlier The unit test stub didn't work because the _matchMedia wrapper was defined too late. This fix defines it earlier. --- core/js/js.js | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 87b2d59f16..121a4062d3 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -516,6 +516,19 @@ var OC={ } $toggle.off('click.menu').removeClass('menutoggle'); $menuEl.removeClass('menu'); + }, + + /** + * Wrapper for matchMedia + * + * This is makes it possible for unit tests to + * stub matchMedia (which doesn't work in PhantomJS) + */ + _matchMedia: function(media) { + if (window.matchMedia) { + return window.matchMedia(media); + } + return false; } }; OC.search.customResults={}; @@ -1033,10 +1046,6 @@ function initCore() { } if (window.matchMedia) { - // wrapper needed for unit tests due to PhantomJS bugs - OC._matchMedia = function(media) { - return window.matchMedia(media); - } setupMainMenu(); } } From 6b9ae27b90ee5649fcab2417ebaf14e87559756e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 18 Mar 2014 17:14:38 +0100 Subject: [PATCH 204/333] drop file cache migration OC5 -> OC6 --- apps/files/ajax/upgrade.php | 44 ------ apps/files/index.php | 137 ++++++++-------- apps/files/js/upgrade.js | 28 ---- apps/files/templates/upgrade.php | 4 - core/ajax/update.php | 9 -- core/command/upgrade.php | 9 -- lib/private/files/cache/legacy.php | 139 ---------------- lib/private/files/cache/upgrade.php | 235 ---------------------------- lib/private/updater.php | 43 ----- 9 files changed, 63 insertions(+), 585 deletions(-) delete mode 100644 apps/files/ajax/upgrade.php delete mode 100644 apps/files/js/upgrade.js delete mode 100644 apps/files/templates/upgrade.php delete mode 100644 lib/private/files/cache/legacy.php delete mode 100644 lib/private/files/cache/upgrade.php diff --git a/apps/files/ajax/upgrade.php b/apps/files/ajax/upgrade.php deleted file mode 100644 index 7237b02c0b..0000000000 --- a/apps/files/ajax/upgrade.php +++ /dev/null @@ -1,44 +0,0 @@ -hasItems()) { - OC_Hook::connect('\OC\Files\Cache\Upgrade', 'migrate_path', $listener, 'upgradePath'); - - OC_DB::beginTransaction(); - $upgrade = new \OC\Files\Cache\Upgrade($legacy); - $count = $legacy->getCount(); - $eventSource->send('total', $count); - $upgrade->upgradePath('/' . $user . '/files'); - OC_DB::commit(); -} -\OC\Files\Cache\Upgrade::upgradeDone($user); -$eventSource->send('done', true); -$eventSource->close(); - -class UpgradeListener { - /** - * @var OC_EventSource $eventSource - */ - private $eventSource; - - private $count = 0; - private $lastSend = 0; - - public function __construct($eventSource) { - $this->eventSource = $eventSource; - } - - public function upgradePath($path) { - $this->count++; - if ($this->count > ($this->lastSend + 5)) { - $this->lastSend = $this->count; - $this->eventSource->send('count', $this->count); - } - } -} diff --git a/apps/files/index.php b/apps/files/index.php index ad7a2e210e..c66cd40fb5 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -62,22 +62,17 @@ if ($isIE8 && isset($_GET['dir'])){ $ajaxLoad = false; $files = array(); $user = OC_User::getUser(); -if (\OC\Files\Cache\Upgrade::needUpgrade($user)) { //dont load anything if we need to upgrade the cache - $needUpgrade = true; -} else { - if ($isIE8){ - // after the redirect above, the URL will have a format - // like "files#?dir=path" which means that no path was given - // (dir is not set). In that specific case, we don't return any - // files because the client will take care of switching the dir - // to the one from the hash, then ajax-load the initial file list - $files = array(); - $ajaxLoad = true; - } - else{ - $files = \OCA\Files\Helper::getFiles($dir); - } - $needUpgrade = false; +if ($isIE8){ + // after the redirect above, the URL will have a format + // like "files#?dir=path" which means that no path was given + // (dir is not set). In that specific case, we don't return any + // files because the client will take care of switching the dir + // to the one from the hash, then ajax-load the initial file list + $files = array(); + $ajaxLoad = true; +} +else{ + $files = \OCA\Files\Helper::getFiles($dir); } $config = \OC::$server->getConfig(); @@ -97,62 +92,56 @@ $breadcrumbNav->assign('baseURL', OCP\Util::linkTo('files', 'index.php') . '?dir $permissions = $dirInfo->getPermissions(); -if ($needUpgrade) { - OCP\Util::addscript('files', 'upgrade'); - $tmpl = new OCP\Template('files', 'upgrade', 'user'); - $tmpl->printPage(); -} else { - // information about storage capacities - $storageInfo=OC_Helper::getStorageInfo($dir); - $freeSpace=$storageInfo['free']; - $uploadLimit=OCP\Util::uploadLimit(); - $maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); - $publicUploadEnabled = $config->getAppValue('core', 'shareapi_allow_public_upload', 'yes'); - // if the encryption app is disabled, than everything is fine (INIT_SUCCESSFUL status code) - $encryptionInitStatus = 2; - if (OC_App::isEnabled('files_encryption')) { - $session = new \OCA\Encryption\Session(new \OC\Files\View('/')); - $encryptionInitStatus = $session->getInitialized(); - } - - $trashEnabled = \OCP\App::isEnabled('files_trashbin'); - $trashEmpty = true; - if ($trashEnabled) { - $trashEmpty = \OCA\Files_Trashbin\Trashbin::isEmpty($user); - } - - $isCreatable = \OC\Files\Filesystem::isCreatable($dir . '/'); - $fileHeader = (!isset($files) or count($files) > 0); - $emptyContent = ($isCreatable and !$fileHeader) or $ajaxLoad; - - OCP\Util::addscript('files', 'fileactions'); - OCP\Util::addscript('files', 'files'); - OCP\Util::addscript('files', 'keyboardshortcuts'); - $tmpl = new OCP\Template('files', 'index', 'user'); - $tmpl->assign('fileList', $list->fetchPage()); - $tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage()); - $tmpl->assign('dir', $dir); - $tmpl->assign('isCreatable', $isCreatable); - $tmpl->assign('permissions', $permissions); - $tmpl->assign('files', $files); - $tmpl->assign('trash', $trashEnabled); - $tmpl->assign('trashEmpty', $trashEmpty); - $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); // minimium of freeSpace and uploadLimit - $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); - $tmpl->assign('freeSpace', $freeSpace); - $tmpl->assign('uploadLimit', $uploadLimit); // PHP upload limit - $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); - $tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']); - $tmpl->assign('isPublic', false); - $tmpl->assign('publicUploadEnabled', $publicUploadEnabled); - $tmpl->assign("encryptedFiles", \OCP\Util::encryptedFiles()); - $tmpl->assign("mailNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_mail_notification', 'yes')); - $tmpl->assign("allowShareWithLink", $config->getAppValue('core', 'shareapi_allow_links', 'yes')); - $tmpl->assign("encryptionInitStatus", $encryptionInitStatus); - $tmpl->assign('disableSharing', false); - $tmpl->assign('ajaxLoad', $ajaxLoad); - $tmpl->assign('emptyContent', $emptyContent); - $tmpl->assign('fileHeader', $fileHeader); - - $tmpl->printPage(); +// information about storage capacities +$storageInfo=OC_Helper::getStorageInfo($dir); +$freeSpace=$storageInfo['free']; +$uploadLimit=OCP\Util::uploadLimit(); +$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir); +$publicUploadEnabled = $config->getAppValue('core', 'shareapi_allow_public_upload', 'yes'); +// if the encryption app is disabled, than everything is fine (INIT_SUCCESSFUL status code) +$encryptionInitStatus = 2; +if (OC_App::isEnabled('files_encryption')) { + $session = new \OCA\Encryption\Session(new \OC\Files\View('/')); + $encryptionInitStatus = $session->getInitialized(); } + +$trashEnabled = \OCP\App::isEnabled('files_trashbin'); +$trashEmpty = true; +if ($trashEnabled) { + $trashEmpty = \OCA\Files_Trashbin\Trashbin::isEmpty($user); +} + +$isCreatable = \OC\Files\Filesystem::isCreatable($dir . '/'); +$fileHeader = (!isset($files) or count($files) > 0); +$emptyContent = ($isCreatable and !$fileHeader) or $ajaxLoad; + +OCP\Util::addscript('files', 'fileactions'); +OCP\Util::addscript('files', 'files'); +OCP\Util::addscript('files', 'keyboardshortcuts'); +$tmpl = new OCP\Template('files', 'index', 'user'); +$tmpl->assign('fileList', $list->fetchPage()); +$tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage()); +$tmpl->assign('dir', $dir); +$tmpl->assign('isCreatable', $isCreatable); +$tmpl->assign('permissions', $permissions); +$tmpl->assign('files', $files); +$tmpl->assign('trash', $trashEnabled); +$tmpl->assign('trashEmpty', $trashEmpty); +$tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); // minimium of freeSpace and uploadLimit +$tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); +$tmpl->assign('freeSpace', $freeSpace); +$tmpl->assign('uploadLimit', $uploadLimit); // PHP upload limit +$tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); +$tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']); +$tmpl->assign('isPublic', false); +$tmpl->assign('publicUploadEnabled', $publicUploadEnabled); +$tmpl->assign("encryptedFiles", \OCP\Util::encryptedFiles()); +$tmpl->assign("mailNotificationEnabled", $config->getAppValue('core', 'shareapi_allow_mail_notification', 'yes')); +$tmpl->assign("allowShareWithLink", $config->getAppValue('core', 'shareapi_allow_links', 'yes')); +$tmpl->assign("encryptionInitStatus", $encryptionInitStatus); +$tmpl->assign('disableSharing', false); +$tmpl->assign('ajaxLoad', $ajaxLoad); +$tmpl->assign('emptyContent', $emptyContent); +$tmpl->assign('fileHeader', $fileHeader); + +$tmpl->printPage(); diff --git a/apps/files/js/upgrade.js b/apps/files/js/upgrade.js deleted file mode 100644 index 714adf824a..0000000000 --- a/apps/files/js/upgrade.js +++ /dev/null @@ -1,28 +0,0 @@ -/* - * Copyright (c) 2014 - * - * This file is licensed under the Affero General Public License version 3 - * or later. - * - * See the COPYING-README file. - * - */ - -/* global OC */ -$(document).ready(function () { - var eventSource, total, bar = $('#progressbar'); - console.log('start'); - bar.progressbar({value: 0}); - eventSource = new OC.EventSource(OC.filePath('files', 'ajax', 'upgrade.php')); - eventSource.listen('total', function (count) { - total = count; - console.log(count + ' files needed to be migrated'); - }); - eventSource.listen('count', function (count) { - bar.progressbar({value: (count / total) * 100}); - console.log(count); - }); - eventSource.listen('done', function () { - document.location.reload(); - }); -}); diff --git a/apps/files/templates/upgrade.php b/apps/files/templates/upgrade.php deleted file mode 100644 index e03f086e47..0000000000 --- a/apps/files/templates/upgrade.php +++ /dev/null @@ -1,4 +0,0 @@ -
- t('Upgrading filesystem cache...'));?> -
-
diff --git a/core/ajax/update.php b/core/ajax/update.php index d6af84e95b..2a0cbb2036 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -16,15 +16,6 @@ if (OC::checkUpgrade(false)) { $updater->listen('\OC\Updater', 'dbUpgrade', function () use ($eventSource, $l) { $eventSource->send('success', (string)$l->t('Updated database')); }); - $updater->listen('\OC\Updater', 'filecacheStart', function () use ($eventSource, $l) { - $eventSource->send('success', (string)$l->t('Updating filecache, this may take really long...')); - }); - $updater->listen('\OC\Updater', 'filecacheDone', function () use ($eventSource, $l) { - $eventSource->send('success', (string)$l->t('Updated filecache')); - }); - $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) use ($eventSource, $l) { - $eventSource->send('success', (string)$l->t('... %d%% done ...', array('percent' => $out))); - }); $updater->listen('\OC\Updater', 'failure', function ($message) use ($eventSource) { $eventSource->send('failure', $message); $eventSource->close(); diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 6e5681b26d..cfccfb5d2f 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -59,15 +59,6 @@ class Upgrade extends Command { $updater->listen('\OC\Updater', 'dbUpgrade', function () use($output) { $output->writeln('Updated database'); }); - $updater->listen('\OC\Updater', 'filecacheStart', function () use($output) { - $output->writeln('Updating filecache, this may take really long...'); - }); - $updater->listen('\OC\Updater', 'filecacheDone', function () use($output) { - $output->writeln('Updated filecache'); - }); - $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) use($output) { - $output->writeln('... ' . $out . '% done ...'); - }); $updater->listen('\OC\Updater', 'failure', function ($message) use($output) { $output->writeln($message); diff --git a/lib/private/files/cache/legacy.php b/lib/private/files/cache/legacy.php deleted file mode 100644 index 4d5f58741e..0000000000 --- a/lib/private/files/cache/legacy.php +++ /dev/null @@ -1,139 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -namespace OC\Files\Cache; - -/** - * Provide read only support for the old filecache - */ -class Legacy { - private $user; - - private $cacheHasItems = null; - - /** - * @param string $user - */ - public function __construct($user) { - $this->user = $user; - } - - /** - * get the numbers of items in the legacy cache - * - * @return int - */ - function getCount() { - $sql = 'SELECT COUNT(`id`) AS `count` FROM `*PREFIX*fscache` WHERE `user` = ?'; - $result = \OC_DB::executeAudited($sql, array($this->user)); - if ($row = $result->fetchRow()) { - return $row['count']; - } else { - return 0; - } - } - - /** - * check if a legacy cache is present and holds items - * - * @return bool - */ - function hasItems() { - if (!is_null($this->cacheHasItems)) { - return $this->cacheHasItems; - } - try { - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*fscache` WHERE `user` = ?',1); - } catch (\Exception $e) { - $this->cacheHasItems = false; - return false; - } - try { - $result = $query->execute(array($this->user)); - } catch (\Exception $e) { - $this->cacheHasItems = false; - return false; - } - - if ($result === false || property_exists($result, 'error_message_prefix')) { - $this->cacheHasItems = false; - return false; - } - - $this->cacheHasItems = (bool)$result->fetchRow(); - return $this->cacheHasItems; - } - - /** - * get an item from the legacy cache - * - * @param string $path - * @return array - */ - function get($path) { - if (is_numeric($path)) { - $sql = 'SELECT * FROM `*PREFIX*fscache` WHERE `id` = ?'; - } else { - $sql = 'SELECT * FROM `*PREFIX*fscache` WHERE `path` = ?'; - } - $result = \OC_DB::executeAudited($sql, array($path)); - $data = $result->fetchRow(); - $data['etag'] = $this->getEtag($data['path'], $data['user']); - return $data; - } - - /** - * Get the ETag for the given path - * - * @param type $path - * @return string - */ - function getEtag($path, $user = null) { - static $query = null; - - $pathDetails = explode('/', $path, 4); - if((!$user) && !isset($pathDetails[1])) { - //no user!? Too odd, return empty string. - return ''; - } else if(!$user) { - //guess user from path, if no user passed. - $user = $pathDetails[1]; - } - - if(!isset($pathDetails[3]) || is_null($pathDetails[3])) { - $relativePath = ''; - } else { - $relativePath = $pathDetails[3]; - } - - if(is_null($query)){ - $query = \OC_DB::prepare('SELECT `propertyvalue` FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = \'{DAV:}getetag\''); - } - $result = \OC_DB::executeAudited($query,array($user, '/' . $relativePath)); - if ($row = $result->fetchRow()) { - return trim($row['propertyvalue'], '"'); - } else { - return ''; - } - } - - /** - * get all child items of an item from the legacy cache - * - * @param int $id - * @return array - */ - function getChildren($id) { - $result = \OC_DB::executeAudited('SELECT * FROM `*PREFIX*fscache` WHERE `parent` = ?', array($id)); - $data = $result->fetchAll(); - foreach ($data as $i => $item) { - $data[$i]['etag'] = $this->getEtag($item['path'], $item['user']); - } - return $data; - } -} diff --git a/lib/private/files/cache/upgrade.php b/lib/private/files/cache/upgrade.php deleted file mode 100644 index e3a46896cb..0000000000 --- a/lib/private/files/cache/upgrade.php +++ /dev/null @@ -1,235 +0,0 @@ - - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -namespace OC\Files\Cache; - -class Upgrade { - /** - * @var Legacy $legacy - */ - private $legacy; - - private $numericIds = array(); - - private $mimeTypeIds = array(); - - /** - * @param Legacy $legacy - */ - public function __construct($legacy) { - $this->legacy = $legacy; - } - - /** - * Preform a upgrade a path and it's childs - * - * @param string $path - * @param bool $mode - */ - function upgradePath($path, $mode = Scanner::SCAN_RECURSIVE) { - if (!$this->legacy->hasItems()) { - return; - } - \OC_Hook::emit('\OC\Files\Cache\Upgrade', 'migrate_path', $path); - if ($row = $this->legacy->get($path)) { - $data = $this->getNewData($row); - if ($data) { - $this->insert($data); - $this->upgradeChilds($data['id'], $mode); - } - } - } - - /** - * upgrade all child elements of an item - * - * @param int $id - * @param bool $mode - */ - function upgradeChilds($id, $mode = Scanner::SCAN_RECURSIVE) { - $children = $this->legacy->getChildren($id); - foreach ($children as $child) { - $childData = $this->getNewData($child); - \OC_Hook::emit('\OC\Files\Cache\Upgrade', 'migrate_path', $child['path']); - if ($childData) { - $this->insert($childData); - if ($mode == Scanner::SCAN_RECURSIVE) { - $this->upgradeChilds($child['id']); - } - } - } - } - - /** - * insert data into the new cache - * - * @param array $data the data for the new cache - */ - function insert($data) { - static $insertQuery = null; - if(is_null($insertQuery)) { - $insertQuery = \OC_DB::prepare('INSERT INTO `*PREFIX*filecache` - ( `fileid`, `storage`, `path`, `path_hash`, `parent`, `name`, `mimetype`, `mimepart`, `size`, `mtime`, `encrypted`, `etag` ) - VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)'); - } - if (!$this->inCache($data['storage'], $data['path_hash'], $data['id'])) { - \OC_DB::executeAudited($insertQuery, array($data['id'], $data['storage'], - $data['path'], $data['path_hash'], $data['parent'], $data['name'], - $data['mimetype'], $data['mimepart'], $data['size'], $data['mtime'], $data['encrypted'], $data['etag'])); - } - } - - /** - * check if an item is already in the new cache - * - * @param string $storage - * @param string $pathHash - * @param string $id - * @return bool - */ - function inCache($storage, $pathHash, $id) { - static $query = null; - if(is_null($query)) { - $query = \OC_DB::prepare('SELECT `fileid` FROM `*PREFIX*filecache` WHERE (`storage` = ? AND `path_hash` = ?) OR `fileid` = ?'); - } - $result = \OC_DB::executeAudited($query, array($storage, $pathHash, $id)); - return (bool)$result->fetchRow(); - } - - /** - * get the new data array from the old one - * - * @param array $data the data from the old cache - * Example data array - * Array - * ( - * [id] => 418 - * [path] => /tina/files/picture.jpg //relative to datadir - * [path_hash] => 66d4547e372888deed80b24fec9b192b - * [parent] => 234 - * [name] => picture.jpg - * [user] => tina - * [size] => 1265283 - * [ctime] => 1363909709 - * [mtime] => 1363909709 - * [mimetype] => image/jpeg - * [mimepart] => image - * [encrypted] => 0 - * [versioned] => 0 - * [writable] => 1 - * ) - * - * @return array - */ - function getNewData($data) { - //Make sure there is a path, otherwise we can do nothing. - if(!isset($data['path'])) { - return false; - } - $newData = $data; - /** - * @var \OC\Files\Storage\Storage $storage - * @var string $internalPath; - */ - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($data['path']); - if ($storage) { - $newData['etag'] = $data['etag']; - $newData['path_hash'] = md5($internalPath); - $newData['path'] = $internalPath; - $newData['storage'] = $this->getNumericId($storage); - $newData['parent'] = ($internalPath === '') ? -1 : $data['parent']; - $newData['permissions'] = ($data['writable']) ? \OCP\PERMISSION_ALL : \OCP\PERMISSION_READ; - $newData['storage_object'] = $storage; - $newData['mimetype'] = $this->getMimetypeId($newData['mimetype'], $storage); - $newData['mimepart'] = $this->getMimetypeId($newData['mimepart'], $storage); - return $newData; - } else { - \OC_Log::write('core', 'Unable to migrate data from old cache for '.$data['path'].' because the storage was not found', \OC_Log::ERROR); - return false; - } - } - - /** - * get the numeric storage id - * - * @param \OC\Files\Storage\Storage $storage - * @return int - */ - function getNumericId($storage) { - $storageId = $storage->getId(); - if (!isset($this->numericIds[$storageId])) { - $cache = $storage->getCache(); - $this->numericIds[$storageId] = $cache->getNumericStorageId(); - } - return $this->numericIds[$storageId]; - } - - /** - * get the numeric id for a mimetype - * - * @param string $mimetype - * @param \OC\Files\Storage\Storage $storage - * @return int - */ - function getMimetypeId($mimetype, $storage) { - if (!isset($this->mimeTypeIds[$mimetype])) { - $cache = new Cache($storage); - $this->mimeTypeIds[$mimetype] = $cache->getMimetypeId($mimetype); - } - return $this->mimeTypeIds[$mimetype]; - } - - /** - * check if a cache upgrade is required for $user - * - * @param string $user - * @return bool - */ - static function needUpgrade($user) { - $cacheVersion = (int)\OCP\Config::getUserValue($user, 'files', 'cache_version', 4); - if ($cacheVersion < 5) { - $legacy = new \OC\Files\Cache\Legacy($user); - if ($legacy->hasItems()) { - return true; - } - self::upgradeDone($user); - } - - return false; - } - - /** - * mark the filecache as upgrade - * - * @param string $user - */ - static function upgradeDone($user) { - \OCP\Config::setUserValue($user, 'files', 'cache_version', 5); - } - - /** - * Does a "silent" upgrade, i.e. without an Event-Source as triggered - * on User-Login via Ajax. This method is called within the regular - * ownCloud upgrade. - * - * @param string $user a User ID - */ - public static function doSilentUpgrade($user) { - if(!self::needUpgrade($user)) { - return; - } - $legacy = new \OC\Files\Cache\Legacy($user); - if ($legacy->hasItems()) { - \OC_DB::beginTransaction(); - $upgrade = new \OC\Files\Cache\Upgrade($legacy); - $upgrade->upgradePath('/' . $user . '/files'); - \OC_DB::commit(); - } - \OC\Files\Cache\Upgrade::upgradeDone($user); - } -} diff --git a/lib/private/updater.php b/lib/private/updater.php index dd8dc84e80..1354f3fd2f 100644 --- a/lib/private/updater.php +++ b/lib/private/updater.php @@ -16,9 +16,6 @@ use OC\Hooks\BasicEmitter; * - maintenanceStart() * - maintenanceEnd() * - dbUpgrade() - * - filecacheStart() - * - filecacheProgress(int $percentage) - * - filecacheDone() * - failure(string $message) */ class Updater extends BasicEmitter { @@ -122,9 +119,6 @@ class Updater extends BasicEmitter { \OC_DB::updateDbFromStructure(\OC::$SERVERROOT . '/db_structure.xml'); $this->emit('\OC\Updater', 'dbUpgrade'); - // do a file cache upgrade for users with files - // this can take loooooooooooooooooooooooong - $this->upgradeFileCache(); } catch (\Exception $exception) { $this->emit('\OC\Updater', 'failure', array($exception->getMessage())); } @@ -142,42 +136,5 @@ class Updater extends BasicEmitter { $this->emit('\OC\Updater', 'maintenanceEnd'); } - private function upgradeFileCache() { - try { - $query = \OC_DB::prepare(' - SELECT DISTINCT `user` - FROM `*PREFIX*fscache` - '); - $result = $query->execute(); - } catch (\Exception $e) { - return; - } - $users = $result->fetchAll(); - if (count($users) == 0) { - return; - } - $step = 100 / count($users); - $percentCompleted = 0; - $lastPercentCompletedOutput = 0; - $startInfoShown = false; - foreach ($users as $userRow) { - $user = $userRow['user']; - \OC\Files\Filesystem::initMountPoints($user); - \OC\Files\Cache\Upgrade::doSilentUpgrade($user); - if (!$startInfoShown) { - //We show it only now, because otherwise Info about upgraded apps - //will appear between this and progress info - $this->emit('\OC\Updater', 'filecacheStart'); - $startInfoShown = true; - } - $percentCompleted += $step; - $out = floor($percentCompleted); - if ($out != $lastPercentCompletedOutput) { - $this->emit('\OC\Updater', 'filecacheProgress', array($out)); - $lastPercentCompletedOutput = $out; - } - } - $this->emit('\OC\Updater', 'filecacheDone'); - } } From 59906fbb4deeed881dd1e0c590c360ad48697169 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 18 Mar 2014 17:48:28 +0100 Subject: [PATCH 205/333] mobile: show caret indicator next to logo to make clear it is tappable --- core/css/mobile.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core/css/mobile.css b/core/css/mobile.css index 5a465b35fb..56bee8f8a3 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -1,5 +1,13 @@ @media only screen and (max-width: 600px) { +/* show caret indicator next to logo to make clear it is tappable */ +#owncloud.menutoggle { + background-image: url('../img/actions/caret.svg'); + background-repeat: no-repeat; + background-position: right 26px; + padding-right: 16px !important; +} + /* compress search box on mobile, expand when focused */ .searchbox input[type="search"] { width: 15%; From 8ababef4cdd8a62b0f2afcecdc1233b84795163d Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 17:54:14 +0100 Subject: [PATCH 206/333] Fix validation of allowed personal backend --- apps/files_external/lib/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 2767076eef..3d8847c008 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -321,7 +321,7 @@ class OC_Mount_Config { // Verify that the mount point applies for the current user // Prevent non-admin users from mounting local storage and other disabled backends $allowed_backends = self::getPersonalBackends(); - if ($applicable != OCP\User::getUser() || !in_array($class, $allowed_backends)) { + if ($applicable != OCP\User::getUser() || !isset($allowed_backends[$class])) { return false; } $mountPoint = '/'.$applicable.'/files/'.ltrim($mountPoint, '/'); From 76961ce0727d08ef3d12bd445798df221f5d2063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 18 Mar 2014 17:54:21 +0100 Subject: [PATCH 207/333] fixing javascript error where $(Files.breadcrumbs[1]).get(0) returns undefined - happens on resize to a very small width --- apps/files/js/files.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 1186a72a44..1137364db4 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -196,11 +196,14 @@ var Files = { if (width !== Files.lastWidth) { if ((width < Files.lastWidth || firstRun) && width < Files.breadcrumbsWidth) { if (Files.hiddenBreadcrumbs === 0) { - Files.breadcrumbsWidth -= $(Files.breadcrumbs[1]).get(0).offsetWidth; - $(Files.breadcrumbs[1]).find('a').hide(); - $(Files.breadcrumbs[1]).append('...'); - Files.breadcrumbsWidth += $(Files.breadcrumbs[1]).get(0).offsetWidth; - Files.hiddenBreadcrumbs = 2; + bc = $(Files.breadcrumbs[1]).get(0); + if (typeof bc != 'undefined') { + Files.breadcrumbsWidth -= bc.offsetWidth; + $(Files.breadcrumbs[1]).find('a').hide(); + $(Files.breadcrumbs[1]).append('...'); + Files.breadcrumbsWidth += bc.offsetWidth; + Files.hiddenBreadcrumbs = 2; + } } var i = Files.hiddenBreadcrumbs; while (width < Files.breadcrumbsWidth && i > 1 && i < Files.breadcrumbs.length - 1) { From 13f1f105c8f34bf8dd618373826cd6db9f21ccb1 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Tue, 18 Mar 2014 18:25:30 +0100 Subject: [PATCH 208/333] Set overflow-y to auto --- core/css/apps.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/apps.css b/core/css/apps.css index 58f2759f69..0e6a080c9c 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -189,7 +189,7 @@ display: block; /* restrict height of settings and make scrollable */ max-height: 300px; - overflow-y: scroll; + overflow-y: auto; } .settings-button { From 1f79f368ef3cf7eb9947996cff36b8dee45f48f5 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 18:29:08 +0100 Subject: [PATCH 209/333] Added unit tests for when adding ext storage mount points - test config was written correctly (global and local) - test that personal mount points can be added for allowed backends - test that personal mount points cannot be added for disallowed backends - added $skipTest flag to make it possible add mount points without doing an actual check/connection (note: this is necessary because the static class OC_Mount_Config cannot be mocked) --- apps/files_external/lib/config.php | 6 + apps/files_external/tests/mountconfig.php | 147 +++++++++++++++++++--- 2 files changed, 136 insertions(+), 17 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 3d8847c008..2c8828c4d5 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -28,6 +28,9 @@ class OC_Mount_Config { const MOUNT_TYPE_GROUP = 'group'; const MOUNT_TYPE_USER = 'user'; + // whether to skip backend test (for unit tests, as this static class is not mockable) + public static $skipTest = false; + /** * Get details on each of the external storage backends, used for the mount config UI * If a custom UI is needed, add the key 'custom' and a javascript file with that name will be loaded @@ -275,6 +278,9 @@ class OC_Mount_Config { } private static function getBackendStatus($class, $options) { + if (self::$skipTest) { + return true; + } foreach ($options as &$option) { $option = str_replace('$user', OCP\User::getUser(), $option); } diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index 24ebcf5134..a22c7424c6 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -34,6 +34,66 @@ class Test_Mount_Config_Dummy_Storage { * Class Test_Mount_Config */ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { + + private $dataDir; + private $userHome; + private $oldAllowedBackends; + private $allBackends; + + public function setUp() { + \OC_User::setUserId('test'); + $this->userHome = \OC_User::getHome('test'); + mkdir($this->userHome); + + $this->dataDir = \OC_Config::getValue( + 'datadirectory', + \OC::$SERVERROOT . '/data/' + ); + $this->oldAllowedBackends = OCP\Config::getAppValue( + 'files_external', + 'user_mounting_backends', + '' + ); + $this->allBackends = OC_Mount_Config::getBackends(); + OCP\Config::setAppValue( + 'files_external', + 'user_mounting_backends', + implode(',', array_keys($this->allBackends)) + ); + + OC_Mount_Config::$skipTest = true; + } + + public function tearDown() { + OC_Mount_Config::$skipTest = false; + + @unlink($this->dataDir . '/mount.json'); + @unlink($this->userHome . '/mount.json'); + rmdir($this->userHome); + + OCP\Config::setAppValue( + 'files_external', + 'user_mounting_backends', + $this->oldAllowedBackends + ); + } + + /** + * Reads the global config, for checking + */ + private function readGlobalConfig() { + $configFile = $this->dataDir . '/mount.json'; + return json_decode(file_get_contents($configFile), true); + } + + /** + * Reads the user config, for checking + */ + private function readUserConfig() { + $configFile = $this->userHome . '/mount.json'; + return json_decode(file_get_contents($configFile), true); + } + /** * Test mount point validation */ @@ -42,35 +102,88 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $mountType = 'user'; $applicable = 'all'; $isPersonal = false; - $this->assertEquals(false, OC_Mount_Config::addMountPoint('', $storageClass, array(), $mountType, $applicable, $isPersonal)); - $this->assertEquals(false, OC_Mount_Config::addMountPoint('/', $storageClass, array(), $mountType, $applicable, $isPersonal)); - $this->assertEquals(false, OC_Mount_Config::addMountPoint('Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); - $this->assertEquals(false, OC_Mount_Config::addMountPoint('/Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); + $this->assertFalse(OC_Mount_Config::addMountPoint('', $storageClass, array(), $mountType, $applicable, $isPersonal)); + $this->assertFalse(OC_Mount_Config::addMountPoint('/', $storageClass, array(), $mountType, $applicable, $isPersonal)); + $this->assertFalse(OC_Mount_Config::addMountPoint('Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); + $this->assertFalse(OC_Mount_Config::addMountPoint('/Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); } + /** + * Test adding a global mount point + */ + public function testAddGlobalMountPoint() { + $mountType = OC_Mount_Config::MOUNT_TYPE_GLOBAL; + $applicable = 'all'; + $isPersonal = false; + + $this->assertEquals(true, OC_Mount_Config::addMountPoint('/ext', '\OC\Files\Storage\SFTP', array(), $mountType, $applicable, $isPersonal)); + + $config = $this->readGlobalConfig(); + $this->assertEquals(1, count($config)); + $this->assertTrue(isset($config[$mountType])); + $this->assertTrue(isset($config[$mountType][$applicable])); + $this->assertTrue(isset($config[$mountType][$applicable]['/$user/files/ext'])); + $this->assertEquals( + '\OC\Files\Storage\SFTP', + $config[$mountType][$applicable]['/$user/files/ext']['class'] + ); + } + + /** + * Test adding a personal mount point + */ public function testAddMountPointSingleUser() { - \OC_User::setUserId('test'); - $mountType = 'user'; + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $applicable = 'test'; $isPersonal = true; - // local - $this->assertEquals(false, OC_Mount_Config::addMountPoint('/ext', '\OC\Files\storage\local', array(), $mountType, $applicable, $isPersonal)); - // non-local - // FIXME: can't test this yet as the class (write operation) is not mockable - // $this->assertEquals(true, OC_Mount_Config::addMountPoint('/ext', '\OC\Files\Storage\SFTP', array(), $mountType, $applicable, $isPersonal)); + $this->assertEquals(true, OC_Mount_Config::addMountPoint('/ext', '\OC\Files\Storage\SFTP', array(), $mountType, $applicable, $isPersonal)); + + $config = $this->readUserConfig(); + $this->assertEquals(1, count($config)); + $this->assertTrue(isset($config[$mountType])); + $this->assertTrue(isset($config[$mountType][$applicable])); + $this->assertTrue(isset($config[$mountType][$applicable]['/test/files/ext'])); + $this->assertEquals( + '\OC\Files\Storage\SFTP', + $config[$mountType][$applicable]['/test/files/ext']['class'] + ); } - public function testAddMountPointUnexistClass() { - \OC_User::setUserId('test'); - $storageClass = 'Unexist_Storage'; - $mountType = 'user'; + /** + * Test adding a personal mount point using disallowed backend + */ + public function testAddDisallowedBackendMountPointSingleUser() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $applicable = 'test'; $isPersonal = true; + // local - // non-local - $this->assertEquals(false, OC_Mount_Config::addMountPoint('/ext', $storageClass, array(), $mountType, $applicable, $isPersonal)); + $this->assertFalse(OC_Mount_Config::addMountPoint('/ext', '\OC\Files\storage\local', array(), $mountType, $applicable, $isPersonal)); + + unset($this->allBackends['\OC\Files\Storage\SFTP']); + OCP\Config::setAppValue( + 'files_external', + 'user_mounting_backends', + implode(',', array_keys($this->allBackends)) + ); + + // non-local but forbidden + $this->assertFalse(OC_Mount_Config::addMountPoint('/ext', '\OC\Files\Storage\SFTP', array(), $mountType, $applicable, $isPersonal)); + + $this->assertFalse(file_exists($this->userHome . '/mount.json')); + } + + /** + * Test adding a mount point with an non-existant backend + */ + public function testAddMountPointUnexistClass() { + $storageClass = 'Unexist_Storage'; + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $applicable = 'test'; + $isPersonal = false; + $this->assertFalse(OC_Mount_Config::addMountPoint('/ext', $storageClass, array(), $mountType, $applicable, $isPersonal)); } } From 7b1d52f5b98de20ecb98c8894bae51e83c6a13cc Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 19 Mar 2014 01:55:39 -0400 Subject: [PATCH 210/333] [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 5 + apps/files/l10n/cs_CZ.php | 5 + apps/files_encryption/l10n/ar.php | 1 + apps/files_encryption/l10n/ca.php | 1 + apps/files_external/l10n/ca.php | 2 + apps/files_external/l10n/cs_CZ.php | 2 + apps/files_sharing/l10n/ca.php | 1 + apps/files_sharing/l10n/cs_CZ.php | 1 + apps/user_ldap/l10n/ca.php | 5 + core/l10n/cs_CZ.php | 6 + l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_encryption.po | 9 +- l10n/ar/lib.po | 22 ++-- l10n/ar/settings.po | 132 +++++++++---------- l10n/ar/user_ldap.po | 4 +- l10n/ca/files.po | 17 +-- l10n/ca/files_encryption.po | 10 +- l10n/ca/files_external.po | 11 +- l10n/ca/files_sharing.po | 10 +- l10n/ca/lib.po | 38 +++--- l10n/ca/settings.po | 120 ++++++++--------- l10n/ca/user_ldap.po | 18 +-- l10n/cs_CZ/core.po | 19 +-- l10n/cs_CZ/files.po | 17 +-- l10n/cs_CZ/files_external.po | 11 +- l10n/cs_CZ/files_sharing.po | 9 +- l10n/cs_CZ/lib.po | 37 +++--- l10n/cs_CZ/settings.po | 191 ++++++++++++++-------------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 66 +++++----- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/ca.php | 6 + lib/l10n/cs_CZ.php | 6 + settings/l10n/ca.php | 25 ++++ settings/l10n/cs_CZ.php | 21 +++ 45 files changed, 477 insertions(+), 381 deletions(-) diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index f63f65162a..e1c7decdbb 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom", "Could not move %s" => " No s'ha pogut moure %s", "File name cannot be empty." => "El nom del fitxer no pot ser buit.", +"\"%s\" is an invalid file name." => "\"%s\" no es un fitxer vàlid.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", +"The target folder has been moved or deleted." => "La carpeta de destí s'ha mogut o eliminat.", "The name %s is already used in the folder %s. Please choose a different name." => "El nom %s ja s'usa en la carpeta %s. Indiqueu un nom diferent.", "Not a valid source" => "No és un origen vàlid", "Server is not allowed to open URLs, please check the server configuration" => "El servidor no té autorització per obrir URLs, comproveu la configuració del servidor", @@ -27,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Directori no vàlid.", "Files" => "Fitxers", "Unable to upload {filename} as it is a directory or has 0 bytes" => "No es pot pujar {filename} perquè és una carpeta o té 0 bytes", +"Total file size {size1} exceeds upload limit {size2}" => "Mida total del fitxer {size1} excedeix el límit de pujada {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}", "Upload cancelled." => "La pujada s'ha cancel·lat.", "Could not get result from server." => "No hi ha resposta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", @@ -48,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fitxer","%n fitxers"), "{dirs} and {files}" => "{dirs} i {files}", "_Uploading %n file_::_Uploading %n files_" => array("Pujant %n fitxer","Pujant %n fitxers"), +"\"{name}\" is an invalid file name." => "\"{name}\" no es un fitxer vàlid.", "Your storage is full, files can not be updated or synced anymore!" => "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!", "Your storage is almost full ({usedSpacePercent}%)" => "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou.", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 02ab6e1525..3fac6f15c0 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nelze přesunout %s - již existuje soubor se stejným názvem", "Could not move %s" => "Nelze přesunout %s", "File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", +"\"%s\" is an invalid file name." => "\"%s\" je neplatným názvem souboru.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", +"The target folder has been moved or deleted." => "Cílová složka byla přesunuta nebo smazána.", "The name %s is already used in the folder %s. Please choose a different name." => "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno.", "Not a valid source" => "Neplatný zdroj", "Server is not allowed to open URLs, please check the server configuration" => "Server není oprávněn otevírat adresy URL. Ověřte, prosím, konfiguraci serveru.", @@ -27,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Neplatný adresář", "Files" => "Soubory", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Nelze nahrát soubor {filename}, protože je to buď adresář nebo má velikost 0 bytů", +"Total file size {size1} exceeds upload limit {size2}" => "Celková velikost souboru {size1} překračuje povolenou velikost pro nahrávání {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Není dostatek místa pro uložení, velikost souboru je {size1}, zbývá pouze {size2}", "Upload cancelled." => "Odesílání zrušeno.", "Could not get result from server." => "Nepodařilo se získat výsledek ze serveru.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.", @@ -48,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n soubor","%n soubory","%n souborů"), "{dirs} and {files}" => "{dirs} a {files}", "_Uploading %n file_::_Uploading %n files_" => array("Nahrávám %n soubor","Nahrávám %n soubory","Nahrávám %n souborů"), +"\"{name}\" is an invalid file name." => "\"{name}\" je neplatným názvem souboru.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste", diff --git a/apps/files_encryption/l10n/ar.php b/apps/files_encryption/l10n/ar.php index cf6c265027..345c01a0d4 100644 --- a/apps/files_encryption/l10n/ar.php +++ b/apps/files_encryption/l10n/ar.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "يرجى التاكد من ان اصدار PHP 5.3.3 او احدث , مثبت و التاكد من ان OpenSSL مفعل و مهيئ بشكل صحيح. حتى الان برنامج التتشفير تم تعطيلة.", "Following users are not set up for encryption:" => "المستخدمين التاليين لم يتم تعيين لهم التشفيير:", "Initial encryption started... This can take some time. Please wait." => "بدأ التشفير... من الممكن ان ياخذ بعض الوقت. يرجى الانتظار.", +"Initial encryption running... Please try again later." => "جاري تفعيل التشفير المبدئي ، الرجاء المحاولة لاحقا", "Go directly to your " => "انتقل مباشرة الى ", "personal settings" => "اعدادات شخصية", "Encryption" => "التشفير", diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index 23897c1818..3414796f62 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat.", "Following users are not set up for encryption:" => "Els usuaris següents no estan configurats per a l'encriptació:", "Initial encryption started... This can take some time. Please wait." => "La encriptació inicial ha començat... Pot trigar una estona, espereu.", +"Initial encryption running... Please try again later." => "encriptació inicial en procés... Proveu-ho més tard.", "Go directly to your " => "Vés directament a", "personal settings" => "arranjament personal", "Encryption" => "Xifrat", diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index 40a1ffc9b5..3e72204629 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Concedeix accés", "Please provide a valid Dropbox app key and secret." => "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox", "Error configuring Google Drive storage" => "Error en configurar l'emmagatzemament Google Drive", +"Saved" => "Desat", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li.", "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." => "Avís: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar la compartició FTP. Demaneu a l'administrador del sistema que l'instal·li.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Avís:El suport Curl de PHP no està activat o instal·lat. No es pot muntar ownCloud / WebDAV o GoogleDrive. Demaneu a l'administrador que l'instal·li.", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Usuaris", "Delete" => "Esborra", "Enable User External Storage" => "Habilita l'emmagatzemament extern d'usuari", +"Allow users to mount the following external storage" => "Permet als usuaris muntar els dispositius externs següents", "SSL root certificates" => "Certificats SSL root", "Import Root Certificate" => "Importa certificat root" ); diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index dafe722bc2..2f7bbd0c4a 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Povolit přístup", "Please provide a valid Dropbox app key and secret." => "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox.", "Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive", +"Saved" => "Uloženo", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje.", "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." => "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Varování: podpora CURL v PHP není povolena nebo není nainstalována. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje.", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Uživatelé", "Delete" => "Smazat", "Enable User External Storage" => "Zapnout externí uživatelské úložiště", +"Allow users to mount the following external storage" => "Povolit uživatelů připojit externí úložiště", "SSL root certificates" => "Kořenové certifikáty SSL", "Import Root Certificate" => "Importovat kořenového certifikátu" ); diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index 7068626b7e..6432219650 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "sharing is disabled" => "s'ha desactivat la compartició", "For more info, please ask the person who sent this link." => "Per més informació contacteu amb qui us ha enviat l'enllaç.", "shared by %s" => "compartit per %s", +"Download %s" => "Baixa %s", "Direct link" => "Enllaç directe" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index e0a3c27fb4..5d50ff4131 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "sharing is disabled" => "sdílení je zakázané", "For more info, please ask the person who sent this link." => "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", "shared by %s" => "sdíleno %s", +"Download %s" => "Stáhnout %s", "Direct link" => "Přímý odkaz" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/user_ldap/l10n/ca.php b/apps/user_ldap/l10n/ca.php index 0a012b78e9..940c6ea8b6 100644 --- a/apps/user_ldap/l10n/ca.php +++ b/apps/user_ldap/l10n/ca.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Desa", "Test Configuration" => "Comprovació de la configuració", "Help" => "Ajuda", +"Groups meeting these criteria are available in %s:" => "Els grups que compleixen aquests criteris estan disponibles a %s:", "only those object classes:" => "només aquestes classes d'objecte:", "only from those groups:" => "només d'aquests grups", "Edit raw filter instead" => "Edita filtre raw", "Raw LDAP filter" => "Filtre raw LDAP", "The filter specifies which LDAP groups shall have access to the %s instance." => "El filtre especifica quins grups LDAP haurien de tenir accés a la instància %s.", "groups found" => "grups trobats", +"Users login with this attribute:" => "Usuaris acreditats amb aquest atribut:", "LDAP Username:" => "Nom d'usuari LDAP:", "LDAP Email Address:" => "Adreça de correu electrònic LDAP:", "Other Attributes:" => "Altres atributs:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Per un accés anònim, deixeu la DN i la contrasenya en blanc.", "One Base DN per line" => "Una DN Base per línia", "You can specify Base DN for users and groups in the Advanced tab" => "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat", +"Limit %s access to users meeting these criteria:" => "Limita l'accés a %s usuaris que compleixin amb aquest criteri:", "The filter specifies which LDAP users shall have access to the %s instance." => "El filtre especifica quins usuaris LDAP haurien de tenir accés a la instància %s", "users found" => "usuaris trobats", "Back" => "Enrera", @@ -85,6 +88,8 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Una DN Base de Grup per línia", "Group Search Attributes" => "Atributs de cerca de grup", "Group-Member association" => "Associació membres-grup", +"Nested Groups" => "Grups imbricats", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Quan està activat, els grups que contenen grups estan permesos. (Només funciona si l'atribut del grup membre conté DNs.)", "Special Attributes" => "Atributs especials", "Quota Field" => "Camp de quota", "Quota Default" => "Quota per defecte", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 76dc1d9c46..498086b280 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -59,6 +59,11 @@ $TRANSLATIONS = array( "(all selected)" => "(vybráno vše)", "({count} selected)" => "(vybráno {count})", "Error loading file exists template" => "Chyba při nahrávání šablony existence souboru", +"Very weak password" => "Velmi slabé heslo", +"Weak password" => "Slabé heslo", +"So-so password" => "Středně silné heslo", +"Good password" => "Dobré heslo", +"Strong password" => "Silné heslo", "Shared" => "Sdílené", "Share" => "Sdílet", "Error" => "Chyba", @@ -143,6 +148,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje.", "For information how to properly configure your server, please see the documentation." => "Pro informace, jak správně nastavit váš server, se podívejte do dokumentace.", "Create an admin account" => "Vytvořit účet správce", +"Storage & database" => "Úložiště & databáze", "Data folder" => "Složka s daty", "Configure the database" => "Nastavit databázi", "will be used" => "bude použito", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index ba94d75385..f6d7bc666c 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 18:50+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index ef9dee2fe2..bab63e292e 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 21:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index 8862dd4ff5..938f63bc23 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# m.shehab , 2014 # suliman <291101251@std.qu.edu.sa>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-19 05:50+0000\n" +"Last-Translator: m.shehab \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -102,7 +103,7 @@ msgstr "بدأ التشفير... من الممكن ان ياخذ بعض الوق #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "جاري تفعيل التشفير المبدئي ، الرجاء المحاولة لاحقا" #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index f093a8eab0..a78e73ae96 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 08:40+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" @@ -193,8 +193,8 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير." @@ -207,9 +207,9 @@ msgstr "" #: private/setup/oci.php:151 private/setup/oci.php:162 #: private/setup/oci.php:169 private/setup/oci.php:178 #: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "خطأ في قواعد البيانات : \"%s\"" @@ -218,9 +218,9 @@ msgstr "خطأ في قواعد البيانات : \"%s\"" #: private/setup/oci.php:122 private/setup/oci.php:145 #: private/setup/oci.php:152 private/setup/oci.php:163 #: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "الأمر المخالف كان : \"%s\"" @@ -256,7 +256,7 @@ msgstr "اسم المستخدم و/أو كلمة المرور لنظام Oracl msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 1beb1ba49f..a3d00d9963 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 18:50+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" @@ -49,15 +49,15 @@ msgstr "تم ارسال البريد الالكتروني" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:282 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 msgid "Encryption" msgstr "التشفير" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:319 msgid "Authentication method" msgstr "" @@ -213,31 +213,31 @@ msgstr "حدث" msgid "Updated" msgstr "تم التحديث بنجاح" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "اختر صورة الملف الشخصي " -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "فك تشفير الملفات... يرجى الانتظار, من الممكن ان ياخذ بعض الوقت." @@ -334,18 +334,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "تحذير أمان" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "انت تستخدم %s عن طريق HTTP . نحن نقترح باصرار ان تهيء الخادم ليتمكن من الوصول عن طريق HTTPS." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -354,68 +354,68 @@ msgid "" "root." msgstr "مجلد data و ملفاتك يمكن الوصول لها عن طريق الانترنت. ملف .htaccess لا يمكن تشغيلة. نحن نقترح باصرار ان تعيد اعداد خادمك لمنع الدخول الى بياناتك عن طريق الانترنت او بالامكان ان تنقل مجلد data خارج document root بشكل مؤقت. " -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "تحذير في التنصيب" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "يرجى التحقق دليل التثبيت." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "الموديل 'fileinfo' مفقود" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "اصدار PHP الخاص بك قديم" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "اصدار PHP الخاص بك قديم. نحن نقترح لك باصرار ان يتم ترقية الاصدار الى 5.3.8 او احدث بسبب ان الاصدارات القديمة معروفة انها مهمشة. من الممكن ان التنزيل قد لا يتم بصورة صحيحة." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "اللغه لا تعمل" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "لا يمكن تعيين لغة النظام الى احد اللغات التي تدعم UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "هذا يعني انه من الممكن ان يكون هناك مشكلة في بعض الاحرف في اسم الملف." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "نحن باصرار نقترح ان تثبت الحزم المطلوبة في نظامك لدعم احد هذة اللغات: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "الاتصال بالانترنت لا يعمل" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "هذا الخادم لا يوجد لدية اتصال انترنت. هذا يعني ان بعض الميزات مثل mounting التخزين الخارجي , تنبيهات عن التحديثات او تنزيلات برامج الطرف الثالث3 لا تعمل. الدخول للملفات البعيدة و ارسال تنبيهات البريد الالكتروني ممكن ان لا تعمل ايضا. نحن نقترح بتفعيل اتصال الانترنت لهذا الخادم لتتمكن من الاستفادة من كل الميزات" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "مجدول" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه" -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "استخدم نظام خدمة cron لـ استدعاء ملف cron.php كل 15 دقيقة " -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:207 +#: templates/admin.php:210 msgid "Allow public uploads" msgstr "السماح بالرفع للعامة " -#: templates/admin.php:208 +#: templates/admin.php:211 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "السماح للمستخدمين بتفعيل الرفع للاخرين من خلال مجلد المشاركة العام " -#: templates/admin.php:216 +#: templates/admin.php:218 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:217 +#: templates/admin.php:219 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:224 +#: templates/admin.php:226 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:234 +#: templates/admin.php:236 msgid "Allow mail notification" msgstr "السماح بتنبيهات البريد الالكتروني." -#: templates/admin.php:235 +#: templates/admin.php:237 msgid "Allow user to send mail notification for shared files" msgstr "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة " -#: templates/admin.php:242 +#: templates/admin.php:244 msgid "Security" msgstr "حماية" -#: templates/admin.php:255 +#: templates/admin.php:257 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:259 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر" -#: templates/admin.php:263 +#: templates/admin.php:265 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او تعطيل SSL enforcement." -#: templates/admin.php:275 +#: templates/admin.php:277 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:279 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:310 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:332 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:336 msgid "Server address" msgstr "عنوان الخادم" -#: templates/admin.php:338 +#: templates/admin.php:340 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:345 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:346 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:349 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:353 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:354 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:359 msgid "Log" msgstr "سجل" -#: templates/admin.php:358 +#: templates/admin.php:360 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:390 +#: templates/admin.php:392 msgid "More" msgstr "المزيد" -#: templates/admin.php:391 +#: templates/admin.php:393 msgid "Less" msgstr "أقل" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:399 templates/personal.php:181 msgid "Version" msgstr "إصدار" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:403 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the , 2013 # Josep Tomàs , 2013 +# mickymadsystems , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 08:40+0000\n" +"Last-Translator: mickymadsystems \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,7 +38,7 @@ msgstr "El nom del fitxer no pot ser buit." #: ajax/newfile.php:62 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" no es un fitxer vàlid." #: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" @@ -48,7 +49,7 @@ msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no #: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "La carpeta de destí s'ha mogut o eliminat." #: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format @@ -152,12 +153,12 @@ msgstr "No es pot pujar {filename} perquè és una carpeta o té 0 bytes" #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Mida total del fitxer {size1} excedeix el límit de pujada {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}" #: js/file-upload.js:338 msgid "Upload cancelled." @@ -252,7 +253,7 @@ msgstr[1] "Pujant %n fitxers" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" no es un fitxer vàlid." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 87e5747a99..3865dfb313 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc, 2013 +# rogerc, 2013-2014 # Jordi Vilalta Prat , 2013 # Josep Tomàs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 08:40+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -104,7 +104,7 @@ msgstr "La encriptació inicial ha començat... Pot trigar una estona, espereu." #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "encriptació inicial en procés... Proveu-ho més tard." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 91d69f2f2e..711c32d326 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc, 2014 # rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 09:02+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +41,7 @@ msgstr "Error en configurar l'emmagatzemament Google Drive" #: js/settings.js:313 js/settings.js:320 msgid "Saved" -msgstr "" +msgstr "Desat" #: lib/config.php:512 msgid "" @@ -117,7 +118,7 @@ msgstr "Habilita l'emmagatzemament extern d'usuari" #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Permet als usuaris muntar els dispositius externs següents" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 1a93090cfe..9452db004b 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc, 2013 +# rogerc, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 08:52+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +66,7 @@ msgstr "compartit per %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "Baixa %s" #: templates/public.php:48 msgid "Direct link" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index ce2e2043a1..be84319073 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc, 2013 +# rogerc, 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 09:02+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -158,7 +158,7 @@ msgstr "El testimoni ha expirat. Torneu a carregar la pàgina." #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "Usuari desconegut" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -193,23 +193,23 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Heu d'escriure un compte existent o el d'administrador." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "El nom d'usuari i/o la contrasenya de MySQL/MariaDB no són vàlids" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 #: private/setup/oci.php:151 private/setup/oci.php:162 #: private/setup/oci.php:169 private/setup/oci.php:178 #: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Error DB: \"%s\"" @@ -218,9 +218,9 @@ msgstr "Error DB: \"%s\"" #: private/setup/oci.php:122 private/setup/oci.php:145 #: private/setup/oci.php:152 private/setup/oci.php:163 #: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "L'ordre en conflicte és: \"%s\"" @@ -228,20 +228,20 @@ msgstr "L'ordre en conflicte és: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "L'usuari MySQL/MariaDB '%s'@'localhost' ja existeix." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Esborreu aquest usuari de MySQL/MariaDB" #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "L'usuari MySQL/MariaDB '%s'@'%%' ja existeix" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Esborreu aquest usuari de MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -256,7 +256,7 @@ msgstr "Nom d'usuari i/o contrasenya Oracle no vàlids" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya PostgreSQL no vàlids" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index df889193c6..caae9ab09e 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 14:20+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 09:10+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,24 +22,24 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "El valor proporcionat no és vàlid per %s" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Desat" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "prova l'arranjament del correu" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Si rebeu aquest correu sembla que l'arranjament del correu és correcte." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Hi ha hagut un problema en enviar el correu. Comproveu-ne l'arranjament." #: admin/controller.php:99 msgid "Email sent" @@ -47,19 +47,19 @@ msgstr "El correu electrónic s'ha enviat" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Heu d'establir un nom d'usuari abans de poder enviar correus de prova." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:282 msgid "Send mode" -msgstr "" +msgstr "Mode d'enviament" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 msgid "Encryption" msgstr "Xifrat" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:319 msgid "Authentication method" -msgstr "" +msgstr "Mètode d'autenticació" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -159,7 +159,7 @@ msgstr "No es pot canviar la contrasenya" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Enviant..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -167,7 +167,7 @@ msgstr "Documentació d'usuari" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Documentació d'administrador" #: js/apps.js:67 msgid "Update to {appversion}" @@ -320,19 +320,19 @@ msgstr "Inici de sessió" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Pla" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "Gestor NT LAN" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -462,124 +462,124 @@ msgstr "Permet enllaços" msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:211 +#: templates/admin.php:210 msgid "Allow public uploads" msgstr "Permet pujada pública" -#: templates/admin.php:212 +#: templates/admin.php:211 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permet als usuaris habilitar pujades de tercers en les seves carpetes compartides al públic" -#: templates/admin.php:220 +#: templates/admin.php:218 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:221 +#: templates/admin.php:219 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris compartir de nou elements ja compartits amb ells" -#: templates/admin.php:228 +#: templates/admin.php:226 msgid "Allow users to share with anyone" msgstr "Permet compartir amb qualsevol" -#: templates/admin.php:231 +#: templates/admin.php:229 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" -#: templates/admin.php:238 +#: templates/admin.php:236 msgid "Allow mail notification" msgstr "Permet notificacions per correu electrónic" -#: templates/admin.php:239 +#: templates/admin.php:237 msgid "Allow user to send mail notification for shared files" msgstr "Permet a l'usuari enviar notificacions de fitxers compartits per correu " -#: templates/admin.php:246 +#: templates/admin.php:244 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:259 +#: templates/admin.php:257 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:259 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Força la connexió dels clients a %s a través d'una connexió encriptada." -#: templates/admin.php:267 +#: templates/admin.php:265 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL." -#: templates/admin.php:279 +#: templates/admin.php:277 msgid "Email Server" -msgstr "" +msgstr "Servidor de correu" -#: templates/admin.php:281 +#: templates/admin.php:279 msgid "This is used for sending out notifications." -msgstr "" +msgstr "S'usa per enviar notificacions." -#: templates/admin.php:312 +#: templates/admin.php:310 msgid "From address" -msgstr "" +msgstr "Des de l'adreça" -#: templates/admin.php:334 +#: templates/admin.php:332 msgid "Authentication required" -msgstr "" +msgstr "Es requereix autenticació" -#: templates/admin.php:338 +#: templates/admin.php:336 msgid "Server address" msgstr "Adreça del servidor" -#: templates/admin.php:342 +#: templates/admin.php:340 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:345 msgid "Credentials" msgstr "Credencials" -#: templates/admin.php:348 +#: templates/admin.php:346 msgid "SMTP Username" -msgstr "" +msgstr "Nom d'usuari SMTP" -#: templates/admin.php:351 +#: templates/admin.php:349 msgid "SMTP Password" -msgstr "" +msgstr "Contrasenya SMTP" -#: templates/admin.php:355 +#: templates/admin.php:353 msgid "Test email settings" -msgstr "" +msgstr "Prova l'arranjament del correu" -#: templates/admin.php:356 +#: templates/admin.php:354 msgid "Send email" -msgstr "" +msgstr "Envia correu" -#: templates/admin.php:361 +#: templates/admin.php:359 msgid "Log" msgstr "Registre" -#: templates/admin.php:362 +#: templates/admin.php:360 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:394 +#: templates/admin.php:392 msgid "More" msgstr "Més" -#: templates/admin.php:395 +#: templates/admin.php:393 msgid "Less" msgstr "Menys" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:399 templates/personal.php:181 msgid "Version" msgstr "Versió" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:403 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the -licensed by " @@ -690,7 +690,7 @@ msgstr "Correu electrònic" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "Ompliu una adreça de correu per poder recuperar la contrasenya i rebre notificacions" #: templates/personal.php:96 msgid "Profile picture" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 0fdcd69df3..ce1cd4df02 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# rogerc, 2013 +# rogerc, 2013-2014 # rogerc, 2013 # victek, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 08:52+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -166,7 +166,7 @@ msgstr "Ajuda" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Els grups que compleixen aquests criteris estan disponibles a %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -202,7 +202,7 @@ msgstr "grups trobats" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Usuaris acreditats amb aquest atribut:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -270,7 +270,7 @@ msgstr "Podeu especificar DN Base per usuaris i grups a la pestanya Avançat" #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Limita l'accés a %s usuaris que compleixin amb aquest criteri:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -414,13 +414,13 @@ msgstr "Associació membres-grup" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Grups imbricats" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Quan està activat, els grups que contenen grups estan permesos. (Només funciona si l'atribut del grup membre conté DNs.)" #: templates/settings.php:41 msgid "Special Attributes" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index ed065c2dee..08ca5c28cf 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -8,15 +8,16 @@ # Honza K. , 2013 # liska_, 2013 # Martin , 2013 +# m23 , 2014 # pstast , 2013-2014 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 21:30+0000\n" +"Last-Translator: m23 \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -281,23 +282,23 @@ msgstr "Chyba při nahrávání šablony existence souboru" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Velmi slabé heslo" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Slabé heslo" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Středně silné heslo" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Dobré heslo" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Silné heslo" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -674,7 +675,7 @@ msgstr "Vytvořit účet správce" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Úložiště & databáze" #: templates/installation.php:77 msgid "Data folder" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index eb66b8269f..fbe509b5e9 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -8,15 +8,16 @@ # Honza K. , 2013 # liska_, 2013-2014 # cvanca , 2013 +# m23 , 2014 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 20:40+0000\n" +"Last-Translator: m23 \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,7 +42,7 @@ msgstr "Název souboru nemůže být prázdný řetězec." #: ajax/newfile.php:62 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" je neplatným názvem souboru." #: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" @@ -52,7 +53,7 @@ msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' n #: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Cílová složka byla přesunuta nebo smazána." #: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format @@ -156,12 +157,12 @@ msgstr "Nelze nahrát soubor {filename}, protože je to buď adresář nebo má #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Celková velikost souboru {size1} překračuje povolenou velikost pro nahrávání {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Není dostatek místa pro uložení, velikost souboru je {size1}, zbývá pouze {size2}" #: js/file-upload.js:338 msgid "Upload cancelled." @@ -259,7 +260,7 @@ msgstr[2] "Nahrávám %n souborů" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" je neplatným názvem souboru." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index ff6afc9625..349b37ace7 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# m23 , 2014 # pstast , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 21:30+0000\n" +"Last-Translator: m23 \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,7 +41,7 @@ msgstr "Chyba při nastavení úložiště Google Drive" #: js/settings.js:313 js/settings.js:320 msgid "Saved" -msgstr "" +msgstr "Uloženo" #: lib/config.php:512 msgid "" @@ -117,7 +118,7 @@ msgstr "Zapnout externí uživatelské úložiště" #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Povolit uživatelů připojit externí úložiště" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 19ed303839..ce64f200f2 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -4,14 +4,15 @@ # # Translators: # liska_, 2013 +# m23 , 2014 # pstast , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 12:24+0000\n" +"Last-Translator: m23 \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,7 +68,7 @@ msgstr "sdíleno %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "Stáhnout %s" #: templates/public.php:48 msgid "Direct link" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 26cf2c71dd..7d2e44fc8d 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -5,15 +5,16 @@ # Translators: # Honza K. , 2013 # liska_, 2013 +# m23 , 2014 # pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 21:30+0000\n" +"Last-Translator: m23 \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,7 +162,7 @@ msgstr "Token vypršel. Obnovte prosím stránku." #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "Neznámý uživatel" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -196,23 +197,23 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "Uživatelské jméno či heslo MSSQL není platné: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Musíte zadat existující účet či správce." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "MySQL/MariaDB uživatelské jméno a/nebo heslo je neplatné" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 #: private/setup/oci.php:151 private/setup/oci.php:162 #: private/setup/oci.php:169 private/setup/oci.php:178 #: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Chyba databáze: \"%s\"" @@ -221,9 +222,9 @@ msgstr "Chyba databáze: \"%s\"" #: private/setup/oci.php:122 private/setup/oci.php:145 #: private/setup/oci.php:152 private/setup/oci.php:163 #: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Příslušný příkaz byl: \"%s\"" @@ -231,20 +232,20 @@ msgstr "Příslušný příkaz byl: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL/MariaDB uživatel '%s'@'localhost' již existuje." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Zahodit uživatele z MySQL/MariaDB" #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL/MariaDB uživatel '%s'@'%%' již existuje" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Zahodit uživatele z MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -259,7 +260,7 @@ msgstr "Uživatelské jméno či heslo Oracle není platné" msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "Uživatelské jméno či heslo PostgreSQL není platné" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 203ca842dd..459232cb5a 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -7,15 +7,16 @@ # Honza K. , 2013 # liska_, 2013 # cvanca , 2013 +# m23 , 2014 # pstast , 2013-2014 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"PO-Revision-Date: 2014-03-18 21:40+0000\n" +"Last-Translator: m23 \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +31,7 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Uloženo" #: admin/controller.php:90 msgid "test email settings" @@ -53,17 +54,17 @@ msgstr "E-mail odeslán" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:282 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 msgid "Encryption" msgstr "Šifrování" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:319 msgid "Authentication method" -msgstr "" +msgstr "Metoda autentifikace" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -163,7 +164,7 @@ msgstr "Změna hesla se nezdařila" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Odesílání..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -171,7 +172,7 @@ msgstr "Uživatelská dokumentace" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Dokumentace pro administrátory" #: js/apps.js:67 msgid "Update to {appversion}" @@ -217,31 +218,31 @@ msgstr "Aktualizovat" msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Vyberte profilový obrázek" -#: js/personal.js:274 -msgid "Very weak password" -msgstr "" - -#: js/personal.js:275 -msgid "Weak password" -msgstr "" - -#: js/personal.js:276 -msgid "So-so password" -msgstr "" - #: js/personal.js:277 -msgid "Good password" -msgstr "" +msgid "Very weak password" +msgstr "Velmi slabé heslo" #: js/personal.js:278 -msgid "Strong password" -msgstr "" +msgid "Weak password" +msgstr "Slabé heslo" -#: js/personal.js:301 +#: js/personal.js:279 +msgid "So-so password" +msgstr "Středně silné heslo" + +#: js/personal.js:280 +msgid "Good password" +msgstr "Dobré heslo" + +#: js/personal.js:281 +msgid "Strong password" +msgstr "Silné heslo" + +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu." @@ -332,24 +333,24 @@ msgstr "" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Bezpečnostní upozornění" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Přistupujete na %s protokolem HTTP. Důrazně doporučujeme nakonfigurovat server pro použití HTTPS." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -358,68 +359,68 @@ msgid "" "root." msgstr "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Upozornění nastavení" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Zkontrolujte prosím znovu instalační příručku." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Schází modul 'fileinfo'" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Vaše verze PHP je zastaralá" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Vámi používaná verze PHP je zastaralá. Důrazně doporučujeme aktualizovat na verzi 5.3.8 nebo novější, protože starší verze obsahují chyby. Je možné, že tato instalace nebude fungovat správně." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokalizace nefunguje" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Není možné nastavit znakovou sadu, která podporuje UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "To znamená, že se mohou vyskytnout problémy s určitými znaky v názvech souborů." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Důrazně doporučujeme nainstalovat do vašeho systém balíčky nutné pro podporu některé z následujících znakových sad: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Připojení k internetu nefunguje" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -428,162 +429,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Spustit jednu úlohu s každým načtením stránky" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použít systémovou službu cron pro volání cron.php každých 15 minut." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Povolit uživatelům sdílet položky veřejně pomocí odkazů" -#: templates/admin.php:207 +#: templates/admin.php:210 msgid "Allow public uploads" msgstr "Povolit veřejné nahrávání souborů" -#: templates/admin.php:208 +#: templates/admin.php:211 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky" -#: templates/admin.php:216 +#: templates/admin.php:218 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:217 +#: templates/admin.php:219 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:224 +#: templates/admin.php:226 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:234 +#: templates/admin.php:236 msgid "Allow mail notification" msgstr "Povolit e-mailová upozornění" -#: templates/admin.php:235 +#: templates/admin.php:237 msgid "Allow user to send mail notification for shared files" msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" -#: templates/admin.php:242 +#: templates/admin.php:244 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:255 +#: templates/admin.php:257 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:259 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynutí připojování klientů k %s šifrovaným spojením." -#: templates/admin.php:263 +#: templates/admin.php:265 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL." -#: templates/admin.php:275 -msgid "Email Server" -msgstr "" - #: templates/admin.php:277 +msgid "Email Server" +msgstr "Emailový server" + +#: templates/admin.php:279 msgid "This is used for sending out notifications." -msgstr "" +msgstr "Toto se používá při odesílání upozornění." -#: templates/admin.php:308 +#: templates/admin.php:310 msgid "From address" -msgstr "" +msgstr "Adresa odesílatele" -#: templates/admin.php:330 +#: templates/admin.php:332 msgid "Authentication required" -msgstr "" +msgstr "Ověření vyžadováno" -#: templates/admin.php:334 +#: templates/admin.php:336 msgid "Server address" msgstr "Adresa serveru" -#: templates/admin.php:338 +#: templates/admin.php:340 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:345 msgid "Credentials" msgstr "Přihlašovací údaje" -#: templates/admin.php:344 +#: templates/admin.php:346 msgid "SMTP Username" -msgstr "" +msgstr "SMTP uživatelské jméno " -#: templates/admin.php:347 +#: templates/admin.php:349 msgid "SMTP Password" -msgstr "" +msgstr "SMTP heslo" -#: templates/admin.php:351 +#: templates/admin.php:353 msgid "Test email settings" -msgstr "" +msgstr "Nastavení zkušebního emailu" -#: templates/admin.php:352 +#: templates/admin.php:354 msgid "Send email" -msgstr "" +msgstr "Odeslat e-mail" -#: templates/admin.php:357 +#: templates/admin.php:359 msgid "Log" msgstr "Záznam" -#: templates/admin.php:358 +#: templates/admin.php:360 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:390 +#: templates/admin.php:392 msgid "More" msgstr "Více" -#: templates/admin.php:391 +#: templates/admin.php:393 msgid "Less" msgstr "Méně" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:399 templates/personal.php:181 msgid "Version" msgstr "Verze" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:403 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the -licensed by " diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index f28ba3f0c0..4ed00c9fc1 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 791af92c98..9aa0ab9820 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index a5c12fe5f4..d93fbf74b5 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "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 3925fa4c96..13b11589d3 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "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 431e8db803..20282edb4f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "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 978ad6b9d2..072aabb5c7 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "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 f83c426ddc..979e5d1aaa 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "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 d784498d71..d12067e969 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "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 a722e2e73c..caf3102069 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "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 7f536ebef4..8e957cdf9b 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:282 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:319 msgid "Authentication method" msgstr "" @@ -459,123 +459,123 @@ msgstr "" msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:211 +#: templates/admin.php:210 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:212 +#: templates/admin.php:211 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:218 msgid "Allow resharing" msgstr "" -#: templates/admin.php:221 +#: templates/admin.php:219 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:226 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:231 +#: templates/admin.php:229 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:238 +#: templates/admin.php:236 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:237 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:246 +#: templates/admin.php:244 msgid "Security" msgstr "" -#: templates/admin.php:259 +#: templates/admin.php:257 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:259 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:267 +#: templates/admin.php:265 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:279 +#: templates/admin.php:277 msgid "Email Server" msgstr "" -#: templates/admin.php:281 +#: templates/admin.php:279 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:312 +#: templates/admin.php:310 msgid "From address" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:332 msgid "Authentication required" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:336 msgid "Server address" msgstr "" -#: templates/admin.php:342 +#: templates/admin.php:340 msgid "Port" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:345 msgid "Credentials" msgstr "" -#: templates/admin.php:348 +#: templates/admin.php:346 msgid "SMTP Username" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:349 msgid "SMTP Password" msgstr "" -#: templates/admin.php:355 +#: templates/admin.php:353 msgid "Test email settings" msgstr "" -#: templates/admin.php:356 +#: templates/admin.php:354 msgid "Send email" msgstr "" -#: templates/admin.php:361 +#: templates/admin.php:359 msgid "Log" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:360 msgid "Log level" msgstr "" -#: templates/admin.php:394 +#: templates/admin.php:392 msgid "More" msgstr "" -#: templates/admin.php:395 +#: templates/admin.php:393 msgid "Less" msgstr "" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:399 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:403 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 7f09c73cdb..0575f3413a 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" +"POT-Creation-Date: 2014-03-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index f1d3eb9629..88bb8ec9ee 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -31,6 +31,7 @@ $TRANSLATIONS = array( "Application is not enabled" => "L'aplicació no està habilitada", "Authentication error" => "Error d'autenticació", "Token expired. Please reload page." => "El testimoni ha expirat. Torneu a carregar la pàgina.", +"Unknown user" => "Usuari desconegut", "Files" => "Fitxers", "Text" => "Text", "Images" => "Imatges", @@ -39,8 +40,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s no podeu usar punts en el nom de la base de dades", "MS SQL username and/or password not valid: %s" => "Nom d'usuari i/o contrasenya MS SQL no vàlids: %s", "You need to enter either an existing account or the administrator." => "Heu d'escriure un compte existent o el d'administrador.", +"MySQL/MariaDB username and/or password not valid" => "El nom d'usuari i/o la contrasenya de MySQL/MariaDB no són vàlids", "DB Error: \"%s\"" => "Error DB: \"%s\"", "Offending command was: \"%s\"" => "L'ordre en conflicte és: \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "L'usuari MySQL/MariaDB '%s'@'localhost' ja existeix.", +"Drop this user from MySQL/MariaDB" => "Esborreu aquest usuari de MySQL/MariaDB", +"MySQL/MariaDB user '%s'@'%%' already exists" => "L'usuari MySQL/MariaDB '%s'@'%%' ja existeix", +"Drop this user from MySQL/MariaDB." => "Esborreu aquest usuari de MySQL/MariaDB.", "Oracle connection could not be established" => "No s'ha pogut establir la connexió Oracle", "Oracle username and/or password not valid" => "Nom d'usuari i/o contrasenya Oracle no vàlids", "Offending command was: \"%s\", name: %s, password: %s" => "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index d74a96a5a9..7969060b2c 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -31,6 +31,7 @@ $TRANSLATIONS = array( "Application is not enabled" => "Aplikace není povolena", "Authentication error" => "Chyba ověření", "Token expired. Please reload page." => "Token vypršel. Obnovte prosím stránku.", +"Unknown user" => "Neznámý uživatel", "Files" => "Soubory", "Text" => "Text", "Images" => "Obrázky", @@ -39,8 +40,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "V názvu databáze %s nesmíte používat tečky.", "MS SQL username and/or password not valid: %s" => "Uživatelské jméno či heslo MSSQL není platné: %s", "You need to enter either an existing account or the administrator." => "Musíte zadat existující účet či správce.", +"MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB uživatelské jméno a/nebo heslo je neplatné", "DB Error: \"%s\"" => "Chyba databáze: \"%s\"", "Offending command was: \"%s\"" => "Příslušný příkaz byl: \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB uživatel '%s'@'localhost' již existuje.", +"Drop this user from MySQL/MariaDB" => "Zahodit uživatele z MySQL/MariaDB", +"MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB uživatel '%s'@'%%' již existuje", +"Drop this user from MySQL/MariaDB." => "Zahodit uživatele z MySQL/MariaDB.", "Oracle connection could not be established" => "Spojení s Oracle nemohlo být navázáno", "Oracle username and/or password not valid" => "Uživatelské jméno či heslo Oracle není platné", "Offending command was: \"%s\", name: %s, password: %s" => "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index be32fd94d5..92c5450b7d 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,7 +1,15 @@ "El valor proporcionat no és vàlid per %s", +"Saved" => "Desat", +"test email settings" => "prova l'arranjament del correu", +"If you received this email, the settings seem to be correct." => "Si rebeu aquest correu sembla que l'arranjament del correu és correcte.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Hi ha hagut un problema en enviar el correu. Comproveu-ne l'arranjament.", "Email sent" => "El correu electrónic s'ha enviat", +"You need to set your user email before being able to send test emails." => "Heu d'establir un nom d'usuari abans de poder enviar correus de prova.", +"Send mode" => "Mode d'enviament", "Encryption" => "Xifrat", +"Authentication method" => "Mètode d'autenticació", "Unable to load list from App Store" => "No s'ha pogut carregar la llista des de l'App Store", "Authentication error" => "Error d'autenticació", "Your full name has been changed." => "El vostre nom complet ha canviat.", @@ -24,7 +32,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "La contrasenya de recuperació d'administrador és incorrecta. Comproveu-la i torneu-ho a intentar.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "El dorsal no permet canviar la contrasenya, però la clau d'encripació d'usuaris s'ha actualitzat correctament.", "Unable to change password" => "No es pot canviar la contrasenya", +"Sending..." => "Enviant...", "User Documentation" => "Documentació d'usuari", +"Admin Documentation" => "Documentació d'administrador", "Update to {appversion}" => "Actualitza a {appversion}", "Disable" => "Desactiva", "Enable" => "Habilita", @@ -62,6 +72,10 @@ $TRANSLATIONS = array( "Fatal issues only" => "Només problemes fatals", "None" => "Cap", "Login" => "Inici de sessió", +"Plain" => "Pla", +"NT LAN Manager" => "Gestor NT LAN", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Avís de seguretat", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Esteu accedint %s a través de HTTP. Us recomanem fermament que configureu el servidor perquè requereixi HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", @@ -99,9 +113,17 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Força HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL.", +"Email Server" => "Servidor de correu", +"This is used for sending out notifications." => "S'usa per enviar notificacions.", +"From address" => "Des de l'adreça", +"Authentication required" => "Es requereix autenticació", "Server address" => "Adreça del servidor", "Port" => "Port", "Credentials" => "Credencials", +"SMTP Username" => "Nom d'usuari SMTP", +"SMTP Password" => "Contrasenya SMTP", +"Test email settings" => "Prova l'arranjament del correu", +"Send email" => "Envia correu", "Log" => "Registre", "Log level" => "Nivell de registre", "More" => "Més", @@ -111,7 +133,9 @@ $TRANSLATIONS = array( "Add your App" => "Afegiu la vostra aplicació", "More Apps" => "Més aplicacions", "Select an App" => "Seleccioneu una aplicació", +"Documentation:" => "Documentació:", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", +"See application website" => "Mostra la web de l'aplicació", "-licensed by " => "-propietat de ", "Administrator Documentation" => "Documentació d'administrador", "Online Documentation" => "Documentació en línia", @@ -130,6 +154,7 @@ $TRANSLATIONS = array( "Full Name" => "Nom complet", "Email" => "Correu electrònic", "Your email address" => "Correu electrònic", +"Fill in an email address to enable password recovery and receive notifications" => "Ompliu una adreça de correu per poder recuperar la contrasenya i rebre notificacions", "Profile picture" => "Foto de perfil", "Upload new" => "Puja'n una de nova", "Select new from Files" => "Selecciona'n una de nova dels fitxers", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 396b49b4f7..778a05bd5e 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,7 +1,9 @@ "Uloženo", "Email sent" => "E-mail odeslán", "Encryption" => "Šifrování", +"Authentication method" => "Metoda autentifikace", "Unable to load list from App Store" => "Nelze načíst seznam z App Store", "Authentication error" => "Chyba přihlášení", "Your full name has been changed." => "Vaše celé jméno bylo změněno.", @@ -24,7 +26,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Chybné administrátorské heslo pro obnovu. Překontrolujte správnost hesla a zkuste to znovu.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Úložiště nepodporuje změnu hesla, ale šifrovací klíč uživatelů byl úspěšně změněn.", "Unable to change password" => "Změna hesla se nezdařila", +"Sending..." => "Odesílání...", "User Documentation" => "Uživatelská dokumentace", +"Admin Documentation" => "Dokumentace pro administrátory", "Update to {appversion}" => "Aktualizovat na {appversion}", "Disable" => "Zakázat", "Enable" => "Povolit", @@ -37,6 +41,11 @@ $TRANSLATIONS = array( "Update" => "Aktualizovat", "Updated" => "Aktualizováno", "Select a profile picture" => "Vyberte profilový obrázek", +"Very weak password" => "Velmi slabé heslo", +"Weak password" => "Slabé heslo", +"So-so password" => "Středně silné heslo", +"Good password" => "Dobré heslo", +"Strong password" => "Silné heslo", "Decrypting files... Please wait, this can take some time." => "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu.", "deleted" => "smazáno", "undo" => "vrátit zpět", @@ -57,6 +66,8 @@ $TRANSLATIONS = array( "Fatal issues only" => "Pouze fatální problémy", "None" => "Žádné", "Login" => "Přihlásit", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Bezpečnostní upozornění", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Přistupujete na %s protokolem HTTP. Důrazně doporučujeme nakonfigurovat server pro použití HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem.", @@ -94,9 +105,17 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL.", +"Email Server" => "Emailový server", +"This is used for sending out notifications." => "Toto se používá při odesílání upozornění.", +"From address" => "Adresa odesílatele", +"Authentication required" => "Ověření vyžadováno", "Server address" => "Adresa serveru", "Port" => "Port", "Credentials" => "Přihlašovací údaje", +"SMTP Username" => "SMTP uživatelské jméno ", +"SMTP Password" => "SMTP heslo", +"Test email settings" => "Nastavení zkušebního emailu", +"Send email" => "Odeslat e-mail", "Log" => "Záznam", "Log level" => "Úroveň zaznamenávání", "More" => "Více", @@ -106,7 +125,9 @@ $TRANSLATIONS = array( "Add your App" => "Přidat Vaši aplikaci", "More Apps" => "Více aplikací", "Select an App" => "Vyberte aplikaci", +"Documentation:" => "Dokumentace:", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", +"See application website" => "Prohlédněte si webovou stránku aplikace", "-licensed by " => "-licencováno ", "Administrator Documentation" => "Dokumentace správce", "Online Documentation" => "Online dokumentace", From e0dada704cebb0a61f6fd8e845f0d8865a373672 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 19:37:02 +0100 Subject: [PATCH 211/333] Added ext storage unit tests for writing then reload the mount config --- apps/files_external/tests/mountconfig.php | 74 ++++++++++++++++++++++- 1 file changed, 73 insertions(+), 1 deletion(-) diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index a22c7424c6..090b5f8e5c 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -113,7 +113,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { * Test adding a global mount point */ public function testAddGlobalMountPoint() { - $mountType = OC_Mount_Config::MOUNT_TYPE_GLOBAL; + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $applicable = 'all'; $isPersonal = false; @@ -186,4 +186,76 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $this->assertFalse(OC_Mount_Config::addMountPoint('/ext', $storageClass, array(), $mountType, $applicable, $isPersonal)); } + + /** + * Test reading and writing global config + */ + public function testReadWriteGlobalConfig() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $applicable = 'all'; + $isPersonal = false; + $mountConfig = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $mountConfig, + $mountType, + $applicable, + $isPersonal + ) + ); + + // re-read config + $config = OC_Mount_Config::getSystemMountPoints(); + $this->assertEquals(1, count($config)); + $this->assertTrue(isset($config['ext'])); + $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); + $savedMountConfig = $config['ext']['configuration']; + $this->assertEquals($mountConfig, $savedMountConfig); + } + + /** + * Test reading and writing config + */ + public function testReadWritePersonalConfig() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $applicable = 'test'; + $isPersonal = true; + $mountConfig = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $mountConfig, + $mountType, + $applicable, + $isPersonal + ) + ); + + // re-read config + $config = OC_Mount_Config::getPersonalMountPoints(); + $this->assertEquals(1, count($config)); + $this->assertTrue(isset($config['ext'])); + $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); + $savedMountConfig = $config['ext']['configuration']; + $this->assertEquals($mountConfig, $savedMountConfig); + } } From 40a70ecf7906ce9ee631d237b4af6c21f5930a0f Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 18 Mar 2014 21:15:11 +0100 Subject: [PATCH 212/333] Added password obfuscation for external storage config Added obfuscation for all "password" options from external storages. Added unit tests for reading/writing the configuration. --- apps/files_external/lib/config.php | 62 +++++++++++++++- apps/files_external/lib/smb.php | 2 +- apps/files_external/tests/mountconfig.php | 87 +++++++++++++++++++++++ 3 files changed, 148 insertions(+), 3 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 2c8828c4d5..05cc88c5d5 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -4,6 +4,7 @@ * * @author Michael Gapczynski * @copyright 2012 Michael Gapczynski mtgap@owncloud.com +* @copyright 2014 Vincent Petry * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -19,9 +20,16 @@ * License along with this library. If not, see . */ +set_include_path( + get_include_path() . PATH_SEPARATOR . + \OC_App::getAppPath('files_external') . '/3rdparty/phpseclib/phpseclib' +); +include('Crypt/AES.php'); + /** * Class to configure the config/mount.php and data/$user/mount.php files -*/ + */ +// TODO: make this class non-static class OC_Mount_Config { const MOUNT_TYPE_GLOBAL = 'global'; @@ -31,6 +39,9 @@ class OC_Mount_Config { // whether to skip backend test (for unit tests, as this static class is not mockable) public static $skipTest = false; + // password encryption cipher + private static $cipher; + /** * Get details on each of the external storage backends, used for the mount config UI * If a custom UI is needed, add the key 'custom' and a javascript file with that name will be loaded @@ -203,6 +214,7 @@ class OC_Mount_Config { if (strpos($mount['class'], 'OC_Filestorage_') !== false) { $mount['class'] = '\OC\Files\Storage\\'.substr($mount['class'], 15); } + $mount['options'] = self::decryptPasswords($mount['options']); // Remove '/$user/files/' from mount point $mountPoint = substr($mountPoint, 13); // Merge the mount point into the current mount points @@ -228,6 +240,7 @@ class OC_Mount_Config { if (strpos($mount['class'], 'OC_Filestorage_') !== false) { $mount['class'] = '\OC\Files\Storage\\'.substr($mount['class'], 15); } + $mount['options'] = self::decryptPasswords($mount['options']); // Remove '/$user/files/' from mount point $mountPoint = substr($mountPoint, 13); // Merge the mount point into the current mount points @@ -265,6 +278,7 @@ class OC_Mount_Config { if (strpos($mount['class'], 'OC_Filestorage_') !== false) { $mount['class'] = '\OC\Files\Storage\\'.substr($mount['class'], 15); } + $mount['options'] = self::decryptPasswords($mount['options']); // Remove '/uid/files/' from mount point $personal[substr($mountPoint, strlen($uid) + 8)] = array( 'class' => $mount['class'], @@ -334,7 +348,13 @@ class OC_Mount_Config { } else { $mountPoint = '/$user/files/'.ltrim($mountPoint, '/'); } - $mount = array($applicable => array($mountPoint => array('class' => $class, 'options' => $classOptions))); + + $mount = array($applicable => array( + $mountPoint => array( + 'class' => $class, + 'options' => self::encryptPasswords($classOptions)) + ) + ); $mountPoints = self::readData($isPersonal); // Merge the new mount point into the current mount points if (isset($mountPoints[$mountType])) { @@ -527,4 +547,42 @@ class OC_Mount_Config { return $txt; } + + /** + * Encrypt passwords in the given config options + * @param array $options mount options + * @return array updated options + */ + private static function encryptPasswords($options) { + if (isset($options['password'])) { + $options['password_encrypted'] = base64_encode(self::getCipher()->encrypt($options['password'])); + unset($options['password']); + } + return $options; + } + + /** + * Decrypt passwords in the given config options + * @param array $options mount options + * @return array updated options + */ + private static function decryptPasswords($options) { + // note: legacy options might still have the unencrypted password in the "password" field + if (isset($options['password_encrypted'])) { + $options['password'] = self::getCipher()->decrypt(base64_decode($options['password_encrypted'])); + unset($options['password_encrypted']); + } + return $options; + } + + /** + * Returns the encryption cipher + */ + private static function getCipher() { + if (!isset(self::$cipher)) { + self::$cipher = new Crypt_AES(CRYPT_AES_MODE_CBC); + self::$cipher->setKey(\OCP\Config::getSystemValue('passwordsalt')); + } + return self::$cipher; + } } diff --git a/apps/files_external/lib/smb.php b/apps/files_external/lib/smb.php index c5fba92ee6..f3f3b3ed7f 100644 --- a/apps/files_external/lib/smb.php +++ b/apps/files_external/lib/smb.php @@ -37,7 +37,7 @@ class SMB extends \OC\Files\Storage\StreamWrapper{ $this->share = substr($this->share, 0, -1); } } else { - throw new \Exception(); + throw new \Exception('Invalid configuration'); } } diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index 090b5f8e5c..8c255769fc 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -94,6 +94,14 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { return json_decode(file_get_contents($configFile), true); } + /** + * Write the user config, to simulate existing files + */ + private function writeUserConfig($config) { + $configFile = $this->userHome . '/mount.json'; + file_put_contents($configFile, json_encode($config)); + } + /** * Test mount point validation */ @@ -258,4 +266,83 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $savedMountConfig = $config['ext']['configuration']; $this->assertEquals($mountConfig, $savedMountConfig); } + + /** + * Test password obfuscation + */ + public function testPasswordObfuscation() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $applicable = 'test'; + $isPersonal = true; + $mountConfig = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $mountConfig, + $mountType, + $applicable, + $isPersonal + ) + ); + + // note: password re-reading is covered by testReadWritePersonalConfig + + // check that password inside the file is NOT in plain text + $config = $this->readUserConfig(); + $savedConfig = $config[$mountType][$applicable]['/test/files/ext']['options']; + + // no more clear text password in file + $this->assertFalse(isset($savedConfig['password'])); + + // encrypted password is present + $this->assertNotEquals($mountConfig['password'], $savedConfig['password_encrypted']); + } + + /** + * Test read legacy passwords + */ + public function testReadLegacyPassword() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $applicable = 'test'; + $isPersonal = true; + $mountConfig = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $mountConfig, + $mountType, + $applicable, + $isPersonal + ) + ); + + $config = $this->readUserConfig(); + // simulate non-encrypted password situation + $config[$mountType][$applicable]['/test/files/ext']['options']['password'] = 'smbpasswd'; + + $this->writeUserConfig($config); + + // re-read config, password was read correctly + $config = OC_Mount_Config::getPersonalMountPoints(); + $savedMountConfig = $config['ext']['configuration']; + $this->assertEquals($mountConfig, $savedMountConfig); + } } From 80180bea325c994be3f24d14ec7dd0682429396d Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 19 Mar 2014 11:42:22 +0100 Subject: [PATCH 213/333] Added IV for ext storage password encryption --- apps/files_external/lib/config.php | 43 +++++++++++++++++++++++------- lib/public/util.php | 9 +++++++ 2 files changed, 42 insertions(+), 10 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 05cc88c5d5..0a68de1cdb 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -39,9 +39,6 @@ class OC_Mount_Config { // whether to skip backend test (for unit tests, as this static class is not mockable) public static $skipTest = false; - // password encryption cipher - private static $cipher; - /** * Get details on each of the external storage backends, used for the mount config UI * If a custom UI is needed, add the key 'custom' and a javascript file with that name will be loaded @@ -555,7 +552,7 @@ class OC_Mount_Config { */ private static function encryptPasswords($options) { if (isset($options['password'])) { - $options['password_encrypted'] = base64_encode(self::getCipher()->encrypt($options['password'])); + $options['password_encrypted'] = self::encryptPassword($options['password']); unset($options['password']); } return $options; @@ -569,20 +566,46 @@ class OC_Mount_Config { private static function decryptPasswords($options) { // note: legacy options might still have the unencrypted password in the "password" field if (isset($options['password_encrypted'])) { - $options['password'] = self::getCipher()->decrypt(base64_decode($options['password_encrypted'])); + $options['password'] = self::decryptPassword($options['password_encrypted']); unset($options['password_encrypted']); } return $options; } + /** + * Encrypt a single password + * @param string $password plain text password + * @return encrypted password + */ + private static function encryptPassword($password) { + $cipher = self::getCipher(); + $iv = \OCP\Util::generateRandomBytes(16); + $cipher->setIV($iv); + return base64_encode($iv . $cipher->encrypt($password)); + } + + /** + * Decrypts a single password + * @param string $encryptedPassword encrypted password + * @return plain text password + */ + private static function decryptPassword($encryptedPassword) { + $cipher = self::getCipher(); + $binaryPassword = base64_decode($encryptedPassword); + $iv = substr($binaryPassword, 0, 16); + $cipher->setIV($iv); + $binaryPassword = substr($binaryPassword, 16); + return $cipher->decrypt($binaryPassword); + } + /** * Returns the encryption cipher */ private static function getCipher() { - if (!isset(self::$cipher)) { - self::$cipher = new Crypt_AES(CRYPT_AES_MODE_CBC); - self::$cipher->setKey(\OCP\Config::getSystemValue('passwordsalt')); - } - return self::$cipher; + // note: not caching this to make it thread safe as we'll use + // a different IV for each password + $cipher = new Crypt_AES(CRYPT_AES_MODE_CBC); + $cipher->setKey(\OCP\Config::getSystemValue('passwordsalt')); + return $cipher; } } diff --git a/lib/public/util.php b/lib/public/util.php index 585c5d2263..f4d749c104 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -495,4 +495,13 @@ class Util { public static function isValidFileName($file) { return \OC_Util::isValidFileName($file); } + + /** + * @brief Generates a cryptographic secure pseudo-random string + * @param Int $length of the random string + * @return String + */ + public static function generateRandomBytes($length = 30) { + return \OC_Util::generateRandomBytes($length); + } } From 7ab2632085440d3e792b4ccca3c527d26f10cad2 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 19 Mar 2014 12:11:14 +0100 Subject: [PATCH 214/333] Use tipsy to display error when selecting a date in the past --- core/js/share.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index 0b65e15309..02d16cbd89 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -718,13 +718,21 @@ $(document).ready(function() { $(document).on('change', '#dropdown #expirationDate', function() { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); + + $(this).tipsy('hide'); + $(this).removeClass('error'); + $.post(OC.filePath('core', 'ajax', 'share.php'), { action: 'setExpirationDate', itemType: itemType, itemSource: itemSource, date: $(this).val() }, function(result) { if (!result || result.status !== 'success') { + var expirationDateField = $('#dropdown #expirationDate'); if (!result.data.message) { - OC.dialogs.alert(t('core', 'Error setting expiration date'), t('core', 'Error')); + expirationDateField.attr('original-title', t('core', 'Error setting expiration date')); } else { - OC.dialogs.alert(result.data.message, t('core', 'Error')); + expirationDateField.attr('original-title', result.data.message); } + expirationDateField.tipsy({gravity: 'n', fade: true}); + expirationDateField.tipsy('show'); + expirationDateField.addClass('error'); } }); }); From 4cb53f77b2e09fa16129700b459e8b4edcd3eb64 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 19 Mar 2014 12:20:48 +0100 Subject: [PATCH 215/333] Moved external storage mounting code to files_external app Moved the mounting code for external storage from OC\Filesystem::initMountPoint to files_external using the post_initMountPoints hook --- apps/files_external/appinfo/app.php | 3 +- apps/files_external/lib/config.php | 87 ++++++++++++++++++++++++++++- lib/private/files/filesystem.php | 70 ----------------------- 3 files changed, 86 insertions(+), 74 deletions(-) diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 5b1cd86a17..0e83660f84 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -25,5 +25,6 @@ if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == ' } // connecting hooks -OCP\Util::connectHook( 'OC_User', 'post_login', 'OC\Files\Storage\iRODS', 'login' ); +OCP\Util::connectHook('OC_Filesystem', 'post_initMountPoints', '\OC_Mount_Config', 'initMountPointsHook'); +OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\iRODS', 'login'); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 0a68de1cdb..28761b4862 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -27,10 +27,10 @@ set_include_path( include('Crypt/AES.php'); /** -* Class to configure the config/mount.php and data/$user/mount.php files + * Class to configure mount.json globally and for users */ -// TODO: make this class non-static class OC_Mount_Config { + // TODO: make this class non-static and give it a proper namespace const MOUNT_TYPE_GLOBAL = 'global'; const MOUNT_TYPE_GROUP = 'group'; @@ -166,6 +166,81 @@ class OC_Mount_Config { return($backends); } + /** + * Init mount points hook + * @param array $data + */ + public static function initMountPointsHook($data) { + $user = $data['user']; + $root = $data['user_dir']; + + $datadir = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data"); + $mount_file = \OC_Config::getValue("mount_file", $datadir . "/mount.json"); + + //move config file to it's new position + if (is_file(\OC::$SERVERROOT . '/config/mount.json')) { + rename(\OC::$SERVERROOT . '/config/mount.json', $mount_file); + } + + // Load system mount points + $mountConfig = self::readData(false); + if (isset($mountConfig[self::MOUNT_TYPE_GLOBAL])) { + foreach ($mountConfig[self::MOUNT_TYPE_GLOBAL] as $mountPoint => $options) { + $options['options'] = self::decryptPasswords($options['options']); + \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); + } + } + if (isset($mountConfig[self::MOUNT_TYPE_GROUP])) { + foreach ($mountConfig[self::MOUNT_TYPE_GROUP] as $group => $mounts) { + if (\OC_Group::inGroup($user, $group)) { + foreach ($mounts as $mountPoint => $options) { + $mountPoint = self::setUserVars($user, $mountPoint); + foreach ($options as &$option) { + $option = self::setUserVars($user, $option); + } + $options['options'] = self::decryptPasswords($options['options']); + \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); + } + } + } + } + if (isset($mountConfig[self::MOUNT_TYPE_USER])) { + foreach ($mountConfig[self::MOUNT_TYPE_USER] as $mountUser => $mounts) { + if ($mountUser === 'all' or strtolower($mountUser) === strtolower($user)) { + foreach ($mounts as $mountPoint => $options) { + $mountPoint = self::setUserVars($user, $mountPoint); + foreach ($options as &$option) { + $option = self::setUserVars($user, $option); + } + $options['options'] = self::decryptPasswords($options['options']); + \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); + } + } + } + } + + // Load personal mount points + $mountConfig = self::readData(true); + if (isset($mountConfig[self::MOUNT_TYPE_USER][$user])) { + foreach ($mountConfig[self::MOUNT_TYPE_USER][$user] as $mountPoint => $options) { + $options['options'] = self::decryptPasswords($options['options']); + \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); + } + } + } + + /** + * fill in the correct values for $user + * + * @param string $user + * @param string $input + * @return string + */ + private static function setUserVars($user, $input) { + return str_replace('$user', $user, $input); + } + + /** * Get details on each of the external storage backends, used for the mount config UI * Some backends are not available as a personal backend, f.e. Local and such that have @@ -288,12 +363,18 @@ class OC_Mount_Config { return $personal; } + /** + * Test connecting using the given backend configuration + * @param string $class backend class name + * @param array $options backend configuration options + * @return bool true if the connection succeeded, false otherwise + */ private static function getBackendStatus($class, $options) { if (self::$skipTest) { return true; } foreach ($options as &$option) { - $option = str_replace('$user', OCP\User::getUser(), $option); + $option = self::setUserVars(OCP\User::getUser(), $option); } if (class_exists($class)) { try { diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 6478854eae..c31e0c3818 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -320,81 +320,11 @@ class Filesystem { else { self::mount('\OC\Files\Storage\Local', array('datadir' => $root), $user); } - $datadir = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data"); - $mount_file = \OC_Config::getValue("mount_file", $datadir . "/mount.json"); - - //move config file to it's new position - if (is_file(\OC::$SERVERROOT . '/config/mount.json')) { - rename(\OC::$SERVERROOT . '/config/mount.json', $mount_file); - } - // Load system mount points - if (is_file(\OC::$SERVERROOT . '/config/mount.php') or is_file($mount_file)) { - if (is_file($mount_file)) { - $mountConfig = json_decode(file_get_contents($mount_file), true); - } elseif (is_file(\OC::$SERVERROOT . '/config/mount.php')) { - $mountConfig = $parser->parsePHP(file_get_contents(\OC::$SERVERROOT . '/config/mount.php')); - } - if (isset($mountConfig['global'])) { - foreach ($mountConfig['global'] as $mountPoint => $options) { - self::mount($options['class'], $options['options'], $mountPoint); - } - } - if (isset($mountConfig['group'])) { - foreach ($mountConfig['group'] as $group => $mounts) { - if (\OC_Group::inGroup($user, $group)) { - foreach ($mounts as $mountPoint => $options) { - $mountPoint = self::setUserVars($user, $mountPoint); - foreach ($options as &$option) { - $option = self::setUserVars($user, $option); - } - self::mount($options['class'], $options['options'], $mountPoint); - } - } - } - } - if (isset($mountConfig['user'])) { - foreach ($mountConfig['user'] as $mountUser => $mounts) { - if ($mountUser === 'all' or strtolower($mountUser) === strtolower($user)) { - foreach ($mounts as $mountPoint => $options) { - $mountPoint = self::setUserVars($user, $mountPoint); - foreach ($options as &$option) { - $option = self::setUserVars($user, $option); - } - self::mount($options['class'], $options['options'], $mountPoint); - } - } - } - } - } - // Load personal mount points - if (is_file($root . '/mount.php') or is_file($root . '/mount.json')) { - if (is_file($root . '/mount.json')) { - $mountConfig = json_decode(file_get_contents($root . '/mount.json'), true); - } elseif (is_file($root . '/mount.php')) { - $mountConfig = $parser->parsePHP(file_get_contents($root . '/mount.php')); - } - if (isset($mountConfig['user'][$user])) { - foreach ($mountConfig['user'][$user] as $mountPoint => $options) { - self::mount($options['class'], $options['options'], $mountPoint); - } - } - } // Chance to mount for other storages \OC_Hook::emit('OC_Filesystem', 'post_initMountPoints', array('user' => $user, 'user_dir' => $root)); } - /** - * fill in the correct values for $user - * - * @param string $user - * @param string $input - * @return string - */ - private static function setUserVars($user, $input) { - return str_replace('$user', $user, $input); - } - /** * get the default filesystem view * From 214357ca68ebd80cc59cd1ee34a5a292feaebbe0 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 19 Mar 2014 13:53:59 +0100 Subject: [PATCH 216/333] Improve sorting performance of large lists of files --- apps/files/ajax/rawlist.php | 5 ++--- apps/files/lib/helper.php | 15 +++++++++------ apps/files_trashbin/lib/helper.php | 8 ++++++-- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/apps/files/ajax/rawlist.php b/apps/files/ajax/rawlist.php index 89c21a172f..6433ddefd6 100644 --- a/apps/files/ajax/rawlist.php +++ b/apps/files/ajax/rawlist.php @@ -33,6 +33,8 @@ if (is_array($mimetypes) && count($mimetypes)) { } else { $files = array_merge($files, \OC\Files\Filesystem::getDirectoryContent($dir)); } +// Sort by name +usort($files, array('\OCA\Files\Helper', 'fileCmp')); $result = array(); foreach ($files as $file) { @@ -51,7 +53,4 @@ foreach ($files as $file) { $result[] = $fileData; } -// Sort by name -usort($result, array('\OCA\Files\Helper', 'fileCmp')); - OC_JSON::success(array('data' => $result)); diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index b9e41a352b..c41e2d1558 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -51,17 +51,20 @@ class Helper /** * Comparator function to sort files alphabetically and have * the directories appear first - * @param array $a file - * @param array $b file - * @return -1 if $a must come before $b, 1 otherwise + * + * @param \OCP\Files\FileInfo $a file + * @param \OCP\Files\FileInfo $b file + * @return int -1 if $a must come before $b, 1 otherwise */ public static function fileCmp($a, $b) { - if ($a['type'] === 'dir' and $b['type'] !== 'dir') { + $aType = $a->getType(); + $bType = $b->getType(); + if ($aType === 'dir' and $bType !== 'dir') { return -1; - } elseif ($a['type'] !== 'dir' and $b['type'] === 'dir') { + } elseif ($aType !== 'dir' and $bType === 'dir') { return 1; } else { - return strnatcasecmp($a['name'], $b['name']); + return strnatcasecmp($a->getName(), $b->getName()); } } diff --git a/apps/files_trashbin/lib/helper.php b/apps/files_trashbin/lib/helper.php index fe0d1d30a7..9c24332a96 100644 --- a/apps/files_trashbin/lib/helper.php +++ b/apps/files_trashbin/lib/helper.php @@ -2,13 +2,15 @@ namespace OCA\Files_Trashbin; +use OC\Files\FileInfo; + class Helper { /** * Retrieves the contents of a trash bin directory. * @param string $dir path to the directory inside the trashbin * or empty to retrieve the root of the trashbin - * @return array of files + * @return \OCP\Files\FileInfo[] */ public static function getTrashFiles($dir){ $result = array(); @@ -52,6 +54,8 @@ class Helper $files = array(); $id = 0; + list($storage, $internalPath) = $view->resolvePath($dir); + $absoluteDir = $view->getAbsolutePath($dir); foreach ($result as $r) { $i = array(); $i['id'] = $id++; @@ -77,7 +81,7 @@ class Helper $i['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($r['mime']); } $i['icon'] = \OCA\Files\Helper::determineIcon($i); - $files[] = $i; + $files[] = new FileInfo($absoluteDir . '/' . $i['name'], $storage, $internalPath . '/' . $i['name'], $i); } usort($files, array('\OCA\Files\Helper', 'fileCmp')); From 8e0a5ed5df4dbea5bacb5b03640cb989d97a9629 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 19 Mar 2014 14:23:36 +0100 Subject: [PATCH 217/333] Added tests to check mount point list for a target user --- apps/files_external/lib/config.php | 29 ++++-- apps/files_external/tests/mountconfig.php | 110 ++++++++++++++++++++++ 2 files changed, 132 insertions(+), 7 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 28761b4862..6de7c91358 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -167,12 +167,25 @@ class OC_Mount_Config { } /** - * Init mount points hook + * Hook that mounts the given user's visible mount points * @param array $data */ public static function initMountPointsHook($data) { - $user = $data['user']; - $root = $data['user_dir']; + $mountPoints = self::getAbsoluteMountPoints($data['user']); + foreach ($mountPoints as $mountPoints => $options) { + \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); + } + } + + /** + * Returns the mount points for the given user. + * The mount point is relative to the data directory. + * + * @param string $user user + * @return array of mount point string as key, mountpoint config as value + */ + public static function getAbsoluteMountPoints($user) { + $mountPoints = array(); $datadir = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data"); $mount_file = \OC_Config::getValue("mount_file", $datadir . "/mount.json"); @@ -187,7 +200,7 @@ class OC_Mount_Config { if (isset($mountConfig[self::MOUNT_TYPE_GLOBAL])) { foreach ($mountConfig[self::MOUNT_TYPE_GLOBAL] as $mountPoint => $options) { $options['options'] = self::decryptPasswords($options['options']); - \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); + $mountPoints[$mountPoint] = $options; } } if (isset($mountConfig[self::MOUNT_TYPE_GROUP])) { @@ -199,7 +212,7 @@ class OC_Mount_Config { $option = self::setUserVars($user, $option); } $options['options'] = self::decryptPasswords($options['options']); - \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); + $mountPoints[$mountPoint] = $options; } } } @@ -213,7 +226,7 @@ class OC_Mount_Config { $option = self::setUserVars($user, $option); } $options['options'] = self::decryptPasswords($options['options']); - \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); + $mountPoints[$mountPoint] = $options; } } } @@ -224,9 +237,11 @@ class OC_Mount_Config { if (isset($mountConfig[self::MOUNT_TYPE_USER][$user])) { foreach ($mountConfig[self::MOUNT_TYPE_USER][$user] as $mountPoint => $options) { $options['options'] = self::decryptPasswords($options['options']); - \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); + $mountPoints[$mountPoint] = $options; } } + + return $mountPoints; } /** diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index 8c255769fc..cfe04f66ce 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -345,4 +345,114 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $savedMountConfig = $config['ext']['configuration']; $this->assertEquals($mountConfig, $savedMountConfig); } + + public function mountDataProvider() { + return array( + // Tests for visible mount points + // system mount point for all users + array( + false, + OC_Mount_Config::MOUNT_TYPE_USER, + 'all', + 'test', + true, + ), + // system mount point for a specific user + array( + false, + OC_Mount_Config::MOUNT_TYPE_USER, + 'test', + 'test', + true, + ), + // system mount point for a specific group + array( + false, + OC_Mount_Config::MOUNT_TYPE_GROUP, + 'testgroup1', + 'test', + true, + ), + // user mount point + array( + true, + OC_Mount_Config::MOUNT_TYPE_USER, + 'test', + 'test', + true, + ), + + // Tests for non-visible mount points + // system mount point for another user + array( + false, + OC_Mount_Config::MOUNT_TYPE_USER, + 'anotheruser', + 'test', + false, + ), + // system mount point for a specific group + array( + false, + OC_Mount_Config::MOUNT_TYPE_GROUP, + 'anothergroup', + 'test', + false, + ), + // user mount point + array( + true, + OC_Mount_Config::MOUNT_TYPE_USER, + 'test', + 'anotheruser', + false, + ), + ); + } + + /** + * Test mount points used at mount time, making sure + * the configuration is prepared properly. + * + * @dataProvider mountDataProvider + * @param bool $isPersonal true for personal mount point, false for system mount point + * @param string $mountType mount type + * @param string $applicable target user/group or "all" + * @param string $testUser user for which to retrieve the mount points + * @param bool $expectVisible whether to expect the mount point to be visible for $testUser + */ + public function testMount($isPersonal, $mountType, $applicable, $testUser, $expectVisible) { + $mountConfig = array( + 'host' => 'someost', + 'user' => 'someuser', + 'password' => 'somepassword', + 'root' => 'someroot' + ); + + // add mount point as "test" user + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $mountConfig, + $mountType, + $applicable, + $isPersonal + ) + ); + + // check mount points in the perspective of user $testUser + \OC_User::setUserId($testUser); + + $mountPoints = OC_Mount_Config::getAbsoluteMountPoints($testUser); + if ($expectVisible) { + $this->assertEquals(1, count($mountPoints)); + $this->assertTrue(isset($mountPoints['/test/files/ext'])); + $this->assertEquals('\OC\Files\Storage\SMB', $mountPoints['/test/files/ext']['class']); + $this->assertEquals($mountConfig, $mountPoints['/test/files/ext']['options']); + } + else { + $this->assertEquals(0, count($mountPoints)); + } + } } From 57cfff7d51080ead3da4dbc2a96dda95e53681a8 Mon Sep 17 00:00:00 2001 From: jbtbnl Date: Wed, 19 Mar 2014 16:45:10 +0100 Subject: [PATCH 218/333] Fix #7758 --- core/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/styles.css b/core/css/styles.css index 69cf6df07d..bd8111ebc7 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -10,7 +10,7 @@ table { border-collapse:separate; border-spacing:0; white-space:nowrap; } caption, th, td { text-align:left; font-weight:normal; } table, td, th { vertical-align:middle; } a { border:0; color:#000; text-decoration:none;} -a, a *, input, input *, select, .button span, li, label { cursor:pointer; } +a, a *, input, input *, select, .button span, label { cursor:pointer; } ul { list-style:none; } body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Arial,FreeSans,sans-serif; color:#000; } From 9abe6b7f87c312154f5c300ebfe3c6c36602ebff Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Wed, 19 Mar 2014 17:45:20 +0100 Subject: [PATCH 219/333] Add mimetype for MKV videos This will make oC create previews for MKVs. Test file: http://www.auby.no/files/video_tests/h264_720p_hp_5.1_3mbps_vorbis_styled_and_unstyled_subs_suzumiya.mkv To test this just apply this change and upload the test file, if an preview is generated this change is most likely working as expecting. --- lib/private/mimetypes.list.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/mimetypes.list.php b/lib/private/mimetypes.list.php index a216414c9d..91bcf58426 100644 --- a/lib/private/mimetypes.list.php +++ b/lib/private/mimetypes.list.php @@ -77,6 +77,7 @@ return array( 'md' => 'text/markdown', 'mdb' => 'application/msaccess', 'mdwn' => 'text/markdown', + 'mkv' => 'video/x-matroska', 'mobi' => 'application/x-mobipocket-ebook', 'mov' => 'video/quicktime', 'mp3' => 'audio/mpeg', From 5b6c36347b63909f09a2738e96cbc0ae23fd4c61 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 19 Mar 2014 17:55:34 +0100 Subject: [PATCH 220/333] Fixed ext storage unit test for groups Now creating real users and groups for testing external storage mounts --- apps/files_external/tests/mountconfig.php | 76 ++++++++++++++--------- 1 file changed, 46 insertions(+), 30 deletions(-) diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index cfe04f66ce..144aad4f64 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -40,9 +40,22 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { private $oldAllowedBackends; private $allBackends; + const TEST_USER1 = 'user1'; + const TEST_USER2 = 'user2'; + const TEST_GROUP1 = 'group1'; + const TEST_GROUP2 = 'group2'; + public function setUp() { - \OC_User::setUserId('test'); - $this->userHome = \OC_User::getHome('test'); + \OC_User::createUser(self::TEST_USER1, self::TEST_USER1); + \OC_User::createUser(self::TEST_USER2, self::TEST_USER2); + + \OC_Group::createGroup(self::TEST_GROUP1); + \OC_Group::addToGroup(self::TEST_USER1, self::TEST_GROUP1); + \OC_Group::createGroup(self::TEST_GROUP2); + \OC_Group::addToGroup(self::TEST_USER2, self::TEST_GROUP2); + + \OC_User::setUserId(self::TEST_USER1); + $this->userHome = \OC_User::getHome(self::TEST_USER1); mkdir($this->userHome); $this->dataDir = \OC_Config::getValue( @@ -67,9 +80,12 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { public function tearDown() { OC_Mount_Config::$skipTest = false; + \OC_User::deleteUser(self::TEST_USER2); + \OC_User::deleteUser(self::TEST_USER1); + \OC_Group::deleteGroup(self::TEST_GROUP1); + \OC_Group::deleteGroup(self::TEST_GROUP2); + @unlink($this->dataDir . '/mount.json'); - @unlink($this->userHome . '/mount.json'); - rmdir($this->userHome); OCP\Config::setAppValue( 'files_external', @@ -143,7 +159,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { */ public function testAddMountPointSingleUser() { $mountType = OC_Mount_Config::MOUNT_TYPE_USER; - $applicable = 'test'; + $applicable = self::TEST_USER1; $isPersonal = true; $this->assertEquals(true, OC_Mount_Config::addMountPoint('/ext', '\OC\Files\Storage\SFTP', array(), $mountType, $applicable, $isPersonal)); @@ -152,10 +168,10 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $this->assertEquals(1, count($config)); $this->assertTrue(isset($config[$mountType])); $this->assertTrue(isset($config[$mountType][$applicable])); - $this->assertTrue(isset($config[$mountType][$applicable]['/test/files/ext'])); + $this->assertTrue(isset($config[$mountType][$applicable]['/' . self::TEST_USER1 . '/files/ext'])); $this->assertEquals( '\OC\Files\Storage\SFTP', - $config[$mountType][$applicable]['/test/files/ext']['class'] + $config[$mountType][$applicable]['/' . self::TEST_USER1 . '/files/ext']['class'] ); } @@ -164,7 +180,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { */ public function testAddDisallowedBackendMountPointSingleUser() { $mountType = OC_Mount_Config::MOUNT_TYPE_USER; - $applicable = 'test'; + $applicable = self::TEST_USER1; $isPersonal = true; // local @@ -189,7 +205,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { public function testAddMountPointUnexistClass() { $storageClass = 'Unexist_Storage'; $mountType = OC_Mount_Config::MOUNT_TYPE_USER; - $applicable = 'test'; + $applicable = self::TEST_USER1; $isPersonal = false; $this->assertFalse(OC_Mount_Config::addMountPoint('/ext', $storageClass, array(), $mountType, $applicable, $isPersonal)); @@ -236,7 +252,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { */ public function testReadWritePersonalConfig() { $mountType = OC_Mount_Config::MOUNT_TYPE_USER; - $applicable = 'test'; + $applicable = self::TEST_USER1; $isPersonal = true; $mountConfig = array( 'host' => 'smbhost', @@ -272,7 +288,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { */ public function testPasswordObfuscation() { $mountType = OC_Mount_Config::MOUNT_TYPE_USER; - $applicable = 'test'; + $applicable = self::TEST_USER1; $isPersonal = true; $mountConfig = array( 'host' => 'smbhost', @@ -298,7 +314,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // check that password inside the file is NOT in plain text $config = $this->readUserConfig(); - $savedConfig = $config[$mountType][$applicable]['/test/files/ext']['options']; + $savedConfig = $config[$mountType][$applicable]['/' . self::TEST_USER1 . '/files/ext']['options']; // no more clear text password in file $this->assertFalse(isset($savedConfig['password'])); @@ -312,7 +328,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { */ public function testReadLegacyPassword() { $mountType = OC_Mount_Config::MOUNT_TYPE_USER; - $applicable = 'test'; + $applicable = self::TEST_USER1; $isPersonal = true; $mountConfig = array( 'host' => 'smbhost', @@ -336,7 +352,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $config = $this->readUserConfig(); // simulate non-encrypted password situation - $config[$mountType][$applicable]['/test/files/ext']['options']['password'] = 'smbpasswd'; + $config[$mountType][$applicable]['/' . self::TEST_USER1 . '/files/ext']['options']['password'] = 'smbpasswd'; $this->writeUserConfig($config); @@ -354,31 +370,31 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { false, OC_Mount_Config::MOUNT_TYPE_USER, 'all', - 'test', + self::TEST_USER1, true, ), // system mount point for a specific user array( false, OC_Mount_Config::MOUNT_TYPE_USER, - 'test', - 'test', + self::TEST_USER1, + self::TEST_USER1, true, ), // system mount point for a specific group array( false, OC_Mount_Config::MOUNT_TYPE_GROUP, - 'testgroup1', - 'test', + self::TEST_GROUP1, + self::TEST_USER1, true, ), // user mount point array( true, OC_Mount_Config::MOUNT_TYPE_USER, - 'test', - 'test', + self::TEST_USER1, + self::TEST_USER1, true, ), @@ -387,24 +403,24 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { array( false, OC_Mount_Config::MOUNT_TYPE_USER, - 'anotheruser', - 'test', + self::TEST_USER2, + self::TEST_USER1, false, ), // system mount point for a specific group array( false, OC_Mount_Config::MOUNT_TYPE_GROUP, - 'anothergroup', - 'test', + self::TEST_GROUP2, + self::TEST_USER1, false, ), // user mount point array( true, OC_Mount_Config::MOUNT_TYPE_USER, - 'test', - 'anotheruser', + self::TEST_USER1, + self::TEST_USER2, false, ), ); @@ -447,9 +463,9 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $mountPoints = OC_Mount_Config::getAbsoluteMountPoints($testUser); if ($expectVisible) { $this->assertEquals(1, count($mountPoints)); - $this->assertTrue(isset($mountPoints['/test/files/ext'])); - $this->assertEquals('\OC\Files\Storage\SMB', $mountPoints['/test/files/ext']['class']); - $this->assertEquals($mountConfig, $mountPoints['/test/files/ext']['options']); + $this->assertTrue(isset($mountPoints['/' . self::TEST_USER1 . '/files/ext'])); + $this->assertEquals('\OC\Files\Storage\SMB', $mountPoints['/' . self::TEST_USER1 . '/files/ext']['class']); + $this->assertEquals($mountConfig, $mountPoints['/' . self::TEST_USER1 . '/files/ext']['options']); } else { $this->assertEquals(0, count($mountPoints)); From 9116c39a829ef10745acea5f3e9a4d47433ffa47 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 19 Mar 2014 17:56:36 +0100 Subject: [PATCH 221/333] Fixed ext storage password field order issue The old password field is now preserved in the JSON structure to make sure that the order is preserved. This is a quick fix until the UI is fixed to not rely on the PHP array key order. --- apps/files_external/lib/config.php | 5 ++++- apps/files_external/tests/mountconfig.php | 8 ++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 6de7c91358..9b2cb0d0b0 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -50,6 +50,7 @@ class OC_Mount_Config { */ public static function getBackends() { + // FIXME: do not rely on php key order for the options order in the UI $backends['\OC\Files\Storage\Local']=array( 'backend' => 'Local', 'configuration' => array( @@ -649,7 +650,9 @@ class OC_Mount_Config { private static function encryptPasswords($options) { if (isset($options['password'])) { $options['password_encrypted'] = self::encryptPassword($options['password']); - unset($options['password']); + // do not unset the password, we want to keep the keys order + // on load... because that's how the UI currently works + $options['password'] = ''; } return $options; } diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index 144aad4f64..bf43bb31c3 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -245,6 +245,8 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); $savedMountConfig = $config['ext']['configuration']; $this->assertEquals($mountConfig, $savedMountConfig); + // key order needs to be preserved for the UI... + $this->assertEquals(array_keys($mountConfig), array_keys($savedMountConfig)); } /** @@ -281,6 +283,8 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); $savedMountConfig = $config['ext']['configuration']; $this->assertEquals($mountConfig, $savedMountConfig); + // key order needs to be preserved for the UI... + $this->assertEquals(array_keys($mountConfig), array_keys($savedMountConfig)); } /** @@ -316,8 +320,8 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $config = $this->readUserConfig(); $savedConfig = $config[$mountType][$applicable]['/' . self::TEST_USER1 . '/files/ext']['options']; - // no more clear text password in file - $this->assertFalse(isset($savedConfig['password'])); + // no more clear text password in file (kept because of key order) + $this->assertEquals('', $savedConfig['password']); // encrypted password is present $this->assertNotEquals($mountConfig['password'], $savedConfig['password_encrypted']); From 66bc0f0848846bce3680b79da4209d42620f1b8d Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 19 Mar 2014 19:07:11 +0100 Subject: [PATCH 222/333] Still return quota value when free space is unknown Fixed the quota storage wrapper to correctly return the quota value when the free space is not known (which usually happens when the disk_free_space function is disabled) --- lib/private/files/storage/wrapper/quota.php | 9 ++++++++- tests/lib/files/storage/wrapper/quota.php | 18 ++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/lib/private/files/storage/wrapper/quota.php b/lib/private/files/storage/wrapper/quota.php index 32ceba8b19..a878b2c5cf 100644 --- a/lib/private/files/storage/wrapper/quota.php +++ b/lib/private/files/storage/wrapper/quota.php @@ -69,7 +69,14 @@ class Quota extends Wrapper { return \OC\Files\SPACE_NOT_COMPUTED; } else { $free = $this->storage->free_space($path); - return min($free, (max($this->quota - $used, 0))); + $quotaFree = max($this->quota - $used, 0); + // if free space is known + if ($free >= 0) { + $free = min($free, $quotaFree); + } else { + $free = $quotaFree; + } + return $free; } } } diff --git a/tests/lib/files/storage/wrapper/quota.php b/tests/lib/files/storage/wrapper/quota.php index bd2c69a739..777529fd85 100644 --- a/tests/lib/files/storage/wrapper/quota.php +++ b/tests/lib/files/storage/wrapper/quota.php @@ -61,6 +61,24 @@ class Quota extends \Test\Files\Storage\Storage { $this->assertEquals(6, $instance->free_space('')); } + public function testFreeSpaceWithUnknownDiskSpace() { + $storage = $this->getMock( + '\OC\Files\Storage\Local', + array('free_space'), + array(array('datadir' => $this->tmpDir)) + ); + $storage->expects($this->any()) + ->method('free_space') + ->will($this->returnValue(-2)); + $storage->getScanner()->scan(''); + + $instance = new \OC\Files\Storage\Wrapper\Quota(array('storage' => $storage, 'quota' => 9)); + $instance->getCache()->put( + '', array('size' => 3, 'unencrypted_size' => 0) + ); + $this->assertEquals(6, $instance->free_space('')); + } + public function testFreeSpaceWithUsedSpaceAndEncryption() { $instance = $this->getLimitedStorage(9); $instance->getCache()->put( From ca595611f5d9c81a7c6437f4e013bb0ed01a0376 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 19 Mar 2014 20:30:24 +0000 Subject: [PATCH 223/333] Add FreeIPA UUID compatibility, fixes #7796 Ability to use ipauniqueid for the UUID of a user --- apps/user_ldap/lib/access.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index b7e4023dd7..70270a2523 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -1064,8 +1064,8 @@ class Access extends LDAPUtility { return true; } - //for now, supported attributes are entryUUID, nsuniqueid, objectGUID - $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid'); + //for now, supported attributes are entryUUID, nsuniqueid, objectGUID, ipaUniqueID + $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid', 'ipauniqueid', 'ipauniqueid'); foreach($testAttributes as $attribute) { $value = $this->readAttribute($dn, $attribute); From fa28c089fa3ffb72e97ca0f89cbfade3d0a8a8a5 Mon Sep 17 00:00:00 2001 From: Oskar Hollmann Date: Wed, 19 Mar 2014 22:09:09 +0100 Subject: [PATCH 224/333] Fix: 'Upload button tooltip doesn't disappear' Fixes issue #7461. Tipsy tooltip must be hidden when the upload starts. Otherwise it covers the progress bar and stays in DOM. --- apps/files/js/file-upload.js | 1 + 1 file changed, 1 insertion(+) mode change 100644 => 100755 apps/files/js/file-upload.js diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js old mode 100644 new mode 100755 index ea4061c9b0..c668bbf397 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -320,6 +320,7 @@ OC.Upload = { */ start: function(e) { OC.Upload.log('start', e, null); + $('#upload').tipsy('hide'); // otherwise "Upload max." covers progress bar }, submit: function(e, data) { OC.Upload.rememberUpload(data); From 90839b784f748b18a2a5fae4cc3f80bd1df7b355 Mon Sep 17 00:00:00 2001 From: Oskar Hollmann Date: Wed, 19 Mar 2014 23:05:03 +0100 Subject: [PATCH 225/333] Comment moved to prevent 'Line is too long' warning. --- apps/files/js/file-upload.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index c668bbf397..371c83e742 100755 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -320,7 +320,8 @@ OC.Upload = { */ start: function(e) { OC.Upload.log('start', e, null); - $('#upload').tipsy('hide'); // otherwise "Upload max." covers progress bar + //hide the tooltip otherwise it covers the progress bar + $('#upload').tipsy('hide'); }, submit: function(e, data) { OC.Upload.rememberUpload(data); From 3aa8647634d02ee97c8e31119049af506b9918dd Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 20 Mar 2014 01:56:42 -0400 Subject: [PATCH 226/333] [tx-robot] updated from transifex --- apps/files/l10n/ar.php | 3 +- apps/files/l10n/az.php | 8 +- apps/files/l10n/ca.php | 3 +- apps/files/l10n/cs_CZ.php | 3 +- apps/files/l10n/cy_GB.php | 3 +- apps/files/l10n/da.php | 8 +- apps/files/l10n/de.php | 3 +- apps/files/l10n/de_CH.php | 3 +- apps/files/l10n/de_DE.php | 3 +- apps/files/l10n/el.php | 3 +- apps/files/l10n/en_GB.php | 3 +- apps/files/l10n/eo.php | 3 +- apps/files/l10n/es.php | 3 +- apps/files/l10n/es_AR.php | 3 +- apps/files/l10n/es_MX.php | 3 +- apps/files/l10n/et_EE.php | 3 +- apps/files/l10n/eu.php | 3 +- apps/files/l10n/fa.php | 3 +- apps/files/l10n/fi_FI.php | 3 +- apps/files/l10n/fr.php | 3 +- apps/files/l10n/gl.php | 3 +- apps/files/l10n/hu_HU.php | 3 +- apps/files/l10n/id.php | 3 +- apps/files/l10n/it.php | 3 +- apps/files/l10n/ja.php | 3 +- apps/files/l10n/ka_GE.php | 3 +- apps/files/l10n/ko.php | 3 +- apps/files/l10n/lt_LT.php | 3 +- apps/files/l10n/lv.php | 3 +- apps/files/l10n/mk.php | 3 +- apps/files/l10n/nb_NO.php | 3 +- apps/files/l10n/nl.php | 3 +- apps/files/l10n/nn_NO.php | 3 +- apps/files/l10n/pl.php | 3 +- apps/files/l10n/pt_BR.php | 3 +- apps/files/l10n/pt_PT.php | 3 +- apps/files/l10n/ro.php | 3 +- apps/files/l10n/ru.php | 3 +- apps/files/l10n/sk_SK.php | 3 +- apps/files/l10n/sl.php | 3 +- apps/files/l10n/sq.php | 3 +- apps/files/l10n/sr.php | 3 +- apps/files/l10n/sv.php | 3 +- apps/files/l10n/th_TH.php | 3 +- apps/files/l10n/tr.php | 3 +- apps/files/l10n/ug.php | 3 +- apps/files/l10n/uk.php | 3 +- apps/files/l10n/vi.php | 3 +- apps/files/l10n/zh_CN.php | 3 +- apps/files/l10n/zh_TW.php | 3 +- apps/files_external/l10n/ar.php | 1 + apps/files_external/l10n/da.php | 2 + apps/user_ldap/l10n/ar.php | 6 +- core/l10n/ar.php | 6 +- core/l10n/az.php | 12 +-- core/l10n/ca.php | 3 - core/l10n/cs_CZ.php | 3 - core/l10n/da.php | 3 - core/l10n/de.php | 3 - core/l10n/de_CH.php | 2 - core/l10n/de_DE.php | 3 - core/l10n/el.php | 3 - core/l10n/en_GB.php | 3 - core/l10n/eo.php | 3 - core/l10n/es.php | 3 - core/l10n/es_AR.php | 3 - core/l10n/es_MX.php | 3 - core/l10n/et_EE.php | 3 - core/l10n/eu.php | 3 - core/l10n/fi_FI.php | 3 - core/l10n/fr.php | 3 - core/l10n/gl.php | 3 - core/l10n/hu_HU.php | 3 - core/l10n/id.php | 3 - core/l10n/it.php | 3 - core/l10n/ja.php | 3 - core/l10n/ko.php | 3 - core/l10n/lb.php | 3 - core/l10n/lt_LT.php | 3 - core/l10n/mk.php | 1 - core/l10n/nb_NO.php | 3 - core/l10n/nl.php | 3 - core/l10n/nn_NO.php | 3 - core/l10n/pl.php | 3 - core/l10n/pt_BR.php | 3 - core/l10n/pt_PT.php | 3 - core/l10n/ru.php | 3 - core/l10n/sk_SK.php | 3 - core/l10n/sl.php | 3 - core/l10n/sq.php | 3 - core/l10n/sv.php | 3 - core/l10n/tr.php | 3 - core/l10n/uk.php | 3 - core/l10n/vi.php | 3 - core/l10n/zh_CN.php | 3 - core/l10n/zh_TW.php | 3 - l10n/ach/core.po | 57 +++++------- l10n/ach/files.po | 8 +- l10n/ady/core.po | 57 +++++------- l10n/ady/files.po | 8 +- l10n/af/core.po | 57 +++++------- l10n/af/files.po | 8 +- l10n/af_ZA/core.po | 57 +++++------- l10n/af_ZA/files.po | 8 +- l10n/ak/core.po | 57 +++++------- l10n/ak/files.po | 8 +- l10n/ar/core.po | 46 ++++------ l10n/ar/files.po | 8 +- l10n/ar/files_encryption.po | 4 +- l10n/ar/files_external.po | 12 +-- l10n/ar/files_trashbin.po | 4 +- l10n/ar/settings.po | 35 ++++---- l10n/ar/user_ldap.po | 15 ++-- l10n/az/core.po | 64 +++++++------ l10n/az/files.po | 13 ++- l10n/be/core.po | 57 +++++------- l10n/be/files.po | 8 +- l10n/bg_BG/core.po | 35 +++----- l10n/bg_BG/files.po | 8 +- l10n/bn_BD/core.po | 35 +++----- l10n/bn_BD/files.po | 8 +- l10n/bs/core.po | 35 +++----- l10n/bs/files.po | 8 +- l10n/ca/core.po | 37 +++----- l10n/ca/files.po | 10 +-- l10n/cs_CZ/core.po | 37 +++----- l10n/cs_CZ/files.po | 10 +-- l10n/cy_GB/core.po | 35 +++----- l10n/cy_GB/files.po | 8 +- l10n/da/core.po | 35 +++----- l10n/da/files.po | 21 ++--- l10n/da/files_external.po | 17 ++-- l10n/da/settings.po | 134 ++++++++++++++-------------- l10n/de/core.po | 37 +++----- l10n/de/files.po | 8 +- l10n/de_AT/core.po | 35 +++----- l10n/de_AT/files.po | 8 +- l10n/de_CH/core.po | 37 +++----- l10n/de_CH/files.po | 10 +-- l10n/de_DE/core.po | 37 +++----- l10n/de_DE/files.po | 10 +-- l10n/el/core.po | 37 +++----- l10n/el/files.po | 10 +-- l10n/en@pirate/core.po | 57 +++++------- l10n/en@pirate/files.po | 8 +- l10n/en_GB/core.po | 37 +++----- l10n/en_GB/files.po | 10 +-- l10n/eo/core.po | 35 +++----- l10n/eo/files.po | 8 +- l10n/es/core.po | 37 +++----- l10n/es/files.po | 10 +-- l10n/es_AR/core.po | 35 +++----- l10n/es_AR/files.po | 8 +- l10n/es_CL/core.po | 35 +++----- l10n/es_CL/files.po | 8 +- l10n/es_MX/core.po | 35 +++----- l10n/es_MX/files.po | 8 +- l10n/et_EE/core.po | 35 +++----- l10n/et_EE/files.po | 8 +- l10n/eu/core.po | 35 +++----- l10n/eu/files.po | 8 +- l10n/eu_ES/core.po | 35 +++----- l10n/eu_ES/files.po | 8 +- l10n/fa/core.po | 35 +++----- l10n/fa/files.po | 8 +- l10n/fi_FI/core.po | 37 +++----- l10n/fi_FI/files.po | 10 +-- l10n/fr/core.po | 37 +++----- l10n/fr/files.po | 10 +-- l10n/fr_CA/core.po | 57 +++++------- l10n/fr_CA/files.po | 8 +- l10n/gl/core.po | 37 +++----- l10n/gl/files.po | 10 +-- l10n/he/core.po | 35 +++----- l10n/he/files.po | 8 +- l10n/hi/core.po | 35 +++----- l10n/hi/files.po | 8 +- l10n/hr/core.po | 35 +++----- l10n/hr/files.po | 8 +- l10n/hu_HU/core.po | 35 +++----- l10n/hu_HU/files.po | 8 +- l10n/hy/core.po | 57 +++++------- l10n/hy/files.po | 8 +- l10n/ia/core.po | 35 +++----- l10n/ia/files.po | 8 +- l10n/id/core.po | 35 +++----- l10n/id/files.po | 8 +- l10n/is/core.po | 35 +++----- l10n/is/files.po | 8 +- l10n/it/core.po | 37 +++----- l10n/it/files.po | 10 +-- l10n/ja/core.po | 37 +++----- l10n/ja/files.po | 10 +-- l10n/ka_GE/core.po | 35 +++----- l10n/ka_GE/files.po | 8 +- l10n/km/core.po | 35 +++----- l10n/km/files.po | 8 +- l10n/kn/core.po | 57 +++++------- l10n/kn/files.po | 8 +- l10n/ko/core.po | 37 +++----- l10n/ko/files.po | 8 +- l10n/ku_IQ/core.po | 35 +++----- l10n/ku_IQ/files.po | 8 +- l10n/lb/core.po | 35 +++----- l10n/lb/files.po | 8 +- l10n/lt_LT/core.po | 35 +++----- l10n/lt_LT/files.po | 8 +- l10n/lv/core.po | 35 +++----- l10n/lv/files.po | 8 +- l10n/mk/core.po | 35 +++----- l10n/mk/files.po | 8 +- l10n/ml/core.po | 57 +++++------- l10n/ml/files.po | 8 +- l10n/ml_IN/core.po | 57 +++++------- l10n/ml_IN/files.po | 8 +- l10n/mn/core.po | 57 +++++------- l10n/mn/files.po | 8 +- l10n/ms_MY/core.po | 35 +++----- l10n/ms_MY/files.po | 8 +- l10n/my_MM/core.po | 35 +++----- l10n/my_MM/files.po | 8 +- l10n/nb_NO/core.po | 35 +++----- l10n/nb_NO/files.po | 8 +- l10n/nds/core.po | 57 +++++------- l10n/nds/files.po | 8 +- l10n/ne/core.po | 57 +++++------- l10n/ne/files.po | 8 +- l10n/nl/core.po | 37 +++----- l10n/nl/files.po | 10 +-- l10n/nn_NO/core.po | 35 +++----- l10n/nn_NO/files.po | 8 +- l10n/nqo/core.po | 57 +++++------- l10n/nqo/files.po | 8 +- l10n/oc/core.po | 35 +++----- l10n/oc/files.po | 8 +- l10n/pa/core.po | 35 +++----- l10n/pa/files.po | 8 +- l10n/pl/core.po | 37 +++----- l10n/pl/files.po | 10 +-- l10n/pt_BR/core.po | 37 +++----- l10n/pt_BR/files.po | 10 +-- l10n/pt_PT/core.po | 35 +++----- l10n/pt_PT/files.po | 8 +- l10n/ro/core.po | 35 +++----- l10n/ro/files.po | 10 +-- l10n/ru/core.po | 35 +++----- l10n/ru/files.po | 8 +- l10n/si_LK/core.po | 35 +++----- l10n/si_LK/files.po | 8 +- l10n/sk/core.po | 35 +++----- l10n/sk/files.po | 8 +- l10n/sk_SK/core.po | 35 +++----- l10n/sk_SK/files.po | 8 +- l10n/sl/core.po | 37 +++----- l10n/sl/files.po | 10 +-- l10n/sq/core.po | 35 +++----- l10n/sq/files.po | 8 +- l10n/sr/core.po | 35 +++----- l10n/sr/files.po | 8 +- l10n/sr@latin/core.po | 37 +++----- l10n/sr@latin/files.po | 8 +- l10n/su/core.po | 57 +++++------- l10n/su/files.po | 8 +- l10n/sv/core.po | 35 +++----- l10n/sv/files.po | 8 +- l10n/sw_KE/core.po | 57 +++++------- l10n/sw_KE/files.po | 8 +- l10n/ta_LK/core.po | 35 +++----- l10n/ta_LK/files.po | 8 +- l10n/te/core.po | 35 +++----- l10n/te/files.po | 8 +- l10n/templates/core.pot | 33 +++---- l10n/templates/files.pot | 6 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 8 +- 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/core.po | 35 +++----- l10n/th_TH/files.po | 8 +- l10n/tr/core.po | 37 +++----- l10n/tr/files.po | 10 +-- l10n/tzm/core.po | 57 +++++------- l10n/tzm/files.po | 8 +- l10n/ug/core.po | 35 +++----- l10n/ug/files.po | 8 +- l10n/uk/core.po | 35 +++----- l10n/uk/files.po | 8 +- l10n/ur/core.po | 57 +++++------- l10n/ur/files.po | 8 +- l10n/ur_PK/core.po | 35 +++----- l10n/ur_PK/files.po | 8 +- l10n/uz/core.po | 57 +++++------- l10n/uz/files.po | 8 +- l10n/vi/core.po | 35 +++----- l10n/vi/files.po | 8 +- l10n/zh_CN/core.po | 35 +++----- l10n/zh_CN/files.po | 8 +- l10n/zh_HK/core.po | 35 +++----- l10n/zh_HK/files.po | 8 +- l10n/zh_TW/core.po | 35 +++----- l10n/zh_TW/files.po | 8 +- settings/l10n/ar.php | 14 +++ settings/l10n/da.php | 1 + 309 files changed, 1973 insertions(+), 3359 deletions(-) diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 10f2b077fe..147d77d4cb 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Upload too large" => "حجم الترفيع أعلى من المسموح", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم.", "Files are being scanned, please wait." => "يرجى الانتظار , جاري فحص الملفات .", -"Current scanning" => "الفحص الحالي", -"Upgrading filesystem cache..." => "تحديث ذاكرة التخزين المؤقت(الكاش) الخاصة بملفات النظام ..." +"Current scanning" => "الفحص الحالي" ); $PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files/l10n/az.php b/apps/files/l10n/az.php index 70ab6572ba..0157af093e 100644 --- a/apps/files/l10n/az.php +++ b/apps/files/l10n/az.php @@ -1,7 +1,7 @@ array(""), -"_%n file_::_%n files_" => array(""), -"_Uploading %n file_::_Uploading %n files_" => array("") +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") ); -$PLURAL_FORMS = "nplurals=1; plural=0;"; +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index e1c7decdbb..a4418b1be5 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "La pujada és massa gran", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor", "Files are being scanned, please wait." => "S'estan escanejant els fitxers, espereu", -"Current scanning" => "Actualment escanejant", -"Upgrading filesystem cache..." => "Actualitzant la memòria de cau del sistema de fitxers..." +"Current scanning" => "Actualment escanejant" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 3fac6f15c0..5bcf1087b9 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Odesílaný soubor je příliš velký", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", -"Current scanning" => "Aktuální prohledávání", -"Upgrading filesystem cache..." => "Aktualizuji mezipaměť souborového systému..." +"Current scanning" => "Aktuální prohledávání" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index cf3187e4d1..df93ca507b 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "Upload too large" => "Maint llwytho i fyny'n rhy fawr", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn.", "Files are being scanned, please wait." => "Arhoswch, mae ffeiliau'n cael eu sganio.", -"Current scanning" => "Sganio cyfredol", -"Upgrading filesystem cache..." => "Uwchraddio storfa system ffeiliau..." +"Current scanning" => "Sganio cyfredol" ); $PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index ae2a15ed6b..7069849b43 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -3,7 +3,9 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kunne ikke flytte %s - der findes allerede en fil med dette navn", "Could not move %s" => "Kunne ikke flytte %s", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.", +"\"%s\" is an invalid file name." => "\"%s\" er et ugyldigt filnavn.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", +"The target folder has been moved or deleted." => "Mappen er blevet slettet eller fjernet.", "The name %s is already used in the folder %s. Please choose a different name." => "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn.", "Not a valid source" => "Ikke en gyldig kilde", "Server is not allowed to open URLs, please check the server configuration" => "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger", @@ -27,6 +29,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Ugyldig mappe.", "Files" => "Filer", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 bytes.", +"Total file size {size1} exceeds upload limit {size2}" => "Den totale filstørrelse {size1} er større end uploadgrænsen {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage", "Upload cancelled." => "Upload afbrudt.", "Could not get result from server." => "Kunne ikke hente resultat fra server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", @@ -48,6 +52,7 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("%n fil","%n filer"), "{dirs} and {files}" => "{dirs} og {files}", "_Uploading %n file_::_Uploading %n files_" => array("Uploader %n fil","Uploader %n filer"), +"\"{name}\" is an invalid file name." => "'{name}' er et ugyldigt filnavn.", "Your storage is full, files can not be updated or synced anymore!" => "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!", "Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)", "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen.", @@ -85,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Upload er for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server.", "Files are being scanned, please wait." => "Filerne bliver indlæst, vent venligst.", -"Current scanning" => "Indlæser", -"Upgrading filesystem cache..." => "Opgraderer filsystems cachen..." +"Current scanning" => "Indlæser" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 91e5cfa4c9..376cbaa4e2 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", -"Current scanning" => "Scanne", -"Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." +"Current scanning" => "Scanne" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/de_CH.php b/apps/files/l10n/de_CH.php index 9b69a3f728..8b70d7f0f0 100644 --- a/apps/files/l10n/de_CH.php +++ b/apps/files/l10n/de_CH.php @@ -60,7 +60,6 @@ $TRANSLATIONS = array( "Upload too large" => "Der Upload ist zu gross", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", -"Current scanning" => "Scanne", -"Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." +"Current scanning" => "Scanne" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 9bb9fe1754..0df0f46dc2 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", -"Current scanning" => "Scanne", -"Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." +"Current scanning" => "Scanne" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 4e207f80ee..9144cf3ea1 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -87,7 +87,6 @@ $TRANSLATIONS = array( "Upload too large" => "Πολύ μεγάλο αρχείο προς αποστολή", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή.", "Files are being scanned, please wait." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.", -"Current scanning" => "Τρέχουσα ανίχνευση", -"Upgrading filesystem cache..." => "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." +"Current scanning" => "Τρέχουσα ανίχνευση" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index 22876ae4f2..3fb2cb62e6 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Upload too large", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "The files you are trying to upload exceed the maximum size for file uploads on this server.", "Files are being scanned, please wait." => "Files are being scanned, please wait.", -"Current scanning" => "Current scanning", -"Upgrading filesystem cache..." => "Upgrading filesystem cache..." +"Current scanning" => "Current scanning" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index b447b95b4e..b92fef5000 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -75,7 +75,6 @@ $TRANSLATIONS = array( "Upload too large" => "Alŝuto tro larĝa", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", "Files are being scanned, please wait." => "Dosieroj estas skanataj, bonvolu atendi.", -"Current scanning" => "Nuna skano", -"Upgrading filesystem cache..." => "Ĝisdatiĝas dosiersistema kaŝmemoro..." +"Current scanning" => "Nuna skano" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 145c20eba4..6083ab2a5d 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Subida demasido grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", -"Current scanning" => "Escaneo actual", -"Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos..." +"Current scanning" => "Escaneo actual" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 1bb2d6ef51..105321276c 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "El tamaño del archivo que querés subir es demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor esperá.", -"Current scanning" => "Escaneo actual", -"Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos" +"Current scanning" => "Escaneo actual" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index 27c75e1157..f8a72f95d8 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "Subida demasido grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", -"Current scanning" => "Escaneo actual", -"Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos..." +"Current scanning" => "Escaneo actual" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 2fcfe10f03..f1fdc82673 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "Üleslaadimine on liiga suur", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", "Files are being scanned, please wait." => "Faile skannitakse, palun oota.", -"Current scanning" => "Praegune skannimine", -"Upgrading filesystem cache..." => "Failisüsteemi puhvri uuendamine..." +"Current scanning" => "Praegune skannimine" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index bf4b9d56cf..be601eecfb 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "Igoera handiegia da", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.", "Files are being scanned, please wait." => "Fitxategiak eskaneatzen ari da, itxoin mezedez.", -"Current scanning" => "Orain eskaneatzen ari da", -"Upgrading filesystem cache..." => "Fitxategi sistemaren katxea eguneratzen..." +"Current scanning" => "Orain eskaneatzen ari da" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 71316dc8fc..e1142aba16 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Upload too large" => "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", "Files are being scanned, please wait." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید", -"Current scanning" => "بازرسی کنونی", -"Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..." +"Current scanning" => "بازرسی کنونی" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 6acea906fc..6b94d8b4fa 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "Lähetettävä tiedosto on liian suuri", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", "Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.", -"Current scanning" => "Tämänhetkinen tutkinta", -"Upgrading filesystem cache..." => "Päivitetään tiedostojärjestelmän välimuistia..." +"Current scanning" => "Tämänhetkinen tutkinta" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index ae748d19cc..ad768f03de 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Téléversement trop volumineux", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", "Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.", -"Current scanning" => "Analyse en cours", -"Upgrading filesystem cache..." => "Mise à niveau du cache du système de fichier" +"Current scanning" => "Analyse en cours" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 39bc427ea9..7ea8181dc7 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Envío demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor", "Files are being scanned, please wait." => "Estanse analizando os ficheiros. Agarde.", -"Current scanning" => "Análise actual", -"Upgrading filesystem cache..." => "Anovando a caché do sistema de ficheiros..." +"Current scanning" => "Análise actual" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 115635daa4..6f5ba9b472 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "A feltöltés túl nagy", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", "Files are being scanned, please wait." => "A fájllista ellenőrzése zajlik, kis türelmet!", -"Current scanning" => "Ellenőrzés alatt", -"Upgrading filesystem cache..." => "A fájlrendszer gyorsítótárának frissítése zajlik..." +"Current scanning" => "Ellenőrzés alatt" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index d782218d18..45bc05c918 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -83,7 +83,6 @@ $TRANSLATIONS = array( "Upload too large" => "Yang diunggah terlalu besar", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini.", "Files are being scanned, please wait." => "Berkas sedang dipindai, silakan tunggu.", -"Current scanning" => "Yang sedang dipindai", -"Upgrading filesystem cache..." => "Meningkatkan tembolok sistem berkas..." +"Current scanning" => "Yang sedang dipindai" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index a0046b0e1c..e1a34e646f 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Caricamento troppo grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "I file che stai provando a caricare superano la dimensione massima consentita su questo server.", "Files are being scanned, please wait." => "Scansione dei file in corso, attendi", -"Current scanning" => "Scansione corrente", -"Upgrading filesystem cache..." => "Aggiornamento della cache del filesystem in corso..." +"Current scanning" => "Scansione corrente" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ja.php b/apps/files/l10n/ja.php index 8a4b3ca877..eb6cb0efc5 100644 --- a/apps/files/l10n/ja.php +++ b/apps/files/l10n/ja.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "アップロードには大きすぎます。", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバーで規定された最大サイズを超えています。", "Files are being scanned, please wait." => "ファイルをスキャンしています、しばらくお待ちください。", -"Current scanning" => "スキャン中", -"Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." +"Current scanning" => "スキャン中" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index 9e89c0b71b..230c2e4ede 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -56,7 +56,6 @@ $TRANSLATIONS = array( "Upload too large" => "ასატვირთი ფაილი ძალიან დიდია", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ფაილის ზომა რომლის ატვირთვასაც თქვენ აპირებთ, აჭარბებს სერვერზე დაშვებულ მაქსიმუმს.", "Files are being scanned, please wait." => "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ.", -"Current scanning" => "მიმდინარე სკანირება", -"Upgrading filesystem cache..." => "ფაილური სისტემის ქეშის განახლება...." +"Current scanning" => "მიმდინარე სკანირება" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index d00d09a148..92a2578074 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "업로드한 파일이 너무 큼", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다.", "Files are being scanned, please wait." => "파일을 검색하고 있습니다. 기다려 주십시오.", -"Current scanning" => "현재 검색", -"Upgrading filesystem cache..." => "파일 시스템 캐시 업그레이드 중..." +"Current scanning" => "현재 검색" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 2a76b7cb57..14c4862117 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "Įkėlimui failas per didelis", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje", "Files are being scanned, please wait." => "Skenuojami failai, prašome palaukti.", -"Current scanning" => "Šiuo metu skenuojama", -"Upgrading filesystem cache..." => "Atnaujinamas sistemos kešavimas..." +"Current scanning" => "Šiuo metu skenuojama" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 179ccb994b..0d2ebf281a 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -60,7 +60,6 @@ $TRANSLATIONS = array( "Upload too large" => "Datne ir par lielu, lai to augšupielādētu", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu", "Files are being scanned, please wait." => "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet.", -"Current scanning" => "Šobrīd tiek caurskatīts", -"Upgrading filesystem cache..." => "Uzlabo datņu sistēmas kešatmiņu..." +"Current scanning" => "Šobrīd tiek caurskatīts" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index c618b396f5..bc9ee15823 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -72,7 +72,6 @@ $TRANSLATIONS = array( "Upload too large" => "Фајлот кој се вчитува е преголем", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер.", "Files are being scanned, please wait." => "Се скенираат датотеки, ве молам почекајте.", -"Current scanning" => "Моментално скенирам", -"Upgrading filesystem cache..." => "Го надградувам кешот на фјал системот..." +"Current scanning" => "Моментално скенирам" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 325ee0eb26..b90bee38f9 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "Filen er for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.", "Files are being scanned, please wait." => "Skanner filer, vennligst vent.", -"Current scanning" => "Pågående skanning", -"Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..." +"Current scanning" => "Pågående skanning" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 9a25d383d4..c617f0bfdd 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Upload is te groot", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.", "Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.", -"Current scanning" => "Er wordt gescand", -"Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..." +"Current scanning" => "Er wordt gescand" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 4072ea56be..4f74167d9a 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -65,7 +65,6 @@ $TRANSLATIONS = array( "Upload too large" => "For stor opplasting", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren.", "Files are being scanned, please wait." => "Skannar filer, ver venleg og vent.", -"Current scanning" => "Køyrande skanning", -"Upgrading filesystem cache..." => "Oppgraderer mellomlageret av filsystemet …" +"Current scanning" => "Køyrande skanning" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index e4cbba3d07..3e93dc881e 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Ładowany plik jest za duży", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość.", "Files are being scanned, please wait." => "Skanowanie plików, proszę czekać.", -"Current scanning" => "Aktualnie skanowane", -"Upgrading filesystem cache..." => "Uaktualnianie plików pamięci podręcznej..." +"Current scanning" => "Aktualnie skanowane" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 5f792a3b8c..d0c27431da 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", "Files are being scanned, please wait." => "Arquivos sendo escaneados, por favor aguarde.", -"Current scanning" => "Scanning atual", -"Upgrading filesystem cache..." => "Atualizando cache do sistema de arquivos..." +"Current scanning" => "Scanning atual" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 5b4bc6993c..3b3c2f842b 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.", "Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.", -"Current scanning" => "Análise actual", -"Upgrading filesystem cache..." => "Atualizar cache do sistema de ficheiros..." +"Current scanning" => "Análise actual" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 230e603083..7686025e35 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -72,7 +72,6 @@ $TRANSLATIONS = array( "Upload too large" => "Fișierul încărcat este prea mare", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierele pe care încerci să le încarci depășesc limita de încărcare maximă admisă pe acest server.", "Files are being scanned, please wait." => "Fișierele sunt scanate, te rog așteaptă.", -"Current scanning" => "În curs de scanare", -"Upgrading filesystem cache..." => "Actualizare fișiere de sistem cache..." +"Current scanning" => "În curs de scanare" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index a07cfe20f4..2c0335f3cc 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "Файл слишком велик", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые вы пытаетесь загрузить, превышают лимит максимального размера на этом сервере.", "Files are being scanned, please wait." => "Подождите, файлы сканируются.", -"Current scanning" => "Текущее сканирование", -"Upgrading filesystem cache..." => "Обновление кэша файловой системы..." +"Current scanning" => "Текущее сканирование" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 8717e11337..e80ca0186c 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "Nahrávanie je príliš veľké", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server.", "Files are being scanned, please wait." => "Čakajte, súbory sú prehľadávané.", -"Current scanning" => "Práve prezerané", -"Upgrading filesystem cache..." => "Aktualizujem medzipamäť súborového systému..." +"Current scanning" => "Práve prezerané" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index fb079eb42d..ae54ace12d 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Prekoračenje omejitve velikosti", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku.", "Files are being scanned, please wait." => "Poteka preučevanje datotek, počakajte ...", -"Current scanning" => "Trenutno poteka preučevanje", -"Upgrading filesystem cache..." => "Nadgrajevanje predpomnilnika datotečnega sistema ..." +"Current scanning" => "Trenutno poteka preučevanje" ); $PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index b4696c12b8..073f2def62 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Upload too large" => "Ngarkimi shumë i madh", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skedarët që po mundoheni të ngarkoni e tejkalojnë madhësinë maksimale të lejuar nga serveri.", "Files are being scanned, please wait." => "Skanerizimi i skedarit në proces. Ju lutem prisni.", -"Current scanning" => "Skanimi aktual", -"Upgrading filesystem cache..." => "Përditësimi i cache-se së sistemit në procesim..." +"Current scanning" => "Skanimi aktual" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 9220be0884..2a1b478b2a 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "Upload too large" => "Датотека је превелика", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеке које желите да отпремите прелазе ограничење у величини.", "Files are being scanned, please wait." => "Скенирам датотеке…", -"Current scanning" => "Тренутно скенирање", -"Upgrading filesystem cache..." => "Дограђујем кеш система датотека…" +"Current scanning" => "Тренутно скенирање" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 0f8b9c1fe7..fa88a1e966 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -82,7 +82,6 @@ $TRANSLATIONS = array( "Upload too large" => "För stor uppladdning", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.", "Files are being scanned, please wait." => "Filer skannas, var god vänta", -"Current scanning" => "Aktuell skanning", -"Upgrading filesystem cache..." => "Uppgraderar filsystemets cache..." +"Current scanning" => "Aktuell skanning" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 5e45bf4cd7..110b84cad5 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -54,7 +54,6 @@ $TRANSLATIONS = array( "Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้", "Files are being scanned, please wait." => "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่.", -"Current scanning" => "ไฟล์ที่กำลังสแกนอยู่ขณะนี้", -"Upgrading filesystem cache..." => "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..." +"Current scanning" => "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 01208430b0..a2570e002a 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Upload too large" => "Yükleme çok büyük", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.", "Files are being scanned, please wait." => "Dosyalar taranıyor, lütfen bekleyin.", -"Current scanning" => "Güncel tarama", -"Upgrading filesystem cache..." => "Sistem dosyası önbelleği güncelleniyor" +"Current scanning" => "Güncel tarama" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index 9a79152243..ee188d927e 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -33,7 +33,6 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "بۇ جايدا ھېچنېمە يوق. Upload something!", "Download" => "چۈشۈر", "Delete" => "ئۆچۈر", -"Upload too large" => "يۈكلەندىغىنى بەك چوڭ", -"Upgrading filesystem cache..." => "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…" +"Upload too large" => "يۈكلەندىغىنى بەك چوڭ" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index c4a47dff40..b74126c446 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Upload too large" => "Файл занадто великий", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері.", "Files are being scanned, please wait." => "Файли скануються, зачекайте, будь-ласка.", -"Current scanning" => "Поточне сканування", -"Upgrading filesystem cache..." => "Оновлення кеша файлової системи..." +"Current scanning" => "Поточне сканування" ); $PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index c20314a7da..8812bb1b20 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -81,7 +81,6 @@ $TRANSLATIONS = array( "Upload too large" => "Tập tin tải lên quá lớn", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ .", "Files are being scanned, please wait." => "Tập tin đang được quét ,vui lòng chờ.", -"Current scanning" => "Hiện tại đang quét", -"Upgrading filesystem cache..." => "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..." +"Current scanning" => "Hiện tại đang quét" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index eec0d718aa..87f8138697 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -85,7 +85,6 @@ $TRANSLATIONS = array( "Upload too large" => "上传文件过大", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "您正尝试上传的文件超过了此服务器可以上传的最大容量限制", "Files are being scanned, please wait." => "文件正在被扫描,请稍候。", -"Current scanning" => "当前扫描", -"Upgrading filesystem cache..." => "正在更新文件系统缓存..." +"Current scanning" => "当前扫描" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 6a4ef90bcd..caf8b184a3 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -80,7 +80,6 @@ $TRANSLATIONS = array( "Upload too large" => "上傳過大", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案大小超過伺服器的限制。", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。", -"Current scanning" => "正在掃描", -"Upgrading filesystem cache..." => "正在升級檔案系統快取…" +"Current scanning" => "正在掃描" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ar.php b/apps/files_external/l10n/ar.php index 338526d2af..5fd4e4c398 100644 --- a/apps/files_external/l10n/ar.php +++ b/apps/files_external/l10n/ar.php @@ -1,5 +1,6 @@ "حفظ", "Folder name" => "اسم المجلد", "Options" => "خيارات", "All Users" => "كل المستخدمين", diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index dd65213b9a..f3ac35e42e 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Godkend adgang", "Please provide a valid Dropbox app key and secret." => "Angiv venligst en valid Dropbox app nøgle og hemmelighed", "Error configuring Google Drive storage" => "Fejl ved konfiguration af Google Drive plads", +"Saved" => "Gemt", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det.", "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." => " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det.", "Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "Advarsel: Understøttelsen for Curl i PHP er enten ikke aktiveret eller ikke installeret. Det er ikke muligt, at montere ownCloud / WebDAV eller GoogleDrive. Spørg din system administrator om at installere det. ", @@ -21,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Brugere", "Delete" => "Slet", "Enable User External Storage" => "Aktiver ekstern opbevaring for brugere", +"Allow users to mount the following external storage" => "Tillad brugere at montere følgende som eksternt lager", "SSL root certificates" => "SSL-rodcertifikater", "Import Root Certificate" => "Importer rodcertifikat" ); diff --git a/apps/user_ldap/l10n/ar.php b/apps/user_ldap/l10n/ar.php index 2b0cbbd75a..8438c31f23 100644 --- a/apps/user_ldap/l10n/ar.php +++ b/apps/user_ldap/l10n/ar.php @@ -1,6 +1,9 @@ "تعذر حذف ملف إعدادات الخادم", +"The configuration is valid and the connection could be established!" => "الإعدادت صحيحة", "Deletion failed" => "فشل الحذف", +"Success" => "نجاح", "Error" => "خطأ", "Select groups" => "إختر مجموعة", "_%s group found_::_%s groups found_" => array("","","","","",""), @@ -9,6 +12,7 @@ $TRANSLATIONS = array( "Help" => "المساعدة", "Host" => "المضيف", "Password" => "كلمة المرور", -"Back" => "رجوع" +"Back" => "رجوع", +"Email Field" => "خانة البريد الإلكتروني" ); $PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 8040e20d95..64b9d702dc 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,6 +1,6 @@ "الاحد", +"Sunday" => "الأحد", "Monday" => "الأثنين", "Tuesday" => "الثلاثاء", "Wednesday" => "الاربعاء", @@ -38,6 +38,10 @@ $TRANSLATIONS = array( "Ok" => "موافق", "_{count} file conflict_::_{count} file conflicts_" => array("","","","","",""), "Cancel" => "الغاء", +"Very weak password" => "كلمة السر ضعيفة جدا", +"Weak password" => "كلمة السر ضعيفة", +"Good password" => "كلمة السر جيدة", +"Strong password" => "كلمة السر قوية", "Shared" => "مشارك", "Share" => "شارك", "Error" => "خطأ", diff --git a/core/l10n/az.php b/core/l10n/az.php index dbedde7e63..ffcdde48d4 100644 --- a/core/l10n/az.php +++ b/core/l10n/az.php @@ -1,9 +1,9 @@ array(""), -"_%n hour ago_::_%n hours ago_" => array(""), -"_%n day ago_::_%n days ago_" => array(""), -"_%n month ago_::_%n months ago_" => array(""), -"_{count} file conflict_::_{count} file conflicts_" => array("") +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") ); -$PLURAL_FORMS = "nplurals=1; plural=0;"; +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 0e58f387a2..c696d1f0e6 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Activat el mode de manteniment", "Turned off maintenance mode" => "Desactivat el mode de manteniment", "Updated database" => "Actualitzada la base de dades", -"Updating filecache, this may take really long..." => "Actualitzant la memòria de cau del fitxers, això pot trigar molt...", -"Updated filecache" => "Actualitzada la memòria de cau dels fitxers", -"... %d%% done ..." => "... %d%% fet ...", "No image or file provided" => "No s'han proporcionat imatges o fitxers", "Unknown filetype" => "Tipus de fitxer desconegut", "Invalid image" => "Imatge no vàlida", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 498086b280..5709acf033 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Zapnut režim údržby", "Turned off maintenance mode" => "Vypnut režim údržby", "Updated database" => "Zaktualizována databáze", -"Updating filecache, this may take really long..." => "Aktualizuji souborovou mezipaměť, toto může trvat opravdu dlouho...", -"Updated filecache" => "Aktualizována souborová mezipaměť", -"... %d%% done ..." => "... %d%% dokončeno ...", "No image or file provided" => "Soubor nebo obrázek nebyl zadán", "Unknown filetype" => "Neznámý typ souboru", "Invalid image" => "Chybný obrázek", diff --git a/core/l10n/da.php b/core/l10n/da.php index 09ab618282..4a98dfcc11 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Startede vedligeholdelsestilstand", "Turned off maintenance mode" => "standsede vedligeholdelsestilstand", "Updated database" => "Opdaterede database", -"Updating filecache, this may take really long..." => "Opdatere filcache, dette kan tage rigtigt lang tid...", -"Updated filecache" => "Opdaterede filcache", -"... %d%% done ..." => "... %d%% færdig ...", "No image or file provided" => "Ingen fil eller billede givet", "Unknown filetype" => "Ukendt filtype", "Invalid image" => "Ugyldigt billede", diff --git a/core/l10n/de.php b/core/l10n/de.php index b392dc1913..38092b9925 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Wartungsmodus eingeschaltet", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", "Updated database" => "Datenbank aktualisiert", -"Updating filecache, this may take really long..." => "Aktualisiere Dateicache, dies könnte eine Weile dauern...", -"Updated filecache" => "Dateicache aktualisiert", -"... %d%% done ..." => "... %d%% erledigt ...", "No image or file provided" => "Kein Bild oder Datei zur Verfügung gestellt", "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index c83a092151..42b8eb3bce 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -3,8 +3,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Wartungsmodus eingeschaltet", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", "Updated database" => "Datenbank aktualisiert", -"Updating filecache, this may take really long..." => "Aktualisiere Dateicache, dies könnte eine Weile dauern...", -"Updated filecache" => "Dateicache aktualisiert", "Sunday" => "Sonntag", "Monday" => "Montag", "Tuesday" => "Dienstag", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 1c2f6e002d..b704ab81a1 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Wartungsmodus eingeschaltet ", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", "Updated database" => "Datenbank aktualisiert", -"Updating filecache, this may take really long..." => "Aktualisiere Datei-Cache, dies könnte eine Weile dauern...", -"Updated filecache" => "Datei-Cache aktualisiert", -"... %d%% done ..." => "... %d%% erledigt ...", "No image or file provided" => "Weder Bild noch ein Datei wurden zur Verfügung gestellt", "Unknown filetype" => "Unbekannter Dateityp", "Invalid image" => "Ungültiges Bild", diff --git a/core/l10n/el.php b/core/l10n/el.php index 61c21f1a84..ed7792b726 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Η κατάσταση συντήρησης ενεργοποιήθηκε", "Turned off maintenance mode" => "Η κατάσταση συντήρησης απενεργοποιήθηκε", "Updated database" => "Ενημερωμένη βάση δεδομένων", -"Updating filecache, this may take really long..." => "Ενημέρωση αποθηκευμένων αρχείων, αυτό μπορεί να πάρα πολύ ώρα...", -"Updated filecache" => "Ενημέρωση αποθηκευμένων αρχείων", -"... %d%% done ..." => "... %d%% ολοκληρώθηκαν ...", "No image or file provided" => "Δεν δόθηκε εικόνα ή αρχείο", "Unknown filetype" => "Άγνωστος τύπος αρχείου", "Invalid image" => "Μη έγκυρη εικόνα", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index f97f30dbd5..a8f36deff3 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Turned on maintenance mode", "Turned off maintenance mode" => "Turned off maintenance mode", "Updated database" => "Updated database", -"Updating filecache, this may take really long..." => "Updating filecache, this may take a really long time...", -"Updated filecache" => "Updated filecache", -"... %d%% done ..." => "... %d%% done ...", "No image or file provided" => "No image or file provided", "Unknown filetype" => "Unknown filetype", "Invalid image" => "Invalid image", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 86813ed9ce..f264b7ed7a 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -1,9 +1,6 @@ "Ĝisdatiĝis datumbazo", -"Updating filecache, this may take really long..." => "Ĝisdatigante la dosierkaŝmemoron, ĉi tio povas daŭri tro longe...", -"Updated filecache" => "Ĝisdatiĝis dosierkaŝmemoro", -"... %d%% done ..." => "... %d%% plenumiĝis ...", "Unknown filetype" => "Ne konatas dosiertipo", "Invalid image" => "Ne validas bildo", "Sunday" => "dimanĉo", diff --git a/core/l10n/es.php b/core/l10n/es.php index a8a3c6a631..32de51d912 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", "Updated database" => "Base de datos actualizada", -"Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar bastante tiempo...", -"Updated filecache" => "Caché de archivos actualizada", -"... %d%% done ..." => "... %d%% hecho ...", "No image or file provided" => "No se especificó ningún archivo o imagen", "Unknown filetype" => "Tipo de archivo desconocido", "Invalid image" => "Imagen inválida", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 16b85eeb70..b5b37d4825 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Modo de mantenimiento activado", "Turned off maintenance mode" => "Modo de mantenimiento desactivado", "Updated database" => "Base de datos actualizada", -"Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar mucho tiempo...", -"Updated filecache" => "Caché de archivos actualizada", -"... %d%% done ..." => "... %d%% hecho ...", "No image or file provided" => "No se ha proveído de una imágen o archivo.", "Unknown filetype" => "Tipo de archivo desconocido", "Invalid image" => "Imagen inválida", diff --git a/core/l10n/es_MX.php b/core/l10n/es_MX.php index 960a39b8e6..6a90e3d778 100644 --- a/core/l10n/es_MX.php +++ b/core/l10n/es_MX.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", "Updated database" => "Base de datos actualizada", -"Updating filecache, this may take really long..." => "Actualizando caché de archivos, esto puede tardar bastante tiempo...", -"Updated filecache" => "Caché de archivos actualizada", -"... %d%% done ..." => "... %d%% hecho ...", "No image or file provided" => "No se especificó ningún archivo o imagen", "Unknown filetype" => "Tipo de archivo desconocido", "Invalid image" => "Imagen inválida", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index b48994e5d9..5a2e34ff3a 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Haldusrežiimis sisse lülitatud", "Turned off maintenance mode" => "Haldusrežiimis välja lülitatud", "Updated database" => "Uuendatud andmebaas", -"Updating filecache, this may take really long..." => "Failipuhvri uuendamine, see võib kesta väga kaua...", -"Updated filecache" => "Uuendatud failipuhver", -"... %d%% done ..." => "... %d%% tehtud ...", "No image or file provided" => "Ühtegi pilti või faili pole pakutud", "Unknown filetype" => "Tundmatu failitüüp", "Invalid image" => "Vigane pilt", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index d0da3686e5..33c98fb9b9 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Mantenu modua gaitu da", "Turned off maintenance mode" => "Mantenu modua desgaitu da", "Updated database" => "Datu basea eguneratu da", -"Updating filecache, this may take really long..." => "Fitxategi katxea eguneratzen, honek oso denbora luzea har dezake...", -"Updated filecache" => "Fitxategi katxea eguneratu da", -"... %d%% done ..." => "... %d%% egina ...", "No image or file provided" => "Ez da irudi edo fitxategirik zehaztu", "Unknown filetype" => "Fitxategi mota ezezaguna", "Invalid image" => "Baliogabeko irudia", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 014a083cf9..e86ce1c2fb 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Siirrytty ylläpitotilaan", "Turned off maintenance mode" => "Ylläpitotila laitettu pois päältä", "Updated database" => "Tietokanta ajan tasalla", -"Updating filecache, this may take really long..." => "Päivitetään tiedostojen välimuistia, tämä saattaa kestää todella kauan...", -"Updated filecache" => "Tiedostojen välimuisti päivitetty", -"... %d%% done ..." => "... %d%% valmis ...", "No image or file provided" => "Kuvaa tai tiedostoa ei määritelty", "Unknown filetype" => "Tuntematon tiedostotyyppi", "Invalid image" => "Virhellinen kuva", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 5206d746b4..3754e8c9e0 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Basculé en mode maintenance", "Turned off maintenance mode" => "Basculé en mode production (non maintenance)", "Updated database" => "Base de données mise à jour", -"Updating filecache, this may take really long..." => "En cours de mise à jour de cache de fichiers. Cette opération peut être très longue...", -"Updated filecache" => "Cache de fichier mis à jour", -"... %d%% done ..." => "... %d%% effectué ...", "No image or file provided" => "Aucune image ou fichier fourni", "Unknown filetype" => "Type de fichier inconnu", "Invalid image" => "Image invalide", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index c1130af9c5..30730a72d6 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Modo de mantemento activado", "Turned off maintenance mode" => "Modo de mantemento desactivado", "Updated database" => "Base de datos actualizada", -"Updating filecache, this may take really long..." => "Actualizando o ficheiro da caché, isto pode levar bastante tempo...", -"Updated filecache" => "Ficheiro da caché actualizado", -"... %d%% done ..." => "... %d%% feito ...", "No image or file provided" => "Non forneceu ningunha imaxe ou ficheiro", "Unknown filetype" => "Tipo de ficheiro descoñecido", "Invalid image" => "Imaxe incorrecta", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 5e4d13335c..e81991ec7a 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "A karbantartási mód bekapcsolva", "Turned off maintenance mode" => "A karbantartási mód kikapcsolva", "Updated database" => "Frissítet adatbázis", -"Updating filecache, this may take really long..." => "A filecache frissítése folyamatban, ez a folyamat hosszabb ideig is eltarthat...", -"Updated filecache" => "Filecache frissítve", -"... %d%% done ..." => "... %d%% kész ...", "No image or file provided" => "Nincs kép vagy file megadva", "Unknown filetype" => "Ismeretlen file tipús", "Invalid image" => "Hibás kép", diff --git a/core/l10n/id.php b/core/l10n/id.php index 88861e605c..5038d0d6c8 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Hidupkan mode perawatan", "Turned off maintenance mode" => "Matikan mode perawatan", "Updated database" => "Basis data terbaru", -"Updating filecache, this may take really long..." => "Memperbarui filecache, mungkin memerlukan waktu sangat lama...", -"Updated filecache" => "Filecache terbaru", -"... %d%% done ..." => "... %d%% selesai ...", "No image or file provided" => "Tidak ada gambar atau file yang disediakan", "Unknown filetype" => "Tipe berkas tak dikenal", "Invalid image" => "Gambar tidak sah", diff --git a/core/l10n/it.php b/core/l10n/it.php index ad473521bb..fb9746d76c 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Modalità di manutenzione attivata", "Turned off maintenance mode" => "Modalità di manutenzione disattivata", "Updated database" => "Database aggiornato", -"Updating filecache, this may take really long..." => "Aggiornamento della cache dei file in corso, potrebbe richiedere molto tempo...", -"Updated filecache" => "Cache dei file aggiornata", -"... %d%% done ..." => "... %d%% completato ...", "No image or file provided" => "Non è stata fornita alcun immagine o file", "Unknown filetype" => "Tipo di file sconosciuto", "Invalid image" => "Immagine non valida", diff --git a/core/l10n/ja.php b/core/l10n/ja.php index 9fce579e69..eb3e688257 100644 --- a/core/l10n/ja.php +++ b/core/l10n/ja.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "メンテナンスモードがオンになりました", "Turned off maintenance mode" => "メンテナンスモードがオフになりました", "Updated database" => "データベース更新完了", -"Updating filecache, this may take really long..." => "ファイルキャッシュを更新しています、しばらく掛かる恐れがあります...", -"Updated filecache" => "ファイルキャッシュ更新完了", -"... %d%% done ..." => "... %d%% 完了 ...", "No image or file provided" => "画像もしくはファイルが提供されていません", "Unknown filetype" => "不明なファイルタイプ", "Invalid image" => "無効な画像", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 7f739934f2..6020777f87 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "유지 보수 모드 켜짐", "Turned off maintenance mode" => "유지 보수 모드 꺼짐", "Updated database" => "데이터베이스 업데이트 됨", -"Updating filecache, this may take really long..." => "파일 캐시 업데이트 중, 시간이 약간 걸릴 수 있습니다...", -"Updated filecache" => "파일 캐시 업데이트 됨", -"... %d%% done ..." => "... %d%% 완료됨 ...", "No image or file provided" => "이미지나 파일이 없음", "Unknown filetype" => "알려지지 않은 파일 형식", "Invalid image" => "잘못된 이미지", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index e1eaf3b7d6..b60f6c7c5f 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -3,9 +3,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Maintenance Modus ass un", "Turned off maintenance mode" => "Maintenance Modus ass aus", "Updated database" => "Datebank ass geupdate ginn", -"Updating filecache, this may take really long..." => "De Fichier Cache gëtt geupdate, des ka laang daueren...", -"Updated filecache" => "De Fichier Cache ass geupdate ginn", -"... %d%% done ..." => "... %d%% fäerdeg ...", "No image or file provided" => "Kee Bild oder Fichier uginn", "Unknown filetype" => "Onbekannten Fichier Typ", "Invalid image" => "Ongülteg d'Bild", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index c027e54227..776cde74fe 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Įjungta priežiūros veiksena", "Turned off maintenance mode" => "Išjungta priežiūros veiksena", "Updated database" => "Atnaujinta duomenų bazė", -"Updating filecache, this may take really long..." => "Atnaujinama failų talpykla, tai gali užtrukti labai ilgai...", -"Updated filecache" => "Atnaujinta failų talpykla", -"... %d%% done ..." => "... %d%% atlikta ...", "No image or file provided" => "Nenurodytas paveikslėlis ar failas", "Unknown filetype" => "Nežinomas failo tipas", "Invalid image" => "Netinkamas paveikslėlis", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 9bba50df46..c56ae32bf2 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -3,7 +3,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Вклучен е модот за одржување", "Turned off maintenance mode" => "Ислкучен е модот за одржување", "Updated database" => "Базата е надградена", -"Updated filecache" => "Кешот е надграден", "No image or file provided" => "Не е доставена фотографија или датотека", "Unknown filetype" => "Непознат тип на датотека", "Invalid image" => "Невалидна фотографија", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 723d92c043..43141bc431 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Slo på vedlikeholdsmodus", "Turned off maintenance mode" => "Slo av vedlikeholdsmodus", "Updated database" => "Oppdaterte databasen", -"Updating filecache, this may take really long..." => "Oppdaterer fil-cache. Dette kan ta veldig lang tid...", -"Updated filecache" => "Oppdaterte fil-cache", -"... %d%% done ..." => "... %d%% ferdig ...", "No image or file provided" => "Bilde eller fil ikke angitt", "Unknown filetype" => "Ukjent filtype", "Invalid image" => "Ugyldig bilde", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 4610674ed4..68fd3d2c38 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Onderhoudsmodus ingeschakeld", "Turned off maintenance mode" => "Onderhoudsmodus uitgeschakeld", "Updated database" => "Database bijgewerkt", -"Updating filecache, this may take really long..." => "Bijwerken bestandscache. Dit kan even duren...", -"Updated filecache" => "Bestandscache bijgewerkt", -"... %d%% done ..." => "... %d%% gereed ...", "No image or file provided" => "Geen afbeelding of bestand opgegeven", "Unknown filetype" => "Onbekend bestandsformaat", "Invalid image" => "Ongeldige afbeelding", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 03f0a979c7..e6a80262a2 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -3,9 +3,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Skrudde på vedlikehaldsmodus", "Turned off maintenance mode" => "Skrudde av vedlikehaldsmodus", "Updated database" => "Database oppdatert", -"Updating filecache, this may take really long..." => "Oppdaterer mellomlager; dette kan ta ei god stund …", -"Updated filecache" => "Mellomlager oppdatert", -"... %d%% done ..." => "… %d %% ferdig …", "No image or file provided" => "Inga bilete eller fil gitt", "Unknown filetype" => "Ukjend filtype", "Invalid image" => "Ugyldig bilete", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index bb73665a6b..8f53c802f6 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Włączony tryb konserwacji", "Turned off maintenance mode" => "Wyłączony tryb konserwacji", "Updated database" => "Zaktualizuj bazę", -"Updating filecache, this may take really long..." => "Aktualizowanie filecache, to może potrwać bardzo długo...", -"Updated filecache" => "Zaktualizuj filecache", -"... %d%% done ..." => "... %d%% udane ...", "No image or file provided" => "Brak obrazu lub pliku dostarczonego", "Unknown filetype" => "Nieznany typ pliku", "Invalid image" => "Nieprawidłowe zdjęcie", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 0d1ed5efa1..ee69583151 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Ativar modo de manutenção", "Turned off maintenance mode" => "Desligar o modo de manutenção", "Updated database" => "Atualizar o banco de dados", -"Updating filecache, this may take really long..." => "Atualizar cahe de arquivos, isto pode levar algum tempo...", -"Updated filecache" => "Atualizar cache de arquivo", -"... %d%% done ..." => "... %d%% concluído ...", "No image or file provided" => "Nenhuma imagem ou arquivo fornecido", "Unknown filetype" => "Tipo de arquivo desconhecido", "Invalid image" => "Imagem inválida", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index b94500604b..a4d6785cd5 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Activado o modo de manutenção", "Turned off maintenance mode" => "Desactivado o modo de manutenção", "Updated database" => "Base de dados actualizada", -"Updating filecache, this may take really long..." => "A actualizar o cache dos ficheiros, poderá demorar algum tempo...", -"Updated filecache" => "Actualizado o cache dos ficheiros", -"... %d%% done ..." => "... %d%% feito ...", "No image or file provided" => "Não foi selecionado nenhum ficheiro para importar", "Unknown filetype" => "Ficheiro desconhecido", "Invalid image" => "Imagem inválida", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 0fe0c881e6..8d84e7d31b 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Режим отладки включён", "Turned off maintenance mode" => "Режим отладки отключён", "Updated database" => "База данных обновлена", -"Updating filecache, this may take really long..." => "Обновление файлового кэша, это может занять некоторое время...", -"Updated filecache" => "Обновлен файловый кэш", -"... %d%% done ..." => "... %d%% завершено ...", "No image or file provided" => "Не указано изображение или файл", "Unknown filetype" => "Неизвестный тип файла", "Invalid image" => "Изображение повреждено", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 7d1e857bc2..bb3c9863ce 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Mód údržby je zapnutý", "Turned off maintenance mode" => "Mód údržby e vypnutý", "Updated database" => "Databáza je aktualizovaná", -"Updating filecache, this may take really long..." => "Aktualizácia \"filecache\", toto môže trvať dlhšie...", -"Updated filecache" => "\"Filecache\" aktualizovaná", -"... %d%% done ..." => "... %d%% dokončených ...", "No image or file provided" => "Obrázok alebo súbor nebol zadaný", "Unknown filetype" => "Neznámy typ súboru", "Invalid image" => "Chybný obrázok", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index cadf11532c..51a4c7d2e2 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Vzdrževalni način je omogočen", "Turned off maintenance mode" => "Vzdrževalni način je onemogočen", "Updated database" => "Posodobljena podatkovna zbirka", -"Updating filecache, this may take really long..." => "Poteka posodabljanje predpomnilnika datotek. Opravilo je lahko dolgotrajno ...", -"Updated filecache" => "Predpomnilnik datotek je posodobljen", -"... %d%% done ..." => "... %d%% končano ...", "No image or file provided" => "Ni podane datoteke ali slike", "Unknown filetype" => "Neznana vrsta datoteke", "Invalid image" => "Neveljavna slika", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index 0f414a5158..bfb7b0903f 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -3,9 +3,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Mënyra e mirëmbajtjes u aktivizua", "Turned off maintenance mode" => "Mënyra e mirëmbajtjes u çaktivizua", "Updated database" => "Database-i u azhurnua", -"Updating filecache, this may take really long..." => "Po azhurnoj memorjen e skedarëve, mund të zgjasi pak...", -"Updated filecache" => "Memorja e skedarëve u azhornua", -"... %d%% done ..." => "... %d%% u krye ...", "Sunday" => "E djelë", "Monday" => "E hënë", "Tuesday" => "E martë", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index bd282bad66..c4e92e6217 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Aktiverade underhållsläge", "Turned off maintenance mode" => "Deaktiverade underhållsläge", "Updated database" => "Uppdaterade databasen", -"Updating filecache, this may take really long..." => "Uppdaterar filcache, det kan ta lång tid...", -"Updated filecache" => "Uppdaterade filcache", -"... %d%% done ..." => "... %d%% klart ...", "No image or file provided" => "Ingen bild eller fil har tillhandahållits", "Unknown filetype" => "Okänd filtyp", "Invalid image" => "Ogiltig bild", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 3c00a5aaea..b0f4a463dc 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Bakım kipi etkinleştirildi", "Turned off maintenance mode" => "Bakım kipi kapatıldı", "Updated database" => "Veritabanı güncellendi", -"Updating filecache, this may take really long..." => "Dosya önbelleği güncelleniyor. Bu, gerçekten uzun sürebilir.", -"Updated filecache" => "Dosya önbelleği güncellendi", -"... %d%% done ..." => "%%%d tamamlandı ...", "No image or file provided" => "Resim veya dosya belirtilmedi", "Unknown filetype" => "Bilinmeyen dosya türü", "Invalid image" => "Geçersiz resim", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 14c044161d..ade29981b4 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Увімкнено захищений режим", "Turned off maintenance mode" => "Вимкнено захищений режим", "Updated database" => "Базу даних оновлено", -"Updating filecache, this may take really long..." => "Оновлення файлового кешу, це може тривати доволі довго...", -"Updated filecache" => "Файловий кеш оновлено", -"... %d%% done ..." => "... %d%% виконано ...", "No image or file provided" => "Немає наданого зображення або файлу", "Unknown filetype" => "Невідомий тип файлу", "Invalid image" => "Невірне зображення", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index f62c5fd615..be99580d94 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "Bật chế độ bảo trì", "Turned off maintenance mode" => "Tắt chế độ bảo trì", "Updated database" => "Cơ sở dữ liệu đã được cập nhật", -"Updating filecache, this may take really long..." => "Đang cập nhật tập tin bộ nhớ cache, việc này có thể mất nhiều thời gian...", -"Updated filecache" => "Đã cập nhật tập tin bộ nhớ cache", -"... %d%% done ..." => "... %d%% hoàn thành ...", "No image or file provided" => "Không có hình ảnh hoặc tập tin được cung cấp", "Unknown filetype" => "Không biết kiểu tập tin", "Invalid image" => "Hình ảnh không hợp lệ", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index de00cfc69f..e5a6a254e5 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "启用维护模式", "Turned off maintenance mode" => "关闭维护模式", "Updated database" => "数据库已更新", -"Updating filecache, this may take really long..." => "正在更新文件缓存,这可能需要较长时间...", -"Updated filecache" => "文件缓存已更新", -"... %d%% done ..." => "...已完成 %d%% ...", "No image or file provided" => "没有提供图片或文件", "Unknown filetype" => "未知的文件类型", "Invalid image" => "无效的图像", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 8529fb5e5f..dae143cef4 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -4,9 +4,6 @@ $TRANSLATIONS = array( "Turned on maintenance mode" => "已啓用維護模式", "Turned off maintenance mode" => "已停用維護模式", "Updated database" => "已更新資料庫", -"Updating filecache, this may take really long..." => "更新檔案快取,這可能要很久…", -"Updated filecache" => "已更新檔案快取", -"... %d%% done ..." => "已完成 %d%%", "No image or file provided" => "未提供圖片或檔案", "Unknown filetype" => "未知的檔案類型", "Invalid image" => "無效的圖片", diff --git a/l10n/ach/core.po b/l10n/ach/core.po index 74d8261220..fd76946448 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 0d5c1212cf..58c50d3e19 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po index f3f11c8eae..3595cbff3f 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/ady/files.po b/l10n/ady/files.po index 7aa54f0efa..bc32e0306b 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/af/core.po b/l10n/af/core.po index 4fbf58f9d9..101475a4c7 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/af/files.po b/l10n/af/files.po index 0214d96486..2175656e18 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 0e240e0483..aa1182d724 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "Instellings" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index ba81bbfb0a..9ab990fa95 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ak/core.po b/l10n/ak/core.po index 424006a02c..f6cfe7040f 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,11 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/ak/files.po b/l10n/ak/files.po index 8f4a06ccd3..639ada15a2 100644 --- a/l10n/ak/files.po +++ b/l10n/ak/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index f6d7bc666c..ce9440bbe6 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abderraouf Mehdi Bouhali , 2014 # blackcoder , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 18:50+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +19,11 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +40,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -70,7 +62,7 @@ msgstr "" #: js/config.php:36 msgid "Sunday" -msgstr "الاحد" +msgstr "الأحد" #: js/config.php:37 msgid "Monday" @@ -290,11 +282,11 @@ msgstr "" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "كلمة السر ضعيفة جدا" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "كلمة السر ضعيفة" #: js/setup.js:86 msgid "So-so password" @@ -302,11 +294,11 @@ msgstr "" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "كلمة السر جيدة" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "كلمة السر قوية" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -317,11 +309,11 @@ msgid "Share" msgstr "شارك" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "خطأ" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -437,19 +429,19 @@ msgstr "محمي بكلمة السر" msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "تحذير" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index bab63e292e..45ba3707ab 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: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 21:00+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -428,7 +428,3 @@ msgstr "يرجى الانتظار , جاري فحص الملفات ." #: templates/index.php:108 msgid "Current scanning" msgstr "الفحص الحالي" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "تحديث ذاكرة التخزين المؤقت(الكاش) الخاصة بملفات النظام ..." diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index 938f63bc23..570282efb9 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-19 05:50+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-19 06:00+0000\n" "Last-Translator: m.shehab \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index c2b4c360d9..cc51765eb2 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-19 06:40+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" @@ -40,22 +40,22 @@ msgstr "" #: js/settings.js:313 js/settings.js:320 msgid "Saved" -msgstr "" +msgstr "حفظ" -#: lib/config.php:512 +#: lib/config.php:518 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:516 +#: lib/config.php:522 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:519 +#: lib/config.php:525 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/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index cca8217499..4eef8c3432 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-19 06:40+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index a3d00d9963..693e98aa31 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -4,14 +4,15 @@ # # Translators: # ezidan , 2014 +# m.shehab , 2014 # suliman <291101251@std.qu.edu.sa>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 18:50+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-19 06:40+0000\n" +"Last-Translator: m.shehab \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,24 +23,24 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "ادخال خاطئ لقيمة %s" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "حفظ" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "إعدادات البريد التجريبي" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "تبدوا الاعدادت صحيحة اذا تلقيت هذا البريد الالكتروني" #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "حدث خطأ اثناء ارسال البريد الالكتروني ، الرجاء مراجعة اعداداتك" #: admin/controller.php:99 msgid "Email sent" @@ -51,7 +52,7 @@ msgstr "" #: admin/controller.php:116 templates/admin.php:282 msgid "Send mode" -msgstr "" +msgstr "وضعية الإرسال" #: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 msgid "Encryption" @@ -59,7 +60,7 @@ msgstr "التشفير" #: admin/controller.php:120 templates/admin.php:319 msgid "Authentication method" -msgstr "" +msgstr "أسلوب التطابق" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -159,7 +160,7 @@ msgstr "لا يمكن تغيير كلمة المرور" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "جاري الارسال ..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -219,11 +220,11 @@ msgstr "اختر صورة الملف الشخصي " #: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "كلمة السر ضعيفة جدا" #: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "كلمة السر ضعيفة" #: js/personal.js:279 msgid "So-so password" @@ -231,11 +232,11 @@ msgstr "" #: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "كلمة السر جيدة" #: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "كلمة السر قوية" #: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." @@ -517,7 +518,7 @@ msgstr "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او ت #: templates/admin.php:277 msgid "Email Server" -msgstr "" +msgstr "خادم البريد الالكتروني" #: templates/admin.php:279 msgid "This is used for sending out notifications." @@ -603,7 +604,7 @@ msgstr "إختر تطبيقاً" #: templates/apps.php:42 msgid "Documentation:" -msgstr "" +msgstr "التوثيق" #: templates/apps.php:48 msgid "See application page at apps.owncloud.com" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index e3a5525e84..b2c76070de 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# m.shehab , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 06:50+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-19 06:30+0000\n" +"Last-Translator: m.shehab \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,11 +24,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "تعذر حذف ملف إعدادات الخادم" #: ajax/testConfiguration.php:39 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "الإعدادت صحيحة" #: ajax/testConfiguration.php:42 msgid "" @@ -80,7 +81,7 @@ msgstr "" #: js/settings.js:128 msgid "Success" -msgstr "" +msgstr "نجاح" #: js/settings.js:133 msgid "Error" @@ -445,7 +446,7 @@ msgstr "" #: templates/settings.php:45 msgid "Email Field" -msgstr "" +msgstr "خانة البريد الإلكتروني" #: templates/settings.php:46 msgid "User Home Folder Naming Rule" diff --git a/l10n/az/core.po b/l10n/az/core.po index abe8918244..1a5b86d9bd 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -7,17 +7,21 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: az\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,51 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" +msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" +msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" +msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" +msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -227,6 +222,7 @@ msgstr "" msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" +msgstr[1] "" #: js/oc-dialogs.js:361 msgid "One file conflict" @@ -291,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -411,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/az/files.po b/l10n/az/files.po index 10ee0d16da..907c50809c 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: az\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/move.php:17 #, php-format @@ -229,11 +229,13 @@ msgstr "" msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" +msgstr[1] "" #: js/filelist.js:688 js/filelist.js:762 js/files.js:697 msgid "%n file" msgid_plural "%n files" msgstr[0] "" +msgstr[1] "" #: js/filelist.js:695 msgid "{dirs} and {files}" @@ -243,6 +245,7 @@ msgstr "" msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" +msgstr[1] "" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." @@ -411,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/be/core.po b/l10n/be/core.po index 4e7fa8e377..effb684e29 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -152,11 +143,11 @@ msgstr "Налады" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "Секунд таму" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -164,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -172,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "Сёння" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "Ўчора" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -188,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "У мінулым месяцы" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -200,15 +191,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "Месяцаў таму" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "У мінулым годзе" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "Гадоў таму" @@ -307,11 +298,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Памылка" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -427,19 +418,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index 88ce254af9..a2a5ebaa16 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -420,7 +420,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index cd08d909fc..1b04afa78a 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -297,11 +288,11 @@ msgid "Share" msgstr "Споделяне" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Грешка при споделяне" @@ -417,19 +408,19 @@ msgstr "Защитено с парола" msgid "Error unsetting expiration date" msgstr "Грешка при премахване на дата за изтичане" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Грепка при поставяне на дата за изтичане" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Изпращам ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Пощата е изпратена" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Внимание" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 20623b2547..bb8c6f450f 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "Файловете се претърсват, изчакайте." #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 70f0d9e462..289807abe8 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "ভাগাভাগি কর" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "সমস্যা" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -416,19 +407,19 @@ msgstr "কূটশব্দদ্বারা সুরক্ষিত" msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "সতর্কবাণী" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index af165f8e24..199301ae11 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে #: templates/index.php:108 msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 673f000c4d..1ec7d92c27 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -301,11 +292,11 @@ msgid "Share" msgstr "Podijeli" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -421,19 +412,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 04fe47a62c..0bd442a17a 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -417,7 +417,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 91db7becd5..5307cf0d57 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 14:20+0000\n" -"Last-Translator: aseques \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,11 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No s'ha pogut enviar correu als usuaris següents: %s" @@ -37,19 +41,6 @@ msgstr "Desactivat el mode de manteniment" msgid "Updated database" msgstr "Actualitzada la base de dades" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Actualitzant la memòria de cau del fitxers, això pot trigar molt..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Actualitzada la memòria de cau dels fitxers" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% fet ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No s'han proporcionat imatges o fitxers" @@ -299,11 +290,11 @@ msgid "Share" msgstr "Comparteix" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Error en compartir" @@ -419,19 +410,19 @@ msgstr "Protegeix amb contrasenya" msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Avís" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 9931cfa3ce..1f6bb0a695 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 08:40+0000\n" -"Last-Translator: mickymadsystems \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -418,7 +418,3 @@ msgstr "S'estan escanejant els fitxers, espereu" #: templates/index.php:108 msgid "Current scanning" msgstr "Actualment escanejant" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Actualitzant la memòria de cau del sistema de fitxers..." diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 08ca5c28cf..f9c88aad9f 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 21:30+0000\n" -"Last-Translator: m23 \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +25,11 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nebylo možné odeslat e-mail následujícím uživatelům: %s" @@ -42,19 +46,6 @@ msgstr "Vypnut režim údržby" msgid "Updated database" msgstr "Zaktualizována databáze" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Aktualizuji souborovou mezipaměť, toto může trvat opravdu dlouho..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Aktualizována souborová mezipaměť" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% dokončeno ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Soubor nebo obrázek nebyl zadán" @@ -309,11 +300,11 @@ msgid "Share" msgstr "Sdílet" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -429,19 +420,19 @@ msgstr "Chráněno heslem" msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-mail odeslán" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Varování" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index fbe509b5e9..fff8ff7c03 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 20:40+0000\n" -"Last-Translator: m23 \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -425,7 +425,3 @@ msgstr "Soubory se prohledávají, prosím čekejte." #: templates/index.php:108 msgid "Current scanning" msgstr "Aktuální prohledávání" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Aktualizuji mezipaměť souborového systému..." diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index c42c13e5a2..232e585fe0 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -307,11 +298,11 @@ msgid "Share" msgstr "Rhannu" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Gwall" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -427,19 +418,19 @@ msgstr "Diogelwyd â chyfrinair" msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Anfonwyd yr e-bost" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Rhybudd" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 2ba7de4a3c..57f1b46233 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -420,7 +420,3 @@ msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." #: templates/index.php:108 msgid "Current scanning" msgstr "Sganio cyfredol" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Uwchraddio storfa system ffeiliau..." diff --git a/l10n/da/core.po b/l10n/da/core.po index 9246aa2a27..8e2aaca4f4 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -24,7 +24,11 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Kunne ikke sende mail til følgende brugere: %s" @@ -41,19 +45,6 @@ msgstr "standsede vedligeholdelsestilstand" msgid "Updated database" msgstr "Opdaterede database" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Opdatere filcache, dette kan tage rigtigt lang tid..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Opdaterede filcache" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% færdig ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Ingen fil eller billede givet" @@ -303,11 +294,11 @@ msgid "Share" msgstr "Del" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Fejl" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Fejl under deling" @@ -423,19 +414,19 @@ msgstr "Beskyttet med adgangskode" msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-mail afsendt" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Advarsel" diff --git a/l10n/da/files.po b/l10n/da/files.po index 22b927a5d7..ccacffbeb9 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe, 2013 +# Sappe, 2013-2014 # claus_chr , 2013 # lodahl , 2013 +# Amplificator, 2014 # Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -38,7 +39,7 @@ msgstr "Filnavnet kan ikke stå tomt." #: ajax/newfile.php:62 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" er et ugyldigt filnavn." #: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 msgid "" @@ -49,7 +50,7 @@ msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke #: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 #: lib/app.php:65 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Mappen er blevet slettet eller fjernet." #: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 #, php-format @@ -153,12 +154,12 @@ msgstr "Kan ikke upload {filename} da det er enten en mappe eller indholder 0 by #: js/file-upload.js:258 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Den totale filstørrelse {size1} er større end uploadgrænsen {size2}" #: js/file-upload.js:268 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage" #: js/file-upload.js:338 msgid "Upload cancelled." @@ -253,7 +254,7 @@ msgstr[1] "Uploader %n filer" #: js/files.js:96 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "'{name}' er et ugyldigt filnavn." #: js/files.js:117 msgid "Your storage is full, files can not be updated or synced anymore!" @@ -418,7 +419,3 @@ msgstr "Filerne bliver indlæst, vent venligst." #: templates/index.php:108 msgid "Current scanning" msgstr "Indlæser" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Opgraderer filsystems cachen..." diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index d3ae79673e..e7dde82ddc 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Amplificator, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-19 23:12+0000\n" +"Last-Translator: Amplificator\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,22 +40,22 @@ msgstr "Fejl ved konfiguration af Google Drive plads" #: js/settings.js:313 js/settings.js:320 msgid "Saved" -msgstr "" +msgstr "Gemt" -#: lib/config.php:512 +#: lib/config.php:518 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:516 +#: lib/config.php:522 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 " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:519 +#: lib/config.php:525 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -116,7 +117,7 @@ msgstr "Aktiver ekstern opbevaring for brugere" #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Tillad brugere at montere følgende som eksternt lager" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index f4c3d5df08..60a7e89f3c 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-19 23:12+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" @@ -28,7 +28,7 @@ msgstr "" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Gemt" #: admin/controller.php:90 msgid "test email settings" @@ -51,15 +51,15 @@ msgstr "E-mail afsendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:282 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:319 msgid "Authentication method" msgstr "" @@ -215,31 +215,31 @@ msgstr "Opdater" msgid "Updated" msgstr "Opdateret" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Vælg et profilbillede" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dekryptere filer... Vent venligst, dette kan tage lang tid. " @@ -336,18 +336,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Sikkerhedsadvarsel" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS." -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -356,68 +356,68 @@ msgid "" "root." msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. " -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Opsætnings Advarsel" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' mangler" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Din PHP-version er forældet" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Din PHP-version er forældet. Vi anbefaler at du opgraderer til 5.3.8 eller nyere, fordi ældre versioner har kendte fejl. Det er derfor muligt at installationen ikke fungerer korrekt." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Landestandard fungerer ikke" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Systemets locale kan ikke sættes til et der bruger UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Det betyder at der kan være problemer med visse tegn i filnavne." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Vi anbefaler at du installerer den krævede pakke på dit system, for at understøtte følgende locales: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Internetforbindelse fungerer ikke" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -426,162 +426,162 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 msgid "Execute one task with each page loaded" msgstr "Udføre en opgave med hver side indlæst" -#: templates/admin.php:171 +#: templates/admin.php:175 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http." -#: templates/admin.php:179 +#: templates/admin.php:183 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Brug systemets cron service til at kalde cron.php hvert 15. minut." -#: templates/admin.php:184 +#: templates/admin.php:188 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:190 +#: templates/admin.php:194 msgid "Enable Share API" msgstr "Aktiver Share API" -#: templates/admin.php:191 +#: templates/admin.php:195 msgid "Allow apps to use the Share API" msgstr "Tillad apps til at bruge Share API" -#: templates/admin.php:198 +#: templates/admin.php:202 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:199 +#: templates/admin.php:203 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer til offentligheden med links" -#: templates/admin.php:207 +#: templates/admin.php:210 msgid "Allow public uploads" msgstr "Tillad offentlig upload" -#: templates/admin.php:208 +#: templates/admin.php:211 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillad brugere at give andre mulighed for at uploade i deres offentligt delte mapper" -#: templates/admin.php:216 +#: templates/admin.php:218 msgid "Allow resharing" msgstr "Tillad videredeling" -#: templates/admin.php:217 +#: templates/admin.php:219 msgid "Allow users to share items shared with them again" msgstr "Tillad brugere at dele elementer delt med dem igen" -#: templates/admin.php:224 +#: templates/admin.php:226 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med alle" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "Allow users to only share with users in their groups" msgstr "Tillad brugere at kun dele med brugerne i deres grupper" -#: templates/admin.php:234 +#: templates/admin.php:236 msgid "Allow mail notification" msgstr "Tillad mail underretninger" -#: templates/admin.php:235 +#: templates/admin.php:237 msgid "Allow user to send mail notification for shared files" msgstr "Tillad brugere at sende mail underretninger for delte filer" -#: templates/admin.php:242 +#: templates/admin.php:244 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:255 +#: templates/admin.php:257 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:259 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tving klienten til at forbinde til %s via en kryptetet forbindelse." -#: templates/admin.php:263 +#: templates/admin.php:265 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang." -#: templates/admin.php:275 +#: templates/admin.php:277 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:279 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:310 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:332 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:336 msgid "Server address" msgstr "Serveradresse" -#: templates/admin.php:338 +#: templates/admin.php:340 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:345 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:346 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:349 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:353 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:354 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:359 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:360 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:390 +#: templates/admin.php:392 msgid "More" msgstr "Mere" -#: templates/admin.php:391 +#: templates/admin.php:393 msgid "Less" msgstr "Mindre" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:399 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:403 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,11 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s" @@ -44,19 +48,6 @@ msgstr "Wartungsmodus ausgeschaltet" msgid "Updated database" msgstr "Datenbank aktualisiert" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Aktualisiere Dateicache, dies könnte eine Weile dauern..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Dateicache aktualisiert" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% erledigt ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Kein Bild oder Datei zur Verfügung gestellt" @@ -306,11 +297,11 @@ msgid "Share" msgstr "Teilen" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -426,19 +417,19 @@ msgstr "Durch ein Passwort geschützt" msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-Mail wurde verschickt" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Warnung" diff --git a/l10n/de/files.po b/l10n/de/files.po index 6b3c99980c..e2f5d51718 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 21:40+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -422,7 +422,3 @@ msgstr "Dateien werden gescannt, bitte warten." #: templates/index.php:108 msgid "Current scanning" msgstr "Scanne" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Dateisystem-Cache wird aktualisiert ..." diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 7f1f1ea276..fea8c13b10 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -297,11 +288,11 @@ msgid "Share" msgstr "Freigeben" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -417,19 +408,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 6d6c99e34c..8c9106e7e2 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index f8c3adfb6d..824000ec11 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -12,13 +12,13 @@ # Mario Siegmann , 2013 # Mirodin , 2013 # SteinQuadrat, 2013 -# traductor , 2013 +# traductor, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -27,7 +27,11 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -44,19 +48,6 @@ msgstr "Wartungsmodus ausgeschaltet" msgid "Updated database" msgstr "Datenbank aktualisiert" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Aktualisiere Dateicache, dies könnte eine Weile dauern..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Dateicache aktualisiert" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -306,11 +297,11 @@ msgid "Share" msgstr "Teilen" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -426,19 +417,19 @@ msgstr "Passwortgeschützt" msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Warnung" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index a34437ec4d..486924cf1b 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -11,13 +11,13 @@ # Marcel Kühlhorn , 2013 # Mirodin , 2013 # SteinQuadrat, 2013 -# traductor , 2013 +# traductor, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -423,7 +423,3 @@ msgstr "Dateien werden gescannt, bitte warten." #: templates/index.php:108 msgid "Current scanning" msgstr "Scanne" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Dateisystem-Cache wird aktualisiert ..." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 8c1f746839..fdf92773ce 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -11,15 +11,15 @@ # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # stefanniedermann , 2014 -# traductor , 2013 +# traductor, 2013 # noxin , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 16:10+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -28,7 +28,11 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "An folgende Benutzer konnte keine E-Mail gesendet werden: %s" @@ -45,19 +49,6 @@ msgstr "Wartungsmodus ausgeschaltet" msgid "Updated database" msgstr "Datenbank aktualisiert" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Aktualisiere Datei-Cache, dies könnte eine Weile dauern..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Datei-Cache aktualisiert" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% erledigt ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Weder Bild noch ein Datei wurden zur Verfügung gestellt" @@ -307,11 +298,11 @@ msgid "Share" msgstr "Teilen" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -427,19 +418,19 @@ msgstr "Passwortgeschützt" msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Warnung" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 7c4185007d..3183c48ba9 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -10,7 +10,7 @@ # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # stefanniedermann , 2014 -# traductor , 2013 +# traductor, 2013 # noxin , 2013 # Mirodin , 2013 # kabum , 2013 @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 21:50+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -425,7 +425,3 @@ msgstr "Dateien werden gescannt, bitte warten." #: templates/index.php:108 msgid "Current scanning" msgstr "Scanne" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Dateisystem-Cache wird aktualisiert ..." diff --git a/l10n/el/core.po b/l10n/el/core.po index 306f08e1df..b864a36680 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 14:13+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,11 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Αδυναμία αποστολής μηνύματος στους ακόλουθους χρήστες: %s" @@ -43,19 +47,6 @@ msgstr "Η κατάσταση συντήρησης απενεργοποιήθη msgid "Updated database" msgstr "Ενημερωμένη βάση δεδομένων" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Ενημέρωση αποθηκευμένων αρχείων, αυτό μπορεί να πάρα πολύ ώρα..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Ενημέρωση αποθηκευμένων αρχείων" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% ολοκληρώθηκαν ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Δεν δόθηκε εικόνα ή αρχείο" @@ -305,11 +296,11 @@ msgid "Share" msgstr "Διαμοιρασμός" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Σφάλμα" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -425,19 +416,19 @@ msgstr "Προστασία με συνθηματικό" msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Το Email απεστάλη " -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Προειδοποίηση" diff --git a/l10n/el/files.po b/l10n/el/files.po index 761c6f0eb4..211efff6ed 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 14:21+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -419,7 +419,3 @@ msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμέν #: templates/index.php:108 msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 6815c6cf78..ee6118c9bb 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -152,55 +143,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -297,11 +288,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -417,19 +408,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 37d98d43f5..bb4ddcd0bf 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 5c62e78672..8db8790c2b 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-18 01:55-0400\n" -"PO-Revision-Date: 2014-03-17 13:07+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,7 +18,11 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Couldn't send mail to following users: %s " @@ -35,19 +39,6 @@ msgstr "Turned off maintenance mode" msgid "Updated database" msgstr "Updated database" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Updating filecache, this may take a really long time..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Updated filecache" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% done ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No image or file provided" @@ -297,11 +288,11 @@ msgid "Share" msgstr "Share" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Error whilst sharing" @@ -417,19 +408,19 @@ msgstr "Password protected" msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email sent" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Warning" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 6952d92459..c1ead14671 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 12:10+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -415,7 +415,3 @@ msgstr "Files are being scanned, please wait." #: templates/index.php:108 msgid "Current scanning" msgstr "Current scanning" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Upgrading filesystem cache..." diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 817aa800c6..427b4ea5ca 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -36,19 +40,6 @@ msgstr "" msgid "Updated database" msgstr "Ĝisdatiĝis datumbazo" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Ĝisdatigante la dosierkaŝmemoron, ĉi tio povas daŭri tro longe..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Ĝisdatiĝis dosierkaŝmemoro" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% plenumiĝis ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -298,11 +289,11 @@ msgid "Share" msgstr "Kunhavigi" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Eraro" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -418,19 +409,19 @@ msgstr "Protektita per pasvorto" msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Averto" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index fb6e725900..1e3d456165 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -415,7 +415,3 @@ msgstr "Dosieroj estas skanataj, bonvolu atendi." #: templates/index.php:108 msgid "Current scanning" msgstr "Nuna skano" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Ĝisdatiĝas dosiersistema kaŝmemoro..." diff --git a/l10n/es/core.po b/l10n/es/core.po index a22496a9b4..6b0bc3f0e6 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 16:21+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,11 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" @@ -48,19 +52,6 @@ msgstr "Modo mantenimiento desactivado" msgid "Updated database" msgstr "Base de datos actualizada" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Actualizando caché de archivos, esto puede tardar bastante tiempo..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Caché de archivos actualizada" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% hecho ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No se especificó ningún archivo o imagen" @@ -310,11 +301,11 @@ msgid "Share" msgstr "Compartir" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Error al compartir" @@ -430,19 +421,19 @@ msgstr "Protegido con contraseña" msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Precaución" diff --git a/l10n/es/files.po b/l10n/es/files.po index fd2b2e2914..d26411a2e1 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 15:31+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -424,7 +424,3 @@ msgstr "Los archivos están siendo escaneados, por favor espere." #: templates/index.php:108 msgid "Current scanning" msgstr "Escaneo actual" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Actualizando caché del sistema de archivos..." diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 70af0aa8cd..22f0e39bd7 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No se pudieron mandar correos a los siguientes usuarios: %s" @@ -36,19 +40,6 @@ msgstr "Modo de mantenimiento desactivado" msgid "Updated database" msgstr "Base de datos actualizada" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Actualizando caché de archivos, esto puede tardar mucho tiempo..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Caché de archivos actualizada" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% hecho ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No se ha proveído de una imágen o archivo." @@ -298,11 +289,11 @@ msgid "Share" msgstr "Compartir" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Error al compartir" @@ -418,19 +409,19 @@ msgstr "Protegido por contraseña" msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "e-mail mandado" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Atención" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index c00c3fc4e3..0c1748fcbc 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -418,7 +418,3 @@ msgstr "Se están escaneando los archivos, por favor esperá." #: templates/index.php:108 msgid "Current scanning" msgstr "Escaneo actual" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Actualizando el cache del sistema de archivos" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 250a11a79b..51a056fa78 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -297,11 +288,11 @@ msgid "Share" msgstr "Compartir" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Ocurrió un error mientras compartía" @@ -417,19 +408,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index d4c99d3cc2..f84895926b 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index a7beb23510..9e1f2bbbe8 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "No se pudo enviar el mensaje a los siguientes usuarios: %s" @@ -34,19 +38,6 @@ msgstr "Modo mantenimiento desactivado" msgid "Updated database" msgstr "Base de datos actualizada" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Actualizando caché de archivos, esto puede tardar bastante tiempo..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Caché de archivos actualizada" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% hecho ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "No se especificó ningún archivo o imagen" @@ -296,11 +287,11 @@ msgid "Share" msgstr "Compartir" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Error al compartir" @@ -416,19 +407,19 @@ msgstr "Protegido con contraseña" msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Precaución" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index c7a1c07b60..650b1bcf3d 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "Los archivos están siendo escaneados, por favor espere." #: templates/index.php:108 msgid "Current scanning" msgstr "Escaneo actual" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Actualizando caché del sistema de archivos..." diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index a04197c64b..593d07bab9 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Kirja saatmine järgnevatele kasutajatele ebaõnnestus: %s " @@ -36,19 +40,6 @@ msgstr "Haldusrežiimis välja lülitatud" msgid "Updated database" msgstr "Uuendatud andmebaas" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Failipuhvri uuendamine, see võib kesta väga kaua..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Uuendatud failipuhver" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% tehtud ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Ühtegi pilti või faili pole pakutud" @@ -298,11 +289,11 @@ msgid "Share" msgstr "Jaga" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Viga" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -418,19 +409,19 @@ msgstr "Parooliga kaitstud" msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-kiri on saadetud" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Hoiatus" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 20d929cc5b..6b573af2fd 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -416,7 +416,3 @@ msgstr "Faile skannitakse, palun oota." #: templates/index.php:108 msgid "Current scanning" msgstr "Praegune skannimine" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Failisüsteemi puhvri uuendamine..." diff --git a/l10n/eu/core.po b/l10n/eu/core.po index f0316298b3..33533a481d 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Ezin izan da posta bidali hurrengo erabiltzaileei: %s" @@ -36,19 +40,6 @@ msgstr "Mantenu modua desgaitu da" msgid "Updated database" msgstr "Datu basea eguneratu da" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Fitxategi katxea eguneratzen, honek oso denbora luzea har dezake..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Fitxategi katxea eguneratu da" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% egina ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Ez da irudi edo fitxategirik zehaztu" @@ -298,11 +289,11 @@ msgid "Share" msgstr "Elkarbanatu" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Errorea" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -418,19 +409,19 @@ msgstr "Pasahitzarekin babestuta" msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Eposta bidalia" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Abisua" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index f976425fee..3950ef86cc 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -416,7 +416,3 @@ msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." #: templates/index.php:108 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Fitxategi sistemaren katxea eguneratzen..." diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index d985c0fe9d..eedbe0ca51 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,11 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index b553d1d733..08dee84c9e 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 439a8dac8b..01c721a900 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -292,11 +283,11 @@ msgid "Share" msgstr "اشتراک‌گذاری" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "خطا" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -412,19 +403,19 @@ msgstr "نگهداری از رمز عبور" msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "ایمیل ارسال شد" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "اخطار" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 4671434af3..9b6b202c14 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -413,7 +413,3 @@ msgstr "پرونده ها در حال بازرسی هستند لطفا صبر ک #: templates/index.php:108 msgid "Current scanning" msgstr "بازرسی کنونی" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "بهبود فایل سیستمی ذخیره گاه..." diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index dce24a5f3a..3be019119c 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:00+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,11 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Sähköpostin lähetys seuraaville käyttäjille epäonnistui: %s" @@ -37,19 +41,6 @@ msgstr "Ylläpitotila laitettu pois päältä" msgid "Updated database" msgstr "Tietokanta ajan tasalla" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Päivitetään tiedostojen välimuistia, tämä saattaa kestää todella kauan..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Tiedostojen välimuisti päivitetty" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% valmis ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Kuvaa tai tiedostoa ei määritelty" @@ -299,11 +290,11 @@ msgid "Share" msgstr "Jaa" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Virhe" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -419,19 +410,19 @@ msgstr "Salasanasuojattu" msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Sähköposti lähetetty" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Varoitus" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 1001b8b3cb..c1779a2cd1 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 12:50+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -417,7 +417,3 @@ msgstr "Tiedostoja tarkistetaan, odota hetki." #: templates/index.php:108 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Päivitetään tiedostojärjestelmän välimuistia..." diff --git a/l10n/fr/core.po b/l10n/fr/core.po index b26ffd4ad5..6eae9f9e3d 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: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 16:21+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +25,11 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Impossible d'envoyer un mail aux utilisateurs suivant : %s" @@ -42,19 +46,6 @@ msgstr "Basculé en mode production (non maintenance)" msgid "Updated database" msgstr "Base de données mise à jour" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "En cours de mise à jour de cache de fichiers. Cette opération peut être très longue..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Cache de fichier mis à jour" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% effectué ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Aucune image ou fichier fourni" @@ -304,11 +295,11 @@ msgid "Share" msgstr "Partager" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Erreur" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -424,19 +415,19 @@ msgstr "Protégé par un mot de passe" msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email envoyé" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Attention" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 4003c9d990..0460422401 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 15:59+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -419,7 +419,3 @@ msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." #: templates/index.php:108 msgid "Current scanning" msgstr "Analyse en cours" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Mise à niveau du cache du système de fichier" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index 4f7c1524a6..fee0be178f 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/fr_CA/files.po b/l10n/fr_CA/files.po index 345fad56c8..37eb098e71 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 1791618bf1..1c9a36d6c5 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 09:40+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,11 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Non é posíbel enviar correo aos usuarios seguintes: %s" @@ -36,19 +40,6 @@ msgstr "Modo de mantemento desactivado" msgid "Updated database" msgstr "Base de datos actualizada" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Actualizando o ficheiro da caché, isto pode levar bastante tempo..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Ficheiro da caché actualizado" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% feito ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Non forneceu ningunha imaxe ou ficheiro" @@ -298,11 +289,11 @@ msgid "Share" msgstr "Compartir" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -418,19 +409,19 @@ msgstr "Protexido con contrasinal" msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Correo enviado" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Aviso" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index b598f3836b..d9c74f926a 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 09:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -416,7 +416,3 @@ msgstr "Estanse analizando os ficheiros. Agarde." #: templates/index.php:108 msgid "Current scanning" msgstr "Análise actual" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Anovando a caché do sistema de ficheiros..." diff --git a/l10n/he/core.po b/l10n/he/core.po index 81a10302c0..88cbcf55a0 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -36,19 +40,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -298,11 +289,11 @@ msgid "Share" msgstr "שתף" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "שגיאה" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -418,19 +409,19 @@ msgstr "מוגן בססמה" msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "אזהרה" diff --git a/l10n/he/files.po b/l10n/he/files.po index 42fec93447..872d1669a4 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -416,7 +416,3 @@ msgstr "הקבצים נסרקים, נא להמתין." #: templates/index.php:108 msgid "Current scanning" msgstr "הסריקה הנוכחית" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 92da840161..cb2648372a 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -36,19 +40,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -298,11 +289,11 @@ msgid "Share" msgstr "साझा करें" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "त्रुटि" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -418,19 +409,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "चेतावनी " diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 5a0c1ce275..6405316b8b 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 66cf63915e..71c9a19e1a 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -301,11 +292,11 @@ msgid "Share" msgstr "Podijeli" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -421,19 +412,19 @@ msgstr "Zaštita lozinkom" msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 5348b43b4a..1f5a7f6813 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -417,7 +417,3 @@ msgstr "Datoteke se skeniraju, molimo pričekajte." #: templates/index.php:108 msgid "Current scanning" msgstr "Trenutno skeniranje" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 1c3c267efd..21e109571e 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -20,7 +20,11 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nem sikerült e-mailt küldeni a következő felhasználóknak: %s" @@ -37,19 +41,6 @@ msgstr "A karbantartási mód kikapcsolva" msgid "Updated database" msgstr "Frissítet adatbázis" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "A filecache frissítése folyamatban, ez a folyamat hosszabb ideig is eltarthat..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Filecache frissítve" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% kész ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Nincs kép vagy file megadva" @@ -299,11 +290,11 @@ msgid "Share" msgstr "Megosztás" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Hiba" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -419,19 +410,19 @@ msgstr "Jelszóval van védve" msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Az emailt elküldtük" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Figyelmeztetés" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index c46c0f9cfc..4e61476239 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -416,7 +416,3 @@ msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" #: templates/index.php:108 msgid "Current scanning" msgstr "Ellenőrzés alatt" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "A fájlrendszer gyorsítótárának frissítése zajlik..." diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 38e96911df..31a916c5d2 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index a943621793..86f00de0be 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 51d7fa2a3a..cf720752ab 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "Compartir" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 2417161d13..7f1089dd46 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index f237c9fe53..7420fbb40e 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Tidak dapat mengirim Email ke pengguna berikut: %s" @@ -34,19 +38,6 @@ msgstr "Matikan mode perawatan" msgid "Updated database" msgstr "Basis data terbaru" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Memperbarui filecache, mungkin memerlukan waktu sangat lama..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Filecache terbaru" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% selesai ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Tidak ada gambar atau file yang disediakan" @@ -291,11 +282,11 @@ msgid "Share" msgstr "Bagikan" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Galat" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -411,19 +402,19 @@ msgstr "Sandi dilindungi" msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Galat ketika mengatur tanggal kedaluwarsa" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email terkirim" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Peringatan" diff --git a/l10n/id/files.po b/l10n/id/files.po index 1631142feb..f9f4fcb3c4 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -412,7 +412,3 @@ msgstr "Berkas sedang dipindai, silakan tunggu." #: templates/index.php:108 msgid "Current scanning" msgstr "Yang sedang dipindai" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Meningkatkan tembolok sistem berkas..." diff --git a/l10n/is/core.po b/l10n/is/core.po index b9f3932a04..86fd036873 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -297,11 +288,11 @@ msgid "Share" msgstr "Deila" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Villa" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -417,19 +408,19 @@ msgstr "Verja með lykilorði" msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Tölvupóstur sendur" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Aðvörun" diff --git a/l10n/is/files.po b/l10n/is/files.po index 9d53e5fa54..6195518730 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." #: templates/index.php:108 msgid "Current scanning" msgstr "Er að skima" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/it/core.po b/l10n/it/core.po index 0be4361890..4182eed81e 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 23:00+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,11 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Impossibile inviare email ai seguenti utenti: %s" @@ -38,19 +42,6 @@ msgstr "Modalità di manutenzione disattivata" msgid "Updated database" msgstr "Database aggiornato" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Aggiornamento della cache dei file in corso, potrebbe richiedere molto tempo..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Cache dei file aggiornata" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% completato ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Non è stata fornita alcun immagine o file" @@ -300,11 +291,11 @@ msgid "Share" msgstr "Condividi" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Errore" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -420,19 +411,19 @@ msgstr "Protetta da password" msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Messaggio inviato" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Avviso" diff --git a/l10n/it/files.po b/l10n/it/files.po index 95cfef54cb..5422d6a6af 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 22:50+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -416,7 +416,3 @@ msgstr "Scansione dei file in corso, attendi" #: templates/index.php:108 msgid "Current scanning" msgstr "Scansione corrente" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Aggiornamento della cache del filesystem in corso..." diff --git a/l10n/ja/core.po b/l10n/ja/core.po index 20a5b0e910..fe7fae7375 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-11 13:20+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -23,7 +23,11 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "次のユーザーにメールを送信できませんでした: %s" @@ -40,19 +44,6 @@ msgstr "メンテナンスモードがオフになりました" msgid "Updated database" msgstr "データベース更新完了" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "ファイルキャッシュを更新しています、しばらく掛かる恐れがあります..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "ファイルキャッシュ更新完了" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% 完了 ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "画像もしくはファイルが提供されていません" @@ -297,11 +288,11 @@ msgid "Share" msgstr "共有" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "エラー" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -417,19 +408,19 @@ msgstr "パスワード保護" msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "メールを送信しました" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "警告" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index a42d1d2c0e..519d9c9856 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 08:10+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -418,7 +418,3 @@ msgstr "ファイルをスキャンしています、しばらくお待ちくだ #: templates/index.php:108 msgid "Current scanning" msgstr "スキャン中" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "ファイルシステムキャッシュを更新中..." diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 9dccaa194c..9e63d8c727 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "გაზიარება" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "შეცდომა" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -411,19 +402,19 @@ msgstr "პაროლით დაცული" msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "იმეილი გაიგზავნა" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "გაფრთხილება" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 29de6f2008..40699657de 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "მიმდინარეობს ფაილების სკა #: templates/index.php:108 msgid "Current scanning" msgstr "მიმდინარე სკანირება" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "ფაილური სისტემის ქეშის განახლება...." diff --git a/l10n/km/core.po b/l10n/km/core.po index dc01eae97b..fd327b6b87 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -292,11 +283,11 @@ msgid "Share" msgstr "ចែក​រំលែក" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "កំហុស" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "កំហុស​ពេល​ចែក​រំលែក" @@ -412,19 +403,19 @@ msgstr "បាន​ការ​ពារ​ដោយ​ពាក្យ​សម msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "កំពុង​ផ្ញើ ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "បាន​ផ្ញើ​អ៊ីមែល" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "បម្រាម" diff --git a/l10n/km/files.po b/l10n/km/files.po index 06bd6601cf..becad9cf51 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: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 12:10+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 815d82a300..71bdd203c7 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,51 +142,51 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -411,19 +402,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index b5edb6c6c4..7d748ebfa9 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 5c80144d57..df45516eac 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-17 01:55-0400\n" -"PO-Revision-Date: 2014-03-16 20:30+0000\n" -"Last-Translator: Harim Park \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +24,11 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "%s 님에게 메일을 보낼 수 없습니다." @@ -41,19 +45,6 @@ msgstr "유지 보수 모드 꺼짐" msgid "Updated database" msgstr "데이터베이스 업데이트 됨" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "파일 캐시 업데이트 중, 시간이 약간 걸릴 수 있습니다..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "파일 캐시 업데이트 됨" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% 완료됨 ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "이미지나 파일이 없음" @@ -298,11 +289,11 @@ msgid "Share" msgstr "공유" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "오류" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -418,19 +409,19 @@ msgstr "암호로 보호됨" msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "이메일 발송됨" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "경고" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 03bac6149a..9681abac20 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -417,7 +417,3 @@ msgstr "파일을 검색하고 있습니다. 기다려 주십시오." #: templates/index.php:108 msgid "Current scanning" msgstr "현재 검색" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "파일 시스템 캐시 업그레이드 중..." diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 07561eda0e..4d24de7048 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "هاوبەشی کردن" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "هه‌ڵه" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "ئاگاداری" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 3a8e0eb38f..64de8738b2 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 155b77ea47..e5f9b24757 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -36,19 +40,6 @@ msgstr "Maintenance Modus ass aus" msgid "Updated database" msgstr "Datebank ass geupdate ginn" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "De Fichier Cache gëtt geupdate, des ka laang daueren..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "De Fichier Cache ass geupdate ginn" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% fäerdeg ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Kee Bild oder Fichier uginn" @@ -298,11 +289,11 @@ msgid "Share" msgstr "Deelen" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Feeler" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -418,19 +409,19 @@ msgstr "Passwuertgeschützt" msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email geschéckt" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Warnung" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 40414cb093..5250863214 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "Fichieren gi gescannt, war weg." #: templates/index.php:108 msgid "Current scanning" msgstr "Momentane Scan" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 2117fdda97..2481455e47 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -22,7 +22,11 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nepavyko nusiųsti el. pašto šiems naudotojams: %s " @@ -39,19 +43,6 @@ msgstr "Išjungta priežiūros veiksena" msgid "Updated database" msgstr "Atnaujinta duomenų bazė" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Atnaujinama failų talpykla, tai gali užtrukti labai ilgai..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Atnaujinta failų talpykla" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% atlikta ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Nenurodytas paveikslėlis ar failas" @@ -306,11 +297,11 @@ msgid "Share" msgstr "Dalintis" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Klaida" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -426,19 +417,19 @@ msgstr "Apsaugota slaptažodžiu" msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Laiškas išsiųstas" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Įspėjimas" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 5d51db9219..c035027897 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -420,7 +420,3 @@ msgstr "Skenuojami failai, prašome palaukti." #: templates/index.php:108 msgid "Current scanning" msgstr "Šiuo metu skenuojama" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Atnaujinamas sistemos kešavimas..." diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 2cfe24a115..2093589936 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -302,11 +293,11 @@ msgid "Share" msgstr "Dalīties" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Kļūda" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -422,19 +413,19 @@ msgstr "Aizsargāts ar paroli" msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Vēstule nosūtīta" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Brīdinājums" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 826191169f..ec7cf61374 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -418,7 +418,3 @@ msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." #: templates/index.php:108 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Uzlabo datņu sistēmas kešatmiņu..." diff --git a/l10n/mk/core.po b/l10n/mk/core.po index fd2b2f5da1..e5dc24f6f4 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "Ислкучен е модот за одржување" msgid "Updated database" msgstr "Базата е надградена" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Кешот е надграден" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Не е доставена фотографија или датотека" @@ -297,11 +288,11 @@ msgid "Share" msgstr "Сподели" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -417,19 +408,19 @@ msgstr "Заштитено со лозинка" msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Е-порака пратена" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Предупредување" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 1849f95987..eaa85a91de 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -415,7 +415,3 @@ msgstr "Се скенираат датотеки, ве молам почекај #: templates/index.php:108 msgid "Current scanning" msgstr "Моментално скенирам" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Го надградувам кешот на фјал системот..." diff --git a/l10n/ml/core.po b/l10n/ml/core.po index be4344073e..139c6776e7 100644 --- a/l10n/ml/core.po +++ b/l10n/ml/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,11 @@ msgstr "" "Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/ml/files.po b/l10n/ml/files.po index 7a752c7674..219f522da5 100644 --- a/l10n/ml/files.po +++ b/l10n/ml/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index dd910ad6e7..99d911ff80 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 48b9d85a03..d8c2c527a1 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/mn/core.po b/l10n/mn/core.po index 3f5f28b461..a3e8df62aa 100644 --- a/l10n/mn/core.po +++ b/l10n/mn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,11 @@ msgstr "" "Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/mn/files.po b/l10n/mn/files.po index fb8cf2278a..7a3e02d962 100644 --- a/l10n/mn/files.po +++ b/l10n/mn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 3efc2ebde6..279cb59e02 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "Kongsi" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Ralat" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -411,19 +402,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Amaran" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 35c736aaa1..2162290bb8 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "Fail sedang diimbas, harap bersabar." #: templates/index.php:108 msgid "Current scanning" msgstr "Imbasan semasa" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 5da8c067d3..fe3df5b237 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -411,19 +402,19 @@ msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 33dff51d05..f61e76675e 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 25e46008d6..bbef6263d3 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -20,7 +20,11 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Klarte ikke å sende mail til følgende brukere: %s" @@ -37,19 +41,6 @@ msgstr "Slo av vedlikeholdsmodus" msgid "Updated database" msgstr "Oppdaterte databasen" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Oppdaterer fil-cache. Dette kan ta veldig lang tid..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Oppdaterte fil-cache" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% ferdig ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Bilde eller fil ikke angitt" @@ -299,11 +290,11 @@ msgid "Share" msgstr "Del" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Feil under deling" @@ -419,19 +410,19 @@ msgstr "Passordbeskyttet" msgid "Error unsetting expiration date" msgstr "Feil ved nullstilling av utløpsdato" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Advarsel" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 8b237c5697..3c1e7eda5b 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -418,7 +418,3 @@ msgstr "Skanner filer, vennligst vent." #: templates/index.php:108 msgid "Current scanning" msgstr "Pågående skanning" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Oppgraderer filsystemets mellomlager..." diff --git a/l10n/nds/core.po b/l10n/nds/core.po index 714f763aa8..fd6f56976f 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/nds/files.po b/l10n/nds/files.po index 0a2a0f0ee4..3d928e1242 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index ad4938a5f7..6e5273cb82 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 28691ff9ae..56d8f5dab4 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index e52f623de0..cfdd8373de 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 18:11+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,11 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Kon geen e-mail sturen aan de volgende gebruikers: %s" @@ -37,19 +41,6 @@ msgstr "Onderhoudsmodus uitgeschakeld" msgid "Updated database" msgstr "Database bijgewerkt" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Bijwerken bestandscache. Dit kan even duren..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Bestandscache bijgewerkt" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% gereed ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Geen afbeelding of bestand opgegeven" @@ -299,11 +290,11 @@ msgid "Share" msgstr "Delen" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -419,19 +410,19 @@ msgstr "Wachtwoord beveiligd" msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-mail verzonden" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Waarschuwing" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 2231577f3f..d386e8bbe5 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 18:21+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -416,7 +416,3 @@ msgstr "Bestanden worden gescand, even wachten." #: templates/index.php:108 msgid "Current scanning" msgstr "Er wordt gescand" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Upgraden bestandssysteem cache..." diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index ca78faa244..5cf7aaafb8 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -20,7 +20,11 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -37,19 +41,6 @@ msgstr "Skrudde av vedlikehaldsmodus" msgid "Updated database" msgstr "Database oppdatert" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Oppdaterer mellomlager; dette kan ta ei god stund …" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Mellomlager oppdatert" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "… %d %% ferdig …" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Inga bilete eller fil gitt" @@ -299,11 +290,11 @@ msgid "Share" msgstr "Del" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Feil ved deling" @@ -419,19 +410,19 @@ msgstr "Passordverna" msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Åtvaring" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 351295c01f..1ce4f87074 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -417,7 +417,3 @@ msgstr "Skannar filer, ver venleg og vent." #: templates/index.php:108 msgid "Current scanning" msgstr "Køyrande skanning" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Oppgraderer mellomlageret av filsystemet …" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index 90bae6db34..aa6353886d 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,51 +142,51 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -411,19 +402,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index 0941d90690..5a44f766a2 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 590cd81594..fce77c4c7f 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "Parteja" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Error al partejar" @@ -416,19 +407,19 @@ msgstr "Parat per senhal" msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index b7d6846e34..f8210485c0 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "Los fiichièrs son a èsser explorats, " #: templates/index.php:108 msgid "Current scanning" msgstr "Exploracion en cors" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 068fbb14e8..ac2849c135 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -297,11 +288,11 @@ msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "ਗਲ" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -417,19 +408,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "ਚੇਤਾਵਨੀ" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index edfe9d88b1..dc8e95181a 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 8beb2e914b..c912c148cf 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 07:21+0000\n" -"Last-Translator: maxxx \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -21,7 +21,11 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nie można było wysłać wiadomości do następujących użytkowników: %s" @@ -38,19 +42,6 @@ msgstr "Wyłączony tryb konserwacji" msgid "Updated database" msgstr "Zaktualizuj bazę" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Aktualizowanie filecache, to może potrwać bardzo długo..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Zaktualizuj filecache" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% udane ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Brak obrazu lub pliku dostarczonego" @@ -305,11 +296,11 @@ msgid "Share" msgstr "Udostępnij" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Błąd" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -425,19 +416,19 @@ msgstr "Zabezpieczone hasłem" msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-mail wysłany" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Ostrzeżenie" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 8c1ba70958..72abe2edbb 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: 2014-03-16 03:12-0400\n" -"PO-Revision-Date: 2014-03-15 14:59+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -423,7 +423,3 @@ msgstr "Skanowanie plików, proszę czekać." #: templates/index.php:108 msgid "Current scanning" msgstr "Aktualnie skanowane" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Uaktualnianie plików pamięci podręcznej..." diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 1fab4b5af5..04951a8a4e 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,11 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Não foi possível enviar e-mail para os seguintes usuários: %s" @@ -36,19 +40,6 @@ msgstr "Desligar o modo de manutenção" msgid "Updated database" msgstr "Atualizar o banco de dados" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Atualizar cahe de arquivos, isto pode levar algum tempo..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Atualizar cache de arquivo" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% concluído ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Nenhuma imagem ou arquivo fornecido" @@ -298,11 +289,11 @@ msgid "Share" msgstr "Compartilhar" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -418,19 +409,19 @@ msgstr "Protegido com senha" msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Aviso" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index c2613ba663..ccefbd75b3 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -417,7 +417,3 @@ msgstr "Arquivos sendo escaneados, por favor aguarde." #: templates/index.php:108 msgid "Current scanning" msgstr "Scanning atual" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Atualizando cache do sistema de arquivos..." diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 62c26f7503..926c0747fd 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -24,7 +24,11 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Não conseguiu enviar correio aos seguintes utilizadores: %s" @@ -41,19 +45,6 @@ msgstr "Desactivado o modo de manutenção" msgid "Updated database" msgstr "Base de dados actualizada" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "A actualizar o cache dos ficheiros, poderá demorar algum tempo..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Actualizado o cache dos ficheiros" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% feito ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Não foi selecionado nenhum ficheiro para importar" @@ -303,11 +294,11 @@ msgid "Share" msgstr "Partilhar" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -423,19 +414,19 @@ msgstr "Protegido com palavra-passe" msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Aviso" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index caa2d759d9..f59532a1a4 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -418,7 +418,3 @@ msgstr "Os ficheiros estão a ser analisados, por favor aguarde." #: templates/index.php:108 msgid "Current scanning" msgstr "Análise actual" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Atualizar cache do sistema de ficheiros..." diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 0afbca8467..dcab9dffb3 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 15:59+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -21,7 +21,11 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -38,19 +42,6 @@ msgstr "" msgid "Updated database" msgstr "Bază de date actualizată" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -305,11 +296,11 @@ msgid "Share" msgstr "Partajează" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Eroare" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -425,19 +416,19 @@ msgstr "Protejare cu parolă" msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Mesajul a fost expediat" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Atenție" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 94933947ee..2558dc5b3f 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 16:03+0000\n" -"Last-Translator: andreiacob \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -424,7 +424,3 @@ msgstr "Fișierele sunt scanate, te rog așteaptă." #: templates/index.php:108 msgid "Current scanning" msgstr "În curs de scanare" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Actualizare fișiere de sistem cache..." diff --git a/l10n/ru/core.po b/l10n/ru/core.po index a3bcdfa87a..b0d2b8bc93 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -33,7 +33,11 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Невозможно отправить письмо следующим пользователям: %s" @@ -50,19 +54,6 @@ msgstr "Режим отладки отключён" msgid "Updated database" msgstr "База данных обновлена" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Обновление файлового кэша, это может занять некоторое время..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Обновлен файловый кэш" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% завершено ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Не указано изображение или файл" @@ -317,11 +308,11 @@ msgid "Share" msgstr "Открыть доступ" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Ошибка" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -437,19 +428,19 @@ msgstr "Защищено паролем" msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Письмо отправлено" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Предупреждение" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 92d1019bc1..d374b2491d 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -428,7 +428,3 @@ msgstr "Подождите, файлы сканируются." #: templates/index.php:108 msgid "Current scanning" msgstr "Текущее сканирование" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Обновление кэша файловой системы..." diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 984cdcbe1e..18d535944c 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "බෙදා හදා ගන්න" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "දෝෂයක්" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "මුර පදයකින් ආරක්ශාකර ඇත" msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "අවවාදය" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 5c70561319..1bdecb0628 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳ #: templates/index.php:108 msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 9ac34b7c25..e2c887550b 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -301,11 +292,11 @@ msgid "Share" msgstr "Zdieľať" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -421,19 +412,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 304ed950fb..bc16f5e101 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -417,7 +417,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 702c9c44ee..8002ba711d 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Nebolo možné odoslať email týmto používateľom: %s " @@ -36,19 +40,6 @@ msgstr "Mód údržby e vypnutý" msgid "Updated database" msgstr "Databáza je aktualizovaná" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Aktualizácia \"filecache\", toto môže trvať dlhšie..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "\"Filecache\" aktualizovaná" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% dokončených ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Obrázok alebo súbor nebol zadaný" @@ -303,11 +294,11 @@ msgid "Share" msgstr "Zdieľať" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -423,19 +414,19 @@ msgstr "Chránené heslom" msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email odoslaný" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Varovanie" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 2bc5aac1a0..fa1a2fde37 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -418,7 +418,3 @@ msgstr "Čakajte, súbory sú prehľadávané." #: templates/index.php:108 msgid "Current scanning" msgstr "Práve prezerané" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Aktualizujem medzipamäť súborového systému..." diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 7375718b19..56f99cd56e 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 19:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,11 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Ni mogoče poslati sporočila za: %s" @@ -36,19 +40,6 @@ msgstr "Vzdrževalni način je onemogočen" msgid "Updated database" msgstr "Posodobljena podatkovna zbirka" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Poteka posodabljanje predpomnilnika datotek. Opravilo je lahko dolgotrajno ..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Predpomnilnik datotek je posodobljen" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% končano ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Ni podane datoteke ali slike" @@ -308,11 +299,11 @@ msgid "Share" msgstr "Souporaba" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Napaka" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -428,19 +419,19 @@ msgstr "Zaščiteno z geslom" msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Napaka nastavljanja datuma preteka" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Elektronska pošta je poslana" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Opozorilo" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 61b6cf26e3..98e94b68b6 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 19:21+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -422,7 +422,3 @@ msgstr "Poteka preučevanje datotek, počakajte ..." #: templates/index.php:108 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Nadgrajevanje predpomnilnika datotečnega sistema ..." diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 83e9196a36..10055ae78a 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -36,19 +40,6 @@ msgstr "Mënyra e mirëmbajtjes u çaktivizua" msgid "Updated database" msgstr "Database-i u azhurnua" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Po azhurnoj memorjen e skedarëve, mund të zgjasi pak..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Memorja e skedarëve u azhornua" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% u krye ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -298,11 +289,11 @@ msgid "Share" msgstr "Nda" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Veprim i gabuar" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -418,19 +409,19 @@ msgstr "Mbrojtur me kod" msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email-i u dërgua" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 0daf7af24d..e13ccd3991 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -416,7 +416,3 @@ msgstr "Skanerizimi i skedarit në proces. Ju lutem prisni." #: templates/index.php:108 msgid "Current scanning" msgstr "Skanimi aktual" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Përditësimi i cache-se së sistemit në procesim..." diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 55cd496525..80c0e0c57c 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -301,11 +292,11 @@ msgid "Share" msgstr "Дели" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -421,19 +412,19 @@ msgstr "Заштићено лозинком" msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Порука је послата" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Упозорење" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 80abf6aa8b..41efd5b4a2 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -417,7 +417,3 @@ msgstr "Скенирам датотеке…" #: templates/index.php:108 msgid "Current scanning" msgstr "Тренутно скенирање" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Дограђујем кеш система датотека…" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index e2d5987455..87e1b0cffe 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 23:21+0000\n" -"Last-Translator: greatbalsa \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,11 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -36,19 +40,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -303,11 +294,11 @@ msgid "Share" msgstr "Podeli" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Greška pri deljenju" @@ -423,19 +414,19 @@ msgstr "Zaštćeno lozinkom" msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email poslat" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 98fa063278..ba91a498ad 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -417,7 +417,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/su/core.po b/l10n/su/core.po index 113cf81cfa..452d2e9780 100644 --- a/l10n/su/core.po +++ b/l10n/su/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,11 @@ msgstr "" "Language: su\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,51 +142,51 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -411,19 +402,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/su/files.po b/l10n/su/files.po index 7ac8a61757..cb2cdbaca3 100644 --- a/l10n/su/files.po +++ b/l10n/su/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -411,7 +411,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 46dd79ac84..68c463aed5 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -24,7 +24,11 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Gick inte att skicka e-post till följande användare: %s" @@ -41,19 +45,6 @@ msgstr "Deaktiverade underhållsläge" msgid "Updated database" msgstr "Uppdaterade databasen" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Uppdaterar filcache, det kan ta lång tid..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Uppdaterade filcache" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% klart ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Ingen bild eller fil har tillhandahållits" @@ -303,11 +294,11 @@ msgid "Share" msgstr "Dela" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Fel" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Fel vid delning" @@ -423,19 +414,19 @@ msgstr "Lösenordsskyddad" msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-post skickat" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Varning" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 58b3f25f83..664d261772 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -422,7 +422,3 @@ msgstr "Filer skannas, var god vänta" #: templates/index.php:108 msgid "Current scanning" msgstr "Aktuell skanning" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Uppgraderar filsystemets cache..." diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 0cd2466a5d..1cc0fd9117 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 7686df53f0..24c934753a 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 911c3f1670..0fa7cc333d 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "பகிர்வு" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "வழு" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -416,19 +407,19 @@ msgstr "கடவுச்சொல் பாதுகாக்கப்பட msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "எச்சரிக்கை" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index fc33ea09f3..325aee00ea 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "கோப்புகள் வருடப்படுகின்ற #: templates/index.php:108 msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/te/core.po b/l10n/te/core.po index dffce6310c..deecf0113f 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -297,11 +288,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "పొరపాటు" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -417,19 +408,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "హెచ్చరిక" diff --git a/l10n/te/files.po b/l10n/te/files.po index e2845bb8c9..962db4331a 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4ed00c9fc1..c01b35df51 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,7 +18,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -35,19 +39,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -297,11 +288,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -417,19 +408,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9aa0ab9820..6f2d8e6b25 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -413,7 +413,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index d93fbf74b5..f68e49c196 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "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 13b11589d3..2b8e4c65b0 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,20 +41,20 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:512 +#: lib/config.php:518 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:516 +#: lib/config.php:522 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:519 +#: lib/config.php:525 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/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 20282edb4f..498b49abd8 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "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 072aabb5c7..d7c83c81a5 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "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 979e5d1aaa..9e824b6c4d 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "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 d12067e969..7edc2ed495 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "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 caf3102069..7cef5398c8 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "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 8e957cdf9b..ba55a900c3 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "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 9edf577b82..21f7fd9bd7 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "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 0575f3413a..0b9740c9a6 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index f92dd54ba4..0e6a31ad15 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "แชร์" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -411,19 +402,19 @@ msgstr "ใส่รหัสผ่านไว้" msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "คำเตือน" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 9f6d9d7744..81b1ace189 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "ไฟล์กำลังอยู่ระหว่างการส #: templates/index.php:108 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..." diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 39d504da9f..9143248048 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 10:51+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,11 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Şu kullanıcılara posta gönderilemedi: %s" @@ -38,19 +42,6 @@ msgstr "Bakım kipi kapatıldı" msgid "Updated database" msgstr "Veritabanı güncellendi" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Dosya önbelleği güncelleniyor. Bu, gerçekten uzun sürebilir." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Dosya önbelleği güncellendi" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "%%%d tamamlandı ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Resim veya dosya belirtilmedi" @@ -300,11 +291,11 @@ msgid "Share" msgstr "Paylaş" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Hata" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -420,19 +411,19 @@ msgstr "Parola korumalı" msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "E-posta gönderildi" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Uyarı" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 70fb73bdcc..b9a6e7a8f6 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 10:51+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -418,7 +418,3 @@ msgstr "Dosyalar taranıyor, lütfen bekleyin." #: templates/index.php:108 msgid "Current scanning" msgstr "Güncel tarama" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Sistem dosyası önbelleği güncelleniyor" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index c5ff6cc7c7..34fc73005c 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/tzm/files.po b/l10n/tzm/files.po index 5ca9c96bb2..77cf857212 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 1cf9849312..47f2c79d9b 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "ھەمبەھىر" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "خاتالىق" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -411,19 +402,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "ئاگاھلاندۇرۇش" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 2fd2b626aa..6af595b22f 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 333afd6314..e64a98b639 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -18,7 +18,11 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Неможливо надіслати пошту наступним користувачам: %s " @@ -35,19 +39,6 @@ msgstr "Вимкнено захищений режим" msgid "Updated database" msgstr "Базу даних оновлено" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Оновлення файлового кешу, це може тривати доволі довго..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Файловий кеш оновлено" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% виконано ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Немає наданого зображення або файлу" @@ -302,11 +293,11 @@ msgid "Share" msgstr "Поділитися" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Помилка" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -422,19 +413,19 @@ msgstr "Захищено паролем" msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Ел. пошта надіслана" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Попередження" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index f71347e458..7a3fd6f1cd 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -418,7 +418,3 @@ msgstr "Файли скануються, зачекайте, будь-ласка #: templates/index.php:108 msgid "Current scanning" msgstr "Поточне сканування" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Оновлення кеша файлової системи..." diff --git a/l10n/ur/core.po b/l10n/ur/core.po index af1797fff0..841019ffa6 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,11 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,55 +142,55 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -416,19 +407,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/ur/files.po b/l10n/ur/files.po index 3469a8e0a9..c8212b63c8 100644 --- a/l10n/ur/files.po +++ b/l10n/ur/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 24d51b764c..0540a0b7c7 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -296,11 +287,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "ایرر" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -416,19 +407,19 @@ msgstr "پاسورڈ سے محفوظ کیا گیا ہے" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 4adcb1d0ec..a30d1be966 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -414,7 +414,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/uz/core.po b/l10n/uz/core.po index 796041e223..550fb51f9d 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -151,51 +142,51 @@ msgstr "" msgid "Saving..." msgstr "" -#: js/js.js:992 +#: js/js.js:995 msgid "seconds ago" msgstr "" -#: js/js.js:993 +#: js/js.js:996 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:994 +#: js/js.js:997 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:995 +#: js/js.js:998 msgid "today" msgstr "" -#: js/js.js:996 +#: js/js.js:999 msgid "yesterday" msgstr "" -#: js/js.js:997 +#: js/js.js:1000 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:998 +#: js/js.js:1001 msgid "last month" msgstr "" -#: js/js.js:999 +#: js/js.js:1002 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1000 +#: js/js.js:1003 msgid "months ago" msgstr "" -#: js/js.js:1001 +#: js/js.js:1004 msgid "last year" msgstr "" -#: js/js.js:1002 +#: js/js.js:1005 msgid "years ago" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "" @@ -411,19 +402,19 @@ msgstr "" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/uz/files.po b/l10n/uz/files.po index 6be022eb5d..a432f0ef9c 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 28aa79291c..71940b1c18 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -21,7 +21,11 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "Không thể gửi thư cho người dùng: %s" @@ -38,19 +42,6 @@ msgstr "Tắt chế độ bảo trì" msgid "Updated database" msgstr "Cơ sở dữ liệu đã được cập nhật" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "Đang cập nhật tập tin bộ nhớ cache, việc này có thể mất nhiều thời gian..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "Đã cập nhật tập tin bộ nhớ cache" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "... %d%% hoàn thành ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "Không có hình ảnh hoặc tập tin được cung cấp" @@ -295,11 +286,11 @@ msgid "Share" msgstr "Chia sẻ" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "Lỗi" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -415,19 +406,19 @@ msgstr "Mật khẩu bảo vệ" msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email đã được gửi" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "Cảnh báo" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index d2c2ef4612..04ec0176f0 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -415,7 +415,3 @@ msgstr "Tập tin đang được quét ,vui lòng chờ." #: templates/index.php:108 msgid "Current scanning" msgstr "Hiện tại đang quét" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..." diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 84c78a196e..f510ad5ce5 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -22,7 +22,11 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "发送失败,用户如下: %s " @@ -39,19 +43,6 @@ msgstr "关闭维护模式" msgid "Updated database" msgstr "数据库已更新" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "正在更新文件缓存,这可能需要较长时间..." - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "文件缓存已更新" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "...已完成 %d%% ..." - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "没有提供图片或文件" @@ -296,11 +287,11 @@ msgid "Share" msgstr "分享" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "错误" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "共享时出错" @@ -416,19 +407,19 @@ msgstr "密码已受保护" msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "邮件已发送" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "警告" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index d58f5cf5a4..11d8394772 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -415,7 +415,3 @@ msgstr "文件正在被扫描,请稍候。" #: templates/index.php:108 msgid "Current scanning" msgstr "当前扫描" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "正在更新文件系统缓存..." diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 6c50550101..ec37a019a1 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -17,7 +17,11 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "" @@ -34,19 +38,6 @@ msgstr "" msgid "Updated database" msgstr "" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "" @@ -291,11 +282,11 @@ msgid "Share" msgstr "分享" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -411,19 +402,19 @@ msgstr "密碼保護" msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "郵件已傳" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 7382af274b..76b4c3ff60 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: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:54+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -411,7 +411,3 @@ msgstr "" #: templates/index.php:108 msgid "Current scanning" msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index bcbda8ad0f..7e121bc984 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -19,7 +19,11 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/share.php:112 ajax/share.php:154 +#: ajax/share.php:88 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:120 ajax/share.php:162 #, php-format msgid "Couldn't send mail to following users: %s " msgstr "無法寄送郵件給這些使用者:%s" @@ -36,19 +40,6 @@ msgstr "已停用維護模式" msgid "Updated database" msgstr "已更新資料庫" -#: ajax/update.php:20 -msgid "Updating filecache, this may take really long..." -msgstr "更新檔案快取,這可能要很久…" - -#: ajax/update.php:23 -msgid "Updated filecache" -msgstr "已更新檔案快取" - -#: ajax/update.php:26 -#, php-format -msgid "... %d%% done ..." -msgstr "已完成 %d%%" - #: avatar/controller.php:62 msgid "No image or file provided" msgstr "未提供圖片或檔案" @@ -293,11 +284,11 @@ msgid "Share" msgstr "分享" #: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 -#: js/share.js:723 templates/installation.php:10 +#: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:755 +#: js/share.js:160 js/share.js:767 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -413,19 +404,19 @@ msgstr "受密碼保護" msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:723 +#: js/share.js:729 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:742 +#: js/share.js:754 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:753 +#: js/share.js:765 msgid "Email sent" msgstr "Email 已寄出" -#: js/share.js:777 +#: js/share.js:789 msgid "Warning" msgstr "警告" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index ec65b56ee8..48abe4ce14 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: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 05: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" @@ -413,7 +413,3 @@ msgstr "正在掃描檔案,請稍等。" #: templates/index.php:108 msgid "Current scanning" msgstr "正在掃描" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "正在升級檔案系統快取…" diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 0f2958f16c..be2dc384c7 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -1,7 +1,14 @@ "ادخال خاطئ لقيمة %s", +"Saved" => "حفظ", +"test email settings" => "إعدادات البريد التجريبي", +"If you received this email, the settings seem to be correct." => "تبدوا الاعدادت صحيحة اذا تلقيت هذا البريد الالكتروني", +"A problem occurred while sending the e-mail. Please revisit your settings." => "حدث خطأ اثناء ارسال البريد الالكتروني ، الرجاء مراجعة اعداداتك", "Email sent" => "تم ارسال البريد الالكتروني", +"Send mode" => "وضعية الإرسال", "Encryption" => "التشفير", +"Authentication method" => "أسلوب التطابق", "Unable to load list from App Store" => "فشل تحميل القائمة من الآب ستور", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Your full name has been changed." => "اسمك الكامل تم تغييره.", @@ -24,6 +31,7 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "خطا في كلمة مرور المسؤول المستردة, يرجى التاكد من كلمة المرور والمحاولة مرة اخرى.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Back-end لا يدعم تغيير كلمة المرور, لاكن مفتاح تشفير المستخدمين تم تحديثة بنجاح.", "Unable to change password" => "لا يمكن تغيير كلمة المرور", +"Sending..." => "جاري الارسال ...", "User Documentation" => "كتاب توثيق المستخدم", "Update to {appversion}" => "تم التحديث الى ", "Disable" => "إيقاف", @@ -37,6 +45,10 @@ $TRANSLATIONS = array( "Update" => "حدث", "Updated" => "تم التحديث بنجاح", "Select a profile picture" => "اختر صورة الملف الشخصي ", +"Very weak password" => "كلمة السر ضعيفة جدا", +"Weak password" => "كلمة السر ضعيفة", +"Good password" => "كلمة السر جيدة", +"Strong password" => "كلمة السر قوية", "Decrypting files... Please wait, this can take some time." => "فك تشفير الملفات... يرجى الانتظار, من الممكن ان ياخذ بعض الوقت.", "deleted" => "تم الحذف", "undo" => "تراجع", @@ -94,6 +106,7 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "فرض HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او تعطيل SSL enforcement.", +"Email Server" => "خادم البريد الالكتروني", "Server address" => "عنوان الخادم", "Log" => "سجل", "Log level" => "مستوى السجل", @@ -104,6 +117,7 @@ $TRANSLATIONS = array( "Add your App" => "أضف تطبيقاتك", "More Apps" => "المزيد من التطبيقات", "Select an App" => "إختر تطبيقاً", +"Documentation:" => "التوثيق", "See application page at apps.owncloud.com" => "راجع صفحة التطبيق على apps.owncloud.com", "-licensed by " => "-ترخيص من قبل ", "Administrator Documentation" => "كتاب توثيق المدير", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 0d1308bc2d..d8ee237bed 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,5 +1,6 @@ "Gemt", "Email sent" => "E-mail afsendt", "Encryption" => "Kryptering", "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", From 51fe3b8ccd316730085f1896205e77cdf38cf57f Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Thu, 20 Mar 2014 10:23:40 +0100 Subject: [PATCH 227/333] Fix 'Undefined variable: message' in OCP\Util::logException --- lib/public/util.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/public/util.php b/lib/public/util.php index 585c5d2263..a159bf1423 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -89,14 +89,11 @@ class Util { */ public static function logException( $app, \Exception $ex ) { $class = get_class($ex); - if ($class !== 'Exception') { - $message = $class . ': '; - } - $message .= $ex->getMessage(); + $message = $class . ': ' . $ex->getMessage(); if ($ex->getCode()) { $message .= ' [' . $ex->getCode() . ']'; } - \OCP\Util::writeLog($app, 'Exception: ' . $message, \OCP\Util::FATAL); + \OCP\Util::writeLog($app, $message, \OCP\Util::FATAL); if (defined('DEBUG') and DEBUG) { // also log stack trace $stack = explode("\n", $ex->getTraceAsString()); From cf23defa5274fdd7d73d7ca3b68c7e366f8f0706 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 20 Mar 2014 12:52:09 +0100 Subject: [PATCH 228/333] Fix typo in mount loading --- apps/files_external/lib/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 9b2cb0d0b0..dbb12ecd9b 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -173,7 +173,7 @@ class OC_Mount_Config { */ public static function initMountPointsHook($data) { $mountPoints = self::getAbsoluteMountPoints($data['user']); - foreach ($mountPoints as $mountPoints => $options) { + foreach ($mountPoints as $mountPoint => $options) { \OC\Files\Filesystem::mount($options['class'], $options['options'], $mountPoint); } } From 6de9033d8655f172320fd092916b51b56b0f8080 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 20 Mar 2014 12:31:36 +0100 Subject: [PATCH 229/333] Added warning for Mac OS on setup page --- core/setup/controller.php | 21 +++++++++++++++++++++ lib/private/util.php | 11 ++++++++++- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/core/setup/controller.php b/core/setup/controller.php index 697408cfb5..bb9c9101fe 100644 --- a/core/setup/controller.php +++ b/core/setup/controller.php @@ -80,6 +80,13 @@ class Controller { return $post; } + /** + * Gathers system information like database type and does + * a few system checks. + * + * @return array of system info, including an "errors" value + * in case of errors/warnings + */ public function getSystemInfo() { $hasSQLite = class_exists('SQLite3'); $hasMySQL = is_callable('mysql_connect'); @@ -122,6 +129,20 @@ class Controller { $htaccessWorking = false; } + if (\OC_Util::runningOnMac()) { + $l10n = \OC_L10N::get('core'); + $themeName = \OC_Util::getTheme(); + $theme = new \OC_Defaults(); + $errors[] = array( + 'error' => $l10n->t( + 'Mac OS X is not supported and %s will not work properly on this platform. ' . + 'Use it at your own risk! ', + $theme->getName() + ), + 'hint' => $l10n->t('For the best results, please consider using a GNU/Linux server instead.') + ); + } + return array( 'hasSQLite' => $hasSQLite, 'hasMySQL' => $hasMySQL, diff --git a/lib/private/util.php b/lib/private/util.php index 70dadb1bef..f72276418b 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -1085,12 +1085,21 @@ class OC_Util { } /** - * @return bool - well are we running on windows or not + * Checks whether the server is running on Windows + * @return bool true if running on Windows, false otherwise */ public static function runningOnWindows() { return (substr(PHP_OS, 0, 3) === "WIN"); } + /** + * Checks whether the server is running on Mac OS X + * @return bool true if running on Mac OS X, false otherwise + */ + public static function runningOnMac() { + return (strtoupper(substr(PHP_OS, 0, 6)) === 'DARWIN'); + } + /** * Handles the case that there may not be a theme, then check if a "default" * theme exists and take that one From 1e4e0cfcd5ddbcb09a17a03d7525d8f3b8ce002f Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 20 Mar 2014 13:21:34 +0100 Subject: [PATCH 230/333] Lazy load phpseclib in ext storage config --- apps/files_external/lib/config.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index dbb12ecd9b..f13b25b2e2 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -24,7 +24,6 @@ set_include_path( get_include_path() . PATH_SEPARATOR . \OC_App::getAppPath('files_external') . '/3rdparty/phpseclib/phpseclib' ); -include('Crypt/AES.php'); /** * Class to configure mount.json globally and for users @@ -703,6 +702,9 @@ class OC_Mount_Config { private static function getCipher() { // note: not caching this to make it thread safe as we'll use // a different IV for each password + if (!class_exists('Crypt_AES', false)) { + include('Crypt/AES.php'); + } $cipher = new Crypt_AES(CRYPT_AES_MODE_CBC); $cipher->setKey(\OCP\Config::getSystemValue('passwordsalt')); return $cipher; From 5747e0e3f98d3c299b0bd46bb77ca7bf6b170312 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 20 Mar 2014 13:26:21 +0100 Subject: [PATCH 231/333] remove executable flag for file-upload.js --- apps/files/js/file-upload.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 apps/files/js/file-upload.js diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js old mode 100755 new mode 100644 From d95fde39248e8c4083c14788fe3a327a60611b47 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 20 Mar 2014 15:24:05 +0100 Subject: [PATCH 232/333] Removed comment --- apps/files_external/lib/config.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index f13b25b2e2..ffbab7bca8 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -700,8 +700,6 @@ class OC_Mount_Config { * Returns the encryption cipher */ private static function getCipher() { - // note: not caching this to make it thread safe as we'll use - // a different IV for each password if (!class_exists('Crypt_AES', false)) { include('Crypt/AES.php'); } From fffe330bbccee617cac6d84d1f4097133de82e44 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 20 Mar 2014 15:32:12 +0100 Subject: [PATCH 233/333] Fix parameter order for Storage\Local::hash --- lib/private/files/storage/local.php | 2 +- lib/private/files/storage/mappedlocal.php | 2 +- tests/lib/files/storage/storage.php | 47 +++++++++++++++-------- 3 files changed, 34 insertions(+), 17 deletions(-) diff --git a/lib/private/files/storage/local.php b/lib/private/files/storage/local.php index a62230bdba..071b12ffbd 100644 --- a/lib/private/files/storage/local.php +++ b/lib/private/files/storage/local.php @@ -256,7 +256,7 @@ if (\OC_Util::runningOnWindows()) { return 0; } - public function hash($path, $type, $raw = false) { + public function hash($type, $path, $raw = false) { return hash_file($type, $this->datadir . $path, $raw); } diff --git a/lib/private/files/storage/mappedlocal.php b/lib/private/files/storage/mappedlocal.php index 1bab3489a2..cb5ab6902e 100644 --- a/lib/private/files/storage/mappedlocal.php +++ b/lib/private/files/storage/mappedlocal.php @@ -276,7 +276,7 @@ class MappedLocal extends \OC\Files\Storage\Common{ return 0; } - public function hash($path, $type, $raw=false) { + public function hash($type, $path, $raw=false) { return hash_file($type, $this->buildPath($path), $raw); } diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index f929175860..f3bfba3feb 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -64,17 +64,17 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { * @dataProvider directoryProvider */ public function testDirectories($directory) { - $this->assertFalse($this->instance->file_exists('/'.$directory)); + $this->assertFalse($this->instance->file_exists('/' . $directory)); - $this->assertTrue($this->instance->mkdir('/'.$directory)); + $this->assertTrue($this->instance->mkdir('/' . $directory)); - $this->assertTrue($this->instance->file_exists('/'.$directory)); - $this->assertTrue($this->instance->is_dir('/'.$directory)); - $this->assertFalse($this->instance->is_file('/'.$directory)); - $this->assertEquals('dir', $this->instance->filetype('/'.$directory)); - $this->assertEquals(0, $this->instance->filesize('/'.$directory)); - $this->assertTrue($this->instance->isReadable('/'.$directory)); - $this->assertTrue($this->instance->isUpdatable('/'.$directory)); + $this->assertTrue($this->instance->file_exists('/' . $directory)); + $this->assertTrue($this->instance->is_dir('/' . $directory)); + $this->assertFalse($this->instance->is_file('/' . $directory)); + $this->assertEquals('dir', $this->instance->filetype('/' . $directory)); + $this->assertEquals(0, $this->instance->filesize('/' . $directory)); + $this->assertTrue($this->instance->isReadable('/' . $directory)); + $this->assertTrue($this->instance->isUpdatable('/' . $directory)); $dh = $this->instance->opendir('/'); $content = array(); @@ -85,13 +85,13 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { } $this->assertEquals(array($directory), $content); - $this->assertFalse($this->instance->mkdir('/'.$directory)); //cant create existing folders - $this->assertTrue($this->instance->rmdir('/'.$directory)); + $this->assertFalse($this->instance->mkdir('/' . $directory)); //cant create existing folders + $this->assertTrue($this->instance->rmdir('/' . $directory)); $this->wait(); - $this->assertFalse($this->instance->file_exists('/'.$directory)); + $this->assertFalse($this->instance->file_exists('/' . $directory)); - $this->assertFalse($this->instance->rmdir('/'.$directory)); //cant remove non existing folders + $this->assertFalse($this->instance->rmdir('/' . $directory)); //cant remove non existing folders $dh = $this->instance->opendir('/'); $content = array(); @@ -103,8 +103,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertEquals(array(), $content); } - public function directoryProvider() - { + public function directoryProvider() { return array( array('folder'), array(' folder'), @@ -113,6 +112,7 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { array('spéciäl földer'), ); } + /** * test the various uses of file_get_contents and file_put_contents */ @@ -298,4 +298,21 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->instance->file_exists('folder/bar')); $this->assertFalse($this->instance->file_exists('folder')); } + + public function hashProvider(){ + return array( + array('Foobar', 'md5'), + array('Foobar', 'sha1'), + array('Foobar', 'sha256'), + ); + } + + /** + * @dataProvider hashProvider + */ + public function testHash($data, $type) { + $this->instance->file_put_contents('hash.txt', $data); + $this->assertEquals(hash($type, $data), $this->instance->hash($type, 'hash.txt')); + $this->assertEquals(hash($type, $data, true), $this->instance->hash($type, 'hash.txt', true)); + } } From ed0c10a10b0b3a9d9d898a64461de707026cd6d3 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Thu, 20 Mar 2014 18:27:40 +0000 Subject: [PATCH 234/333] Enable the use of 'optional' on password fields The logic has been changed, in that 'class="optional"' is applied to both password and text types if the field begins with the optional market, '&'. --- apps/files_external/templates/settings.php | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index de44d3c864..8e9355dd8a 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -44,9 +44,17 @@ $value): ?> - + class="optional" data-parameter="" value="" placeholder="" /> @@ -55,18 +63,13 @@ data-parameter="" checked="checked" /> - - class="optional" data-parameter="" value="" placeholder="" /> From 7a0eccfc63e80ea27188032135560dbb45a1e5cb Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Thu, 20 Mar 2014 18:28:42 +0000 Subject: [PATCH 235/333] Correct field modifier checking Existing code checks for the existence of a modifier ('&', '!', '#', '*') anywhere in the field name, but strips the first character regardless. This change makes it so that only modifiers at the beginning of the string are counted. --- apps/files_external/templates/settings.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 8e9355dd8a..ecbde442de 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -52,18 +52,18 @@ $placeholder = substr($placeholder, 1); } ?> - + class="optional" data-parameter="" value="" placeholder="" /> - + - + From 7c3da27bf6b0a6482e58766f0e15a012827ff130 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Thu, 20 Mar 2014 20:38:06 +0000 Subject: [PATCH 236/333] Fix duplicate ipauniqueid --- apps/user_ldap/lib/access.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 70270a2523..4d187bab8d 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -1065,7 +1065,7 @@ class Access extends LDAPUtility { } //for now, supported attributes are entryUUID, nsuniqueid, objectGUID, ipaUniqueID - $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid', 'ipauniqueid', 'ipauniqueid'); + $testAttributes = array('entryuuid', 'nsuniqueid', 'objectguid', 'guid', 'ipauniqueid'); foreach($testAttributes as $attribute) { $value = $this->readAttribute($dn, $attribute); From bcf388d3c5b7a7838c9b3d5eb5acdc8da501aaec Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 21 Mar 2014 01:55:35 -0400 Subject: [PATCH 237/333] [tx-robot] updated from transifex --- apps/user_ldap/l10n/ar.php | 1 + core/l10n/en_GB.php | 1 + core/l10n/es.php | 1 + core/l10n/fi_FI.php | 1 + core/l10n/gl.php | 1 + core/l10n/it.php | 1 + core/l10n/nl.php | 1 + core/l10n/pl.php | 1 + core/l10n/pt_BR.php | 1 + core/l10n/tr.php | 1 + l10n/ar/settings.po | 6 +-- l10n/ar/user_ldap.po | 6 +-- l10n/cs_CZ/settings.po | 6 +-- l10n/en_GB/core.po | 8 ++-- l10n/es/core.po | 8 ++-- l10n/fi_FI/core.po | 8 ++-- l10n/gl/core.po | 8 ++-- l10n/it/core.po | 8 ++-- l10n/nl/core.po | 8 ++-- l10n/pl/core.po | 10 ++--- l10n/pt_BR/core.po | 8 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 70 ++++++++++++++--------------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 8 ++-- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 6 +-- l10n/templates/private.pot | 6 +-- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/tr/core.po | 8 ++-- settings/l10n/ar.php | 1 + settings/l10n/cs_CZ.php | 1 + 36 files changed, 111 insertions(+), 99 deletions(-) diff --git a/apps/user_ldap/l10n/ar.php b/apps/user_ldap/l10n/ar.php index 8438c31f23..a2152dde85 100644 --- a/apps/user_ldap/l10n/ar.php +++ b/apps/user_ldap/l10n/ar.php @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "Save" => "حفظ", "Help" => "المساعدة", "Host" => "المضيف", +"Port" => "المنفذ", "Password" => "كلمة المرور", "Back" => "رجوع", "Email Field" => "خانة البريد الإلكتروني" diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index a8f36deff3..7e2d5b8e91 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -1,5 +1,6 @@ "Expiration date is in the past.", "Couldn't send mail to following users: %s " => "Couldn't send mail to following users: %s ", "Turned on maintenance mode" => "Turned on maintenance mode", "Turned off maintenance mode" => "Turned off maintenance mode", diff --git a/core/l10n/es.php b/core/l10n/es.php index 32de51d912..7794914fc9 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -1,5 +1,6 @@ "La fecha de caducidad está en el pasado.", "Couldn't send mail to following users: %s " => "No se pudo enviar el mensaje a los siguientes usuarios: %s", "Turned on maintenance mode" => "Modo mantenimiento activado", "Turned off maintenance mode" => "Modo mantenimiento desactivado", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index e86ce1c2fb..0af7503ee9 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,5 +1,6 @@ "Päättymispäivä on menneisyydessä.", "Couldn't send mail to following users: %s " => "Sähköpostin lähetys seuraaville käyttäjille epäonnistui: %s", "Turned on maintenance mode" => "Siirrytty ylläpitotilaan", "Turned off maintenance mode" => "Ylläpitotila laitettu pois päältä", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 30730a72d6..7811e62e0b 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -1,5 +1,6 @@ "A data de caducidade está no pasado.", "Couldn't send mail to following users: %s " => "Non é posíbel enviar correo aos usuarios seguintes: %s", "Turned on maintenance mode" => "Modo de mantemento activado", "Turned off maintenance mode" => "Modo de mantemento desactivado", diff --git a/core/l10n/it.php b/core/l10n/it.php index fb9746d76c..86b664d616 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,5 +1,6 @@ "La data di scadenza è nel passato.", "Couldn't send mail to following users: %s " => "Impossibile inviare email ai seguenti utenti: %s", "Turned on maintenance mode" => "Modalità di manutenzione attivata", "Turned off maintenance mode" => "Modalità di manutenzione disattivata", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 68fd3d2c38..77e1dff586 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,5 +1,6 @@ "De vervaldatum ligt in het verleden.", "Couldn't send mail to following users: %s " => "Kon geen e-mail sturen aan de volgende gebruikers: %s", "Turned on maintenance mode" => "Onderhoudsmodus ingeschakeld", "Turned off maintenance mode" => "Onderhoudsmodus uitgeschakeld", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 8f53c802f6..e1b97a4b24 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -1,5 +1,6 @@ "Data wygaśnięcia jest w przeszłości", "Couldn't send mail to following users: %s " => "Nie można było wysłać wiadomości do następujących użytkowników: %s", "Turned on maintenance mode" => "Włączony tryb konserwacji", "Turned off maintenance mode" => "Wyłączony tryb konserwacji", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index ee69583151..a0fa7b14d2 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -1,5 +1,6 @@ "A data de vencimento passou.", "Couldn't send mail to following users: %s " => "Não foi possível enviar e-mail para os seguintes usuários: %s", "Turned on maintenance mode" => "Ativar modo de manutenção", "Turned off maintenance mode" => "Desligar o modo de manutenção", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index b0f4a463dc..bd717ef8d9 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,5 +1,6 @@ "Son kullanma tarihi geçmişte.", "Couldn't send mail to following users: %s " => "Şu kullanıcılara posta gönderilemedi: %s", "Turned on maintenance mode" => "Bakım kipi etkinleştirildi", "Turned off maintenance mode" => "Bakım kipi kapatıldı", diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 693e98aa31..06d399baad 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-19 06:40+0000\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 11:40+0000\n" "Last-Translator: m.shehab \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -538,7 +538,7 @@ msgstr "عنوان الخادم" #: templates/admin.php:340 msgid "Port" -msgstr "" +msgstr "المنفذ" #: templates/admin.php:345 msgid "Credentials" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index b2c76070de..7b68c2ffef 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-19 06:30+0000\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 11:40+0000\n" "Last-Translator: m.shehab \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -244,7 +244,7 @@ msgstr "" #: templates/part.wizard-server.php:36 msgid "Port" -msgstr "" +msgstr "المنفذ" #: templates/part.wizard-server.php:44 msgid "User DN" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 459232cb5a..a4e5a0e16c 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 21:40+0000\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 21:20+0000\n" "Last-Translator: m23 \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "Uloženo" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "nastavení zkušebního emailu" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 8db8790c2b..08258961c6 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 12:40+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Expiration date is in the past." #: ajax/share.php:120 ajax/share.php:162 #, php-format diff --git a/l10n/es/core.po b/l10n/es/core.po index 6b0bc3f0e6..3286a21a8e 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 17:41+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,7 +33,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "La fecha de caducidad está en el pasado." #: ajax/share.php:120 ajax/share.php:162 #, php-format diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 3be019119c..d0456dcd74 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 11:20+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Päättymispäivä on menneisyydessä." #: ajax/share.php:120 ajax/share.php:162 #, php-format diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 1c9a36d6c5..6b3b02246f 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 11:03+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "A data de caducidade está no pasado." #: ajax/share.php:120 ajax/share.php:162 #, php-format diff --git a/l10n/it/core.po b/l10n/it/core.po index 4182eed81e..1597098ae1 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 21:10+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +23,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "La data di scadenza è nel passato." #: ajax/share.php:120 ajax/share.php:162 #, php-format diff --git a/l10n/nl/core.po b/l10n/nl/core.po index cfdd8373de..4e33e23483 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 08:20+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "De vervaldatum ligt in het verleden." #: ajax/share.php:120 ajax/share.php:162 #, php-format diff --git a/l10n/pl/core.po b/l10n/pl/core.po index c912c148cf..acc4f191f2 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -5,15 +5,15 @@ # Translators: # Cyryl Sochacki , 2013 # maxxx , 2014 -# bobie , 2013 +# bobie , 2013-2014 # adbrand , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 06:30+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +23,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Data wygaśnięcia jest w przeszłości" #: ajax/share.php:120 ajax/share.php:162 #, php-format diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 04951a8a4e..622c8b621c 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 11:03+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "A data de vencimento passou." #: ajax/share.php:120 ajax/share.php:162 #, php-format diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index c01b35df51..f1d502bbbb 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 6f2d8e6b25..9bc1bdb810 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,65 +18,65 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index f68e49c196..6894e1524b 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "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 2b8e4c65b0..f26ae03711 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,20 +41,20 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:518 +#: lib/config.php:631 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:522 +#: lib/config.php:635 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:525 +#: lib/config.php:638 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/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 498b49abd8..af07b6635e 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "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 d7c83c81a5..87c92807a5 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "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 9e824b6c4d..6b0f82618f 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "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 7edc2ed495..503a0af0b8 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -268,13 +268,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index 7cef5398c8..bd2a744879 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -261,13 +261,13 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index ba55a900c3..623f7f46dc 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "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 21f7fd9bd7..b048f76047 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "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 0b9740c9a6..3b0553eec2 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 9143248048..19871ad9dd 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"PO-Revision-Date: 2014-03-20 09:00+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +23,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Son kullanma tarihi geçmişte." #: ajax/share.php:120 ajax/share.php:162 #, php-format diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index be2dc384c7..cdc689a211 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -108,6 +108,7 @@ $TRANSLATIONS = array( "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او تعطيل SSL enforcement.", "Email Server" => "خادم البريد الالكتروني", "Server address" => "عنوان الخادم", +"Port" => "المنفذ", "Log" => "سجل", "Log level" => "مستوى السجل", "More" => "المزيد", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 778a05bd5e..1d9a554f3c 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,6 +1,7 @@ "Uloženo", +"test email settings" => "nastavení zkušebního emailu", "Email sent" => "E-mail odeslán", "Encryption" => "Šifrování", "Authentication method" => "Metoda autentifikace", From c9d97d2ef22ca8b07f692a93f16619f7316d7d8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 21 Mar 2014 11:56:47 +0100 Subject: [PATCH 238/333] add top:45px to position:fixed controls, fixes alignment on android 4.0.4 browser --- core/css/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/core/css/styles.css b/core/css/styles.css index 69cf6df07d..af7f6dfd58 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -246,6 +246,7 @@ input[type="submit"].enabled { -webkit-box-sizing: border-box; box-sizing: border-box; position: fixed; + top:45px; right: 0; left: 0; height: 44px; From 7a8f1389fec7db92e1da4f4d46bf0b2737bd3482 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 21 Mar 2014 13:23:14 +0100 Subject: [PATCH 239/333] fix temporary file based common hash --- lib/private/files/storage/common.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/private/files/storage/common.php b/lib/private/files/storage/common.php index 3c078d7b1b..2b69714151 100644 --- a/lib/private/files/storage/common.php +++ b/lib/private/files/storage/common.php @@ -160,8 +160,7 @@ abstract class Common implements \OC\Files\Storage\Storage { public function hash($type, $path, $raw = false) { $tmpFile = $this->getLocalFile($path); - $hash = hash($type, $tmpFile, $raw); - unlink($tmpFile); + $hash = hash_file($type, $tmpFile, $raw); return $hash; } From ecf52e05fb9e88910167351dfa75bde5db2267ae Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 14:30:11 +0100 Subject: [PATCH 240/333] mobile: adjust width of app title, fix overlap --- core/css/mobile.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/css/mobile.css b/core/css/mobile.css index 56bee8f8a3..6665b95f27 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -54,7 +54,7 @@ display: inline-block; } #navigation a { - width: 70px; + width: 80px; height: 80px; display: inline-block; text-align: center; @@ -65,7 +65,7 @@ font-size: 13px; padding-bottom: 0; padding-left: 0; - width: initial; + width: 80px; } #navigation .icon { margin: 0 auto; From 40c20b2eebed45be56cf554b904fe2d7510ed448 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 14:34:05 +0100 Subject: [PATCH 241/333] mobile: remove shift for multiselect bar to account for missing navigation --- apps/files/css/mobile.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 00c4630ea6..225448e5ab 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -13,6 +13,11 @@ table td.date { display: none; } +/* remove shift for multiselect bar to account for missing navigation */ +table.multiselect thead { + padding-left: 0; +} + /* restrict length of displayed filename to prevent overflow */ table td.filename .nametext { max-width: 75% !important; From c4e7d7989a94ec974842120544a9510a56d70319 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Fri, 21 Mar 2014 13:51:45 +0000 Subject: [PATCH 242/333] Enable the use of 'optional' on password fields (JavaScript part) See ed0c10a10b0b3a9d9d898a64461de707026cd6d3 --- apps/files_external/js/settings.js | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index cd2a3103eb..0fceb41c0a 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -181,16 +181,21 @@ $(document).ready(function() { $.each(configurations, function(backend, parameters) { if (backend == backendClass) { $.each(parameters['configuration'], function(parameter, placeholder) { - if (placeholder.indexOf('*') != -1) { - td.append(''); - } else if (placeholder.indexOf('!') != -1) { + var is_optional = false; + if (placeholder.indexOf('&') === 0) { + is_optional = true; + placeholder = placeholder.substring(1); + } + if (placeholder.indexOf('*') === 0) { + var class_string = is_optional ? ' class="optional"' : ''; + td.append(''); + else if (placeholder.indexOf('!') === 0) { td.append(''); - } else if (placeholder.indexOf('&') != -1) { - td.append(''); - } else if (placeholder.indexOf('#') != -1) { + else if (placeholder.indexOf('#') === 0) { td.append(''); - } else { - td.append(''); + else { + var class_string = is_optional ? ' class="optional"' : ''; + td.append(''); } }); if (parameters['custom'] && $('#externalStorage tbody tr.'+backendClass.replace(/\\/g, '\\\\')).length == 1) { From 96e6cb3db4a97a1397dc56d3d1c1a5131e45b972 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 21 Mar 2014 15:00:25 +0100 Subject: [PATCH 243/333] all authentication apps are loaded at first - everything else relies on these apps --- lib/base.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index d02d9e1d26..40729f0511 100644 --- a/lib/base.php +++ b/lib/base.php @@ -549,7 +549,8 @@ class OC { // Load minimum set of apps - which is filesystem, authentication and logging if (!self::checkUpgrade(false)) { - OC_App::loadApps(array('filesystem', 'authentication', 'logging')); + OC_App::loadApps(array('authentication')); + OC_App::loadApps(array('filesystem', 'logging')); } //setup extra user backends From 055a09e487c2c6fedaa213a11434f9a985e12423 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Mar 2014 15:27:51 +0100 Subject: [PATCH 244/333] On clone create a new instance of the Configuration To avide effects on the original instance of Connection when the clone is modified, for instance on authentication checks. --- apps/user_ldap/lib/connection.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index b2075748a3..08ac4ac626 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -78,6 +78,8 @@ class Connection extends LDAPUtility { //a cloned instance inherits the connection resource. It may use it, //but it may not disconnect it $this->dontDestruct = true; + $this->configuration = new Configuration($this->configPrefix, + !is_null($this->configID)); } public function __get($name) { From c6aefada71097d2baf7db36b4829e7f6b258ea95 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 15:29:37 +0100 Subject: [PATCH 245/333] do not show Deleted Files on mobile, not optimized yet and button too long --- apps/files/css/mobile.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 225448e5ab..221c23e5ad 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -5,6 +5,11 @@ min-width: initial !important; } +/* do not show Deleted Files on mobile, not optimized yet and button too long */ +#controls #trash { + display: none; +} + /* hide size and date columns */ table th#headerSize, table td.filesize, From 86d479cb28bcfc4fe7c665930b7954dcbe579e79 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Mar 2014 15:29:49 +0100 Subject: [PATCH 246/333] Use array_key_exists instead of isset, because the latter returns false if the assigned value is null --- apps/user_ldap/lib/configuration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/lib/configuration.php b/apps/user_ldap/lib/configuration.php index 612a623e91..d42b1c0582 100644 --- a/apps/user_ldap/lib/configuration.php +++ b/apps/user_ldap/lib/configuration.php @@ -119,9 +119,9 @@ class Configuration { $cta = $this->getConfigTranslationArray(); foreach($config as $inputkey => $val) { - if(strpos($inputkey, '_') !== false && isset($cta[$inputkey])) { + if(strpos($inputkey, '_') !== false && array_key_exists($inputkey, $cta)) { $key = $cta[$inputkey]; - } elseif(isset($this->config[$inputkey])) { + } elseif(array_key_exists($inputkey, $this->config)) { $key = $inputkey; } else { continue; From 422ccf4cdb7558cea6c3c92cca3c5ea4ce192f44 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 21 Mar 2014 15:31:30 +0100 Subject: [PATCH 247/333] add test for cloning and keeping configuration seperate --- apps/user_ldap/tests/connection.php | 54 +++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 apps/user_ldap/tests/connection.php diff --git a/apps/user_ldap/tests/connection.php b/apps/user_ldap/tests/connection.php new file mode 100644 index 0000000000..f51b0c8301 --- /dev/null +++ b/apps/user_ldap/tests/connection.php @@ -0,0 +1,54 @@ +. +* +*/ + +namespace OCA\user_ldap\tests; + +class Test_Connection extends \PHPUnit_Framework_TestCase { + + public function testOriginalAgentUnchangedOnClone() { + //background: upon login a bind is done with the user credentials + //which is valid for the whole LDAP resource. It needs to be reset + //to the agent's credentials + $lw = $this->getMock('\OCA\user_ldap\lib\ILDAPWrapper'); + + $connection = new \OCA\user_ldap\lib\Connection($lw, '', null); + $agent = array( + 'ldapAgentName' => 'agent', + 'ldapAgentPassword' => '123456', + ); + $connection->setConfiguration($agent); + + $testConnection = clone $connection; + $user = array( + 'ldapAgentName' => 'user', + 'ldapAgentPassword' => 'password', + ); + $testConnection->setConfiguration($user); + + $agentName = $connection->ldapAgentName; + $agentPawd = $connection->ldapAgentPassword; + + $this->assertSame($agentName, $agent['ldapAgentName']); + $this->assertSame($agentPawd, $agent['ldapAgentPassword']); + } + +} \ No newline at end of file From f2566e649ffd944dd5dfea3ba38124fef9472ed8 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 16:36:45 +0100 Subject: [PATCH 248/333] mobile: adjust break to 768, also fix min-widths --- apps/files/css/files.css | 2 +- apps/files/css/mobile.css | 2 +- core/css/mobile.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index af863aca33..a463eb51d8 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -77,7 +77,7 @@ } /* make sure there's enough room for the file actions */ #body-user #filestable { - min-width: 750px; + min-width: 688px; } #body-user #controls { min-width: 600px; diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 221c23e5ad..087bb1f836 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -1,4 +1,4 @@ -@media only screen and (max-width: 600px) { +@media only screen and (max-width: 768px) { /* don’t require a minimum width for files table */ #body-user #filestable { diff --git a/core/css/mobile.css b/core/css/mobile.css index 6665b95f27..dbe1c55a56 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -1,4 +1,4 @@ -@media only screen and (max-width: 600px) { +@media only screen and (max-width: 768px) { /* show caret indicator next to logo to make clear it is tappable */ #owncloud.menutoggle { From 9b9b6ec31eac005f98bf38e691f81812335544e9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 16:40:39 +0100 Subject: [PATCH 249/333] mobile: set a width for navigation popover to it's always 3 columns --- core/css/mobile.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/css/mobile.css b/core/css/mobile.css index dbe1c55a56..c67ac3e5ec 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -34,8 +34,7 @@ #navigation { top: 45px; bottom: initial; - width: 90%; - max-width: 320px; + width: 255px; max-height: 90%; margin-top: 0; top: 45px; From 89ee5511580b7e9f5619961b12cd96b984b6b6e9 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 16:43:04 +0100 Subject: [PATCH 250/333] mobile: adjust breakpoint in JS as well --- core/js/js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/js.js b/core/js/js.js index 121a4062d3..3c169cfb21 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1013,7 +1013,7 @@ function initCore() { if (!OC._matchMedia) { return; } - var mq = OC._matchMedia('(max-width: 600px)'); + var mq = OC._matchMedia('(max-width: 768px)'); var lastMatch = mq.matches; var $toggle = $('#header #owncloud'); var $navigation = $('#navigation'); From 905aabf5d41b0830cc2754229c39be709479ed7b Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 21 Mar 2014 16:43:40 +0100 Subject: [PATCH 251/333] mobile: document min-width value --- apps/files/css/files.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index a463eb51d8..1bac5d2b7d 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -77,10 +77,10 @@ } /* make sure there's enough room for the file actions */ #body-user #filestable { - min-width: 688px; + min-width: 688px; /* 768 (mobile break) - 80 (nav width) */ } #body-user #controls { - min-width: 600px; + min-width: 688px; /* 768 (mobile break) - 80 (nav width) */ } #filestable tbody tr { background-color:#fff; height:40px; } From 66c4fc04b8c0bcbd861fba84ab0729ad66e54472 Mon Sep 17 00:00:00 2001 From: mh Date: Fri, 21 Mar 2014 16:50:23 +0100 Subject: [PATCH 252/333] use https as submodule url git:// domains might not be allowed in all environments, while cloning https through a proxy is fine. -> Make checkout in restrictive environments possible. --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index b9c1a3702c..bc2beee81a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "3rdparty"] path = 3rdparty - url = git://github.com/owncloud/3rdparty.git + url = https://github.com/owncloud/3rdparty.git From e6b4d28229da406b621da61183568a6a1de11cd7 Mon Sep 17 00:00:00 2001 From: kondou Date: Fri, 21 Mar 2014 20:27:22 +0100 Subject: [PATCH 253/333] Move success/error squircles to settings --- apps/files_external/css/settings.css | 7 ------- settings/css/settings.css | 9 +++++++++ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index 11aeb10184..1d3489f7f5 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -4,13 +4,6 @@ td.status > span { width: 16px; vertical-align: text-bottom; } -span.success { - background: #37ce02; - border-radius: 8px; -} -span.error { - background: #ce3702; -} td.mountPoint, td.backend { width:160px; } td.remove>img { visibility:hidden; padding-top:13px; } diff --git a/settings/css/settings.css b/settings/css/settings.css index 249ee1949f..280d022af4 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -178,6 +178,15 @@ table.shareAPI td { padding-bottom: 0.8em; } vertical-align: text-bottom; } +span.success { + background: #37ce02; + border-radius: 8px; +} + +span.error { + background: #ce3702; +} + /* HELP */ .pressed {background-color:#DDD;} From 0245e64cece49201211b6cfb37e21526a80d0c07 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 22 Mar 2014 01:56:09 -0400 Subject: [PATCH 254/333] [tx-robot] updated from transifex --- apps/files_external/l10n/pt_PT.php | 1 + core/l10n/de.php | 1 + core/l10n/de_DE.php | 1 + core/l10n/sl.php | 1 + l10n/ach/core.po | 16 +++++- l10n/ady/core.po | 16 +++++- l10n/af/core.po | 16 +++++- l10n/af_ZA/core.po | 16 +++++- l10n/ak/core.po | 16 +++++- l10n/ar/core.po | 16 +++++- l10n/az/core.po | 16 +++++- l10n/be/core.po | 16 +++++- l10n/bg_BG/core.po | 16 +++++- l10n/bn_BD/core.po | 16 +++++- l10n/bs/core.po | 16 +++++- l10n/ca/core.po | 16 +++++- l10n/cs_CZ/core.po | 16 +++++- l10n/cy_GB/core.po | 16 +++++- l10n/da/core.po | 16 +++++- l10n/de/core.po | 20 +++++-- l10n/de/settings.po | 87 +++++++++++++++-------------- l10n/de_AT/core.po | 16 +++++- l10n/de_CH/core.po | 16 +++++- l10n/de_DE/core.po | 20 +++++-- l10n/el/core.po | 16 +++++- l10n/en@pirate/core.po | 16 +++++- l10n/en_GB/core.po | 18 +++++- l10n/eo/core.po | 16 +++++- l10n/es/core.po | 18 +++++- l10n/es_AR/core.po | 16 +++++- l10n/es_CL/core.po | 16 +++++- l10n/es_MX/core.po | 16 +++++- l10n/et_EE/core.po | 16 +++++- l10n/eu/core.po | 16 +++++- l10n/eu_ES/core.po | 16 +++++- l10n/fa/core.po | 16 +++++- l10n/fi_FI/core.po | 18 +++++- l10n/fr/core.po | 16 +++++- l10n/fr_CA/core.po | 16 +++++- l10n/gl/core.po | 18 +++++- l10n/he/core.po | 16 +++++- l10n/hi/core.po | 16 +++++- l10n/hr/core.po | 16 +++++- l10n/hu_HU/core.po | 16 +++++- l10n/hy/core.po | 16 +++++- l10n/ia/core.po | 16 +++++- l10n/id/core.po | 16 +++++- l10n/is/core.po | 16 +++++- l10n/it/core.po | 18 +++++- l10n/ja/core.po | 16 +++++- l10n/ka_GE/core.po | 16 +++++- l10n/km/core.po | 16 +++++- l10n/kn/core.po | 16 +++++- l10n/ko/core.po | 16 +++++- l10n/ku_IQ/core.po | 16 +++++- l10n/lb/core.po | 16 +++++- l10n/lt_LT/core.po | 16 +++++- l10n/lv/core.po | 16 +++++- l10n/mk/core.po | 16 +++++- l10n/ml/core.po | 16 +++++- l10n/ml_IN/core.po | 16 +++++- l10n/mn/core.po | 16 +++++- l10n/ms_MY/core.po | 16 +++++- l10n/my_MM/core.po | 16 +++++- l10n/nb_NO/core.po | 16 +++++- l10n/nds/core.po | 16 +++++- l10n/ne/core.po | 16 +++++- l10n/nl/core.po | 18 +++++- l10n/nn_NO/core.po | 16 +++++- l10n/nqo/core.po | 16 +++++- l10n/oc/core.po | 16 +++++- l10n/pa/core.po | 16 +++++- l10n/pl/core.po | 18 +++++- l10n/pt_BR/core.po | 18 +++++- l10n/pt_PT/core.po | 16 +++++- l10n/pt_PT/files_external.po | 15 ++--- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 16 +++++- l10n/ru/core.po | 16 +++++- l10n/si_LK/core.po | 16 +++++- l10n/sk/core.po | 16 +++++- l10n/sk_SK/core.po | 16 +++++- l10n/sl/core.po | 18 +++++- l10n/sq/core.po | 16 +++++- l10n/sr/core.po | 16 +++++- l10n/sr@latin/core.po | 16 +++++- l10n/su/core.po | 16 +++++- l10n/sv/core.po | 16 +++++- l10n/sw_KE/core.po | 16 +++++- l10n/ta_LK/core.po | 16 +++++- l10n/te/core.po | 16 +++++- l10n/templates/core.pot | 13 ++++- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 16 +++++- l10n/tr/core.po | 18 +++++- l10n/tzm/core.po | 16 +++++- l10n/ug/core.po | 16 +++++- l10n/uk/core.po | 16 +++++- l10n/ur/core.po | 16 +++++- l10n/ur_PK/core.po | 16 +++++- l10n/uz/core.po | 16 +++++- l10n/vi/core.po | 16 +++++- l10n/zh_CN/core.po | 16 +++++- l10n/zh_HK/core.po | 16 +++++- l10n/zh_TW/core.po | 16 +++++- settings/l10n/de.php | 2 +- 116 files changed, 1440 insertions(+), 271 deletions(-) diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index e331d55726..eb4d8feb41 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -22,6 +22,7 @@ $TRANSLATIONS = array( "Users" => "Utilizadores", "Delete" => "Eliminar", "Enable User External Storage" => "Activar Armazenamento Externo para o Utilizador", +"Allow users to mount the following external storage" => "Permitir que os utilizadores montem o seguinte armazenamento externo", "SSL root certificates" => "Certificados SSL de raiz", "Import Root Certificate" => "Importar Certificado Root" ); diff --git a/core/l10n/de.php b/core/l10n/de.php index 38092b9925..f1952d8131 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,5 +1,6 @@ "Ablaufdatum liegt in der Vergangenheit.", "Couldn't send mail to following users: %s " => "Die E-Mail konnte nicht an folgende Benutzer gesendet werden: %s", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index b704ab81a1..a8b74ff450 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,5 +1,6 @@ "Ablaufdatum liegt in der Vergangenheit.", "Couldn't send mail to following users: %s " => "An folgende Benutzer konnte keine E-Mail gesendet werden: %s", "Turned on maintenance mode" => "Wartungsmodus eingeschaltet ", "Turned off maintenance mode" => "Wartungsmodus ausgeschaltet", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 51a4c7d2e2..2cfdfd1189 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -1,5 +1,6 @@ "Datum preteka je v preteklosti.", "Couldn't send mail to following users: %s " => "Ni mogoče poslati sporočila za: %s", "Turned on maintenance mode" => "Vzdrževalni način je omogočen", "Turned off maintenance mode" => "Vzdrževalni način je onemogočen", diff --git a/l10n/ach/core.po b/l10n/ach/core.po index fd76946448..3640708d6e 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ady/core.po b/l10n/ady/core.po index 3595cbff3f..a686756ba9 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/af/core.po b/l10n/af/core.po index 101475a4c7..94d53b7357 100644 --- a/l10n/af/core.po +++ b/l10n/af/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index aa1182d724..1edc5b40a1 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "Nuwe wagwoord" msgid "Reset password" msgstr "Herstel wagwoord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persoonlik" diff --git a/l10n/ak/core.po b/l10n/ak/core.po index f6cfe7040f..f498dda78d 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index ce9440bbe6..81f7cae440 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -555,6 +555,18 @@ msgstr "كلمات سر جديدة" msgid "Reset password" msgstr "تعديل كلمة السر" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "شخصي" diff --git a/l10n/az/core.po b/l10n/az/core.po index 1a5b86d9bd..d27ed545d6 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/be/core.po b/l10n/be/core.po index effb684e29..b654e238ac 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -544,6 +544,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 1b04afa78a..efbfc64d66 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -534,6 +534,18 @@ msgstr "Нова парола" msgid "Reset password" msgstr "Нулиране на парола" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Лични" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 289807abe8..de745e7cda 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "নতুন কূটশব্দ" msgid "Reset password" msgstr "কূটশব্দ পূনঃনির্ধারণ কর" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "ব্যক্তিগত" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 1ec7d92c27..fe90076c0d 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -538,6 +538,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 5307cf0d57..dfc3d89db0 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -536,6 +536,18 @@ msgstr "Contrasenya nova" msgid "Reset password" msgstr "Reinicialitza la contrasenya" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index f9c88aad9f..651e3e43f1 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -546,6 +546,18 @@ msgstr "Nové heslo" msgid "Reset password" msgstr "Obnovit heslo" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osobní" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 232e585fe0..68a772c1cb 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -544,6 +544,18 @@ msgstr "Cyfrinair newydd" msgid "Reset password" msgstr "Ailosod cyfrinair" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personol" diff --git a/l10n/da/core.po b/l10n/da/core.po index 8e2aaca4f4..a9a754b660 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -540,6 +540,18 @@ msgstr "Nyt kodeord" msgid "Reset password" msgstr "Nulstil kodeord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personligt" diff --git a/l10n/de/core.po b/l10n/de/core.po index a5bc3ac654..3d00935f83 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -6,7 +6,7 @@ # arkascha , 2013 # I Robot, 2013 # Marcel Kühlhorn , 2013 -# Mario Siegmann , 2013 +# Mario Siegmann , 2013-2014 # JamFX , 2013 # ninov , 2013 # Pwnicorn , 2013 @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -29,7 +29,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Ablaufdatum liegt in der Vergangenheit." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -543,6 +543,18 @@ msgstr "Neues Passwort" msgid "Reset password" msgstr "Passwort zurücksetzen" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persönlich" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 64f6540e12..9a552305f9 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -4,6 +4,7 @@ # # Translators: # arkascha , 2013 +# I Robot, 2014 # Mario Siegmann , 2013-2014 # ninov , 2013 # Pwnicorn , 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 11:20+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-21 11:10+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,15 +56,15 @@ msgstr "E-Mail wurde verschickt" msgid "You need to set your user email before being able to send test emails." msgstr "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E-Mail verschicken kannst." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:282 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:319 msgid "Authentication method" msgstr "Authentifizierungsmethode" @@ -219,31 +220,31 @@ msgstr "Aktualisierung durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Wähle ein Profilbild" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Sehr schwaches Passwort" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Schwaches Passwort" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Durchschnittliches Passwort" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Gutes Passwort" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Starkes Passwort" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -468,124 +469,124 @@ msgstr "Erlaubt Links" msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:211 +#: templates/admin.php:210 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:212 +#: templates/admin.php:211 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt es Benutzern, andere Benutzer einzurichten, dass diese in deren öffentlich freigegebenen Ordner hochladen dürfen" -#: templates/admin.php:220 +#: templates/admin.php:218 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:221 +#: templates/admin.php:219 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:228 +#: templates/admin.php:226 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:231 +#: templates/admin.php:229 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:238 +#: templates/admin.php:236 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:239 +#: templates/admin.php:237 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:246 +#: templates/admin.php:244 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:259 +#: templates/admin.php:257 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:259 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:267 +#: templates/admin.php:265 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:279 +#: templates/admin.php:277 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:281 +#: templates/admin.php:279 msgid "This is used for sending out notifications." msgstr "Dies wird zum Senden von Benachrichtigungen verwendet." -#: templates/admin.php:312 +#: templates/admin.php:310 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:334 +#: templates/admin.php:332 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:338 +#: templates/admin.php:336 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:342 +#: templates/admin.php:340 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:345 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:348 +#: templates/admin.php:346 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:351 +#: templates/admin.php:349 msgid "SMTP Password" msgstr "SMTP Passwor" -#: templates/admin.php:355 +#: templates/admin.php:353 msgid "Test email settings" msgstr "Teste E-Mail-Einstellunge" -#: templates/admin.php:356 +#: templates/admin.php:354 msgid "Send email" msgstr "Sende E-Mail" -#: templates/admin.php:361 +#: templates/admin.php:359 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:360 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:394 +#: templates/admin.php:392 msgid "More" msgstr "Mehr" -#: templates/admin.php:395 +#: templates/admin.php:393 msgid "Less" msgstr "Weniger" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:399 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:403 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the %s of the available %s" -msgstr "Du verwendest %s der verfügbaren %s" +msgstr "Du verwendest %s der verfügbaren %s" #: templates/personal.php:39 templates/users.php:21 templates/users.php:87 msgid "Password" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index fea8c13b10..1134976fb2 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -534,6 +534,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persönlich" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 824000ec11..bb41b4f03b 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -543,6 +543,18 @@ msgstr "Neues Passwort" msgid "Reset password" msgstr "Passwort zurücksetzen" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persönlich" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index fdf92773ce..5e6727521d 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -9,7 +9,7 @@ # I Robot, 2014 # lysathor, 2014 # Marcel Kühlhorn , 2013 -# Mario Siegmann , 2013 +# Mario Siegmann , 2013-2014 # stefanniedermann , 2014 # traductor, 2013 # noxin , 2013 @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -30,7 +30,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Ablaufdatum liegt in der Vergangenheit." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -544,6 +544,18 @@ msgstr "Neues Passwort" msgid "Reset password" msgstr "Passwort zurücksetzen" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persönlich" diff --git a/l10n/el/core.po b/l10n/el/core.po index b864a36680..54906380cd 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -542,6 +542,18 @@ msgstr "Νέο συνθηματικό" msgid "Reset password" msgstr "Επαναφορά συνθηματικού" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Προσωπικά" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index ee6118c9bb..90ddc87e52 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -534,6 +534,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 08258961c6..305fa77f83 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 12:40+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -534,6 +534,18 @@ msgstr "New password" msgid "Reset password" msgstr "Reset password" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 427b4ea5ca..c6fd33cd86 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -535,6 +535,18 @@ msgstr "Nova pasvorto" msgid "Reset password" msgstr "Rekomenci la pasvorton" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persona" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3286a21a8e..4b9ed3614f 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 17:41+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -547,6 +547,18 @@ msgstr "Nueva contraseña" msgid "Reset password" msgstr "Restablecer contraseña" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 22f0e39bd7..3250550af8 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -535,6 +535,18 @@ msgstr "Nueva contraseña:" msgid "Reset password" msgstr "Restablecer contraseña" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 51a056fa78..e028df6bb6 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -534,6 +534,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 9e1f2bbbe8..7486794d9d 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "Nueva contraseña" msgid "Reset password" msgstr "Restablecer contraseña" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 593d07bab9..55a2016cd4 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -535,6 +535,18 @@ msgstr "Uus parool" msgid "Reset password" msgstr "Nulli parool" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Isiklik" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 33533a481d..caf5ea8071 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -535,6 +535,18 @@ msgstr "Pasahitz berria" msgid "Reset password" msgstr "Berrezarri pasahitza" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pertsonala" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index eedbe0ca51..d2c3ce4ab9 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pertsonala" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 01c721a900..f16b1d2870 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -529,6 +529,18 @@ msgstr "گذرواژه جدید" msgid "Reset password" msgstr "دوباره سازی گذرواژه" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "شخصی" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index d0456dcd74..5a16422984 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -536,6 +536,18 @@ msgstr "Uusi salasana" msgid "Reset password" msgstr "Palauta salasana" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Henkilökohtainen" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 6eae9f9e3d..ac43181e22 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -541,6 +541,18 @@ msgstr "Nouveau mot de passe" msgid "Reset password" msgstr "Réinitialiser le mot de passe" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personnel" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index fee0be178f..a2dc9cb668 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 6b3b02246f..47a673c961 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:03+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -535,6 +535,18 @@ msgstr "Novo contrasinal" msgid "Reset password" msgstr "Restabelecer o contrasinal" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persoal" diff --git a/l10n/he/core.po b/l10n/he/core.po index 88cbcf55a0..41af2ccd47 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -535,6 +535,18 @@ msgstr "ססמה חדשה" msgid "Reset password" msgstr "איפוס ססמה" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "אישי" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index cb2648372a..ed9d8a2cc5 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -535,6 +535,18 @@ msgstr "नया पासवर्ड" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "यक्तिगत" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 71c9a19e1a..cc5099c80a 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -538,6 +538,18 @@ msgstr "Nova lozinka" msgid "Reset password" msgstr "Poništavanje lozinke" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osobno" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 21e109571e..954685a032 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -536,6 +536,18 @@ msgstr "Az új jelszó" msgid "Reset password" msgstr "Jelszó-visszaállítás" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Személyes" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 31a916c5d2..eee6695972 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index cf720752ab..8f19872d14 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "Nove contrasigno" msgid "Reset password" msgstr "Reinitialisar contrasigno" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/id/core.po b/l10n/id/core.po index 7420fbb40e..40cd13bd6d 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "Sandi baru" msgid "Reset password" msgstr "Atur ulang sandi" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pribadi" diff --git a/l10n/is/core.po b/l10n/is/core.po index 86fd036873..42cbfba8d3 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -534,6 +534,18 @@ msgstr "Nýtt lykilorð" msgid "Reset password" msgstr "Endursetja lykilorð" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Um mig" diff --git a/l10n/it/core.po b/l10n/it/core.po index 1597098ae1..5998f476d3 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 21:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -537,6 +537,18 @@ msgstr "Nuova password" msgid "Reset password" msgstr "Ripristina la password" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personale" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index fe7fae7375..3876516000 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -534,6 +534,18 @@ msgstr "新しいパスワードを入力" msgid "Reset password" msgstr "パスワードをリセット" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "個人" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 9e63d8c727..2f9ec267e3 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "ახალი პაროლი" msgid "Reset password" msgstr "პაროლის შეცვლა" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "პირადი" diff --git a/l10n/km/core.po b/l10n/km/core.po index fd327b6b87..740792ba4c 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -529,6 +529,18 @@ msgstr "ពាក្យ​សម្ងាត់​ថ្មី" msgid "Reset password" msgstr "កំណត់​ពាក្យ​សម្ងាត់​ម្ដង​ទៀត" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "ផ្ទាល់​ខ្លួន" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 71bdd203c7..26a5f9246e 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index df45516eac..4d28ccc174 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -535,6 +535,18 @@ msgstr "새 암호" msgid "Reset password" msgstr "암호 재설정" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "개인" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 4d24de7048..305363b858 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "وشەی نهێنی نوێ" msgid "Reset password" msgstr "دووباره‌ كردنه‌وه‌ی وشه‌ی نهێنی" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index e5f9b24757..aea34c2568 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -535,6 +535,18 @@ msgstr "Neit Passwuert" msgid "Reset password" msgstr "Passwuert zréck setzen" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Perséinlech" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 2481455e47..5a431dd644 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -543,6 +543,18 @@ msgstr "Naujas slaptažodis" msgid "Reset password" msgstr "Atkurti slaptažodį" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Asmeniniai" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 2093589936..fb37ca57ae 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -539,6 +539,18 @@ msgstr "Jauna parole" msgid "Reset password" msgstr "Mainīt paroli" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personīgi" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index e5dc24f6f4..9f3faff144 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -534,6 +534,18 @@ msgstr "Нова лозинка" msgid "Reset password" msgstr "Ресетирај лозинка" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Лично" diff --git a/l10n/ml/core.po b/l10n/ml/core.po index 139c6776e7..15de395bd8 100644 --- a/l10n/ml/core.po +++ b/l10n/ml/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 99d911ff80..20f6eaa8db 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/mn/core.po b/l10n/mn/core.po index a3e8df62aa..a9b5d68e76 100644 --- a/l10n/mn/core.po +++ b/l10n/mn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 279cb59e02..6ddccd56f8 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "Kata laluan baru" msgid "Reset password" msgstr "Penetapan semula kata laluan" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Peribadi" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index fe3df5b237..822acd25a9 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "စကားဝှက်အသစ်" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index bbef6263d3..7eb62b952f 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -536,6 +536,18 @@ msgstr "Nytt passord" msgid "Reset password" msgstr "Tilbakestill passord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personlig" diff --git a/l10n/nds/core.po b/l10n/nds/core.po index fd6f56976f..648e46df30 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 6e5273cb82..0de88d8e9f 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 4e33e23483..34b83e74f0 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 08:20+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -536,6 +536,18 @@ msgstr "Nieuw wachtwoord" msgid "Reset password" msgstr "Reset wachtwoord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Persoonlijk" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 5cf7aaafb8..bde8baeea2 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -536,6 +536,18 @@ msgstr "Nytt passord" msgid "Reset password" msgstr "Nullstill passord" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personleg" diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index aa6353886d..fca384c25d 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index fce77c4c7f..152d585a7a 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "Senhal novèl" msgid "Reset password" msgstr "Senhal tornat botar" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index ac2849c135..b6b1af47d5 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -534,6 +534,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index acc4f191f2..2a734f085e 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 06:30+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -542,6 +542,18 @@ msgstr "Nowe hasło" msgid "Reset password" msgstr "Zresetuj hasło" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osobiste" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 622c8b621c..c71bb28831 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:03+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -535,6 +535,18 @@ msgstr "Nova senha" msgid "Reset password" msgstr "Redefinir senha" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pessoal" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 926c0747fd..30a03fb0c3 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -540,6 +540,18 @@ msgstr "Nova palavra-chave" msgid "Reset password" msgstr "Repor password" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Pessoal" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index f89145893c..607236cb2e 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -4,14 +4,15 @@ # # Translators: # Mouxy , 2013 +# Helder Meneses , 2014 # jmruas , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-16 03:12-0400\n" -"PO-Revision-Date: 2014-03-15 16:30+0000\n" -"Last-Translator: jmruas \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-21 10:30+0000\n" +"Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,20 +44,20 @@ msgstr "Erro ao configurar o armazenamento do Google Drive" msgid "Saved" msgstr "Guardado" -#: lib/config.php:512 +#: lib/config.php:631 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." -#: lib/config.php:516 +#: lib/config.php:635 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 "Aviso: O suporte FTP no PHP não está activate ou instalado. Não é possível montar as partilhas FTP. Peça ao seu administrador para instalar." -#: lib/config.php:519 +#: lib/config.php:638 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -118,7 +119,7 @@ msgstr "Activar Armazenamento Externo para o Utilizador" #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Permitir que os utilizadores montem o seguinte armazenamento externo" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index d22b1d6943..db90a11684 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-21 11:41+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index dcab9dffb3..970eadbc86 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -542,6 +542,18 @@ msgstr "Noua parolă" msgid "Reset password" msgstr "Resetează parola" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personal" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index b0d2b8bc93..1c955e4977 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -23,8 +23,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -554,6 +554,18 @@ msgstr "Новый пароль" msgid "Reset password" msgstr "Сбросить пароль" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Личное" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 18d535944c..d52d4ae389 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "නව මුරපදය" msgid "Reset password" msgstr "මුරපදය ප්‍රත්‍යාරම්භ කරන්න" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "පෞද්ගලික" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index e2c887550b..72d438e715 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -538,6 +538,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osobné" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 8002ba711d..4a51239c72 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -540,6 +540,18 @@ msgstr "Nové heslo" msgid "Reset password" msgstr "Obnovenie hesla" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osobné" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 56f99cd56e..ddd78cae32 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Datum preteka je v preteklosti." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -545,6 +545,18 @@ msgstr "Novo geslo" msgid "Reset password" msgstr "Ponastavi geslo" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Osebno" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 10055ae78a..adf1767891 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -535,6 +535,18 @@ msgstr "Kodi i ri" msgid "Reset password" msgstr "Rivendos kodin" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personale" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 80c0e0c57c..0b51c7f639 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -538,6 +538,18 @@ msgstr "Нова лозинка" msgid "Reset password" msgstr "Ресетуј лозинку" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Лично" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 87e1b0cffe..19ec071703 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -540,6 +540,18 @@ msgstr "Nova lozinka" msgid "Reset password" msgstr "Resetuj lozinku" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Lično" diff --git a/l10n/su/core.po b/l10n/su/core.po index 452d2e9780..a30711bcf7 100644 --- a/l10n/su/core.po +++ b/l10n/su/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -528,6 +528,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 68c463aed5..09583d597e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -540,6 +540,18 @@ msgstr "Nytt lösenord" msgid "Reset password" msgstr "Återställ lösenordet" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Personligt" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 1cc0fd9117..69c0afe6ac 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 0fa7cc333d..18b304ba11 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "புதிய கடவுச்சொல்" msgid "Reset password" msgstr "மீளமைத்த கடவுச்சொல்" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "தனிப்பட்ட" diff --git a/l10n/te/core.po b/l10n/te/core.po index deecf0113f..7387068662 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -534,6 +534,18 @@ msgstr "కొత్త సంకేతపదం" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "వ్యక్తిగతం" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index f1d502bbbb..69cc01c096 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -534,6 +534,17 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9bc1bdb810..f23857d5e3 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 6894e1524b..89bf51c4f3 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "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 f26ae03711..65ca968dae 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "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 af07b6635e..1562bd1ccc 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "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 87c92807a5..1435f3c19c 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "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 6b0f82618f..06ef4258a7 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "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 503a0af0b8..dfb50a7b88 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "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 bd2a744879..bc504b54f5 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "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 623f7f46dc..f34c944042 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "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 b048f76047..cf7d4a80bd 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "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 3b0553eec2..64808cc5bd 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 0e6a31ad15..cea1f81421 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "รหัสผ่านใหม่" msgid "Reset password" msgstr "เปลี่ยนรหัสผ่าน" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "ส่วนตัว" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 19871ad9dd..e1bf625b9c 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 09:00+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -537,6 +537,18 @@ msgstr "Yeni parola" msgid "Reset password" msgstr "Parolayı sıfırla" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Kişisel" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index 34fc73005c..5188ffa1f4 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 47f2c79d9b..a8ad67283d 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "يېڭى ئىم" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "شەخسىي" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index e64a98b639..31bbc3a69d 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -539,6 +539,18 @@ msgstr "Новий пароль" msgid "Reset password" msgstr "Скинути пароль" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Особисте" diff --git a/l10n/ur/core.po b/l10n/ur/core.po index 841019ffa6..4a075757d6 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05:55+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -533,6 +533,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 0540a0b7c7..dd41da4e86 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "نیا پاسورڈ" msgid "Reset password" msgstr "ری سیٹ پاسورڈ" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "ذاتی" diff --git a/l10n/uz/core.po b/l10n/uz/core.po index 550fb51f9d..7b8fa16a1d 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "" msgid "Reset password" msgstr "" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 71940b1c18..48a4e5f7c7 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -532,6 +532,18 @@ msgstr "Mật khẩu mới" msgid "Reset password" msgstr "Khôi phục mật khẩu" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "Cá nhân" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index f510ad5ce5..0345cacc60 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -533,6 +533,18 @@ msgstr "新密码" msgid "Reset password" msgstr "重置密码" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "个人" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index ec37a019a1..2b6ff7ae0d 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -528,6 +528,18 @@ msgstr "新密碼" msgid "Reset password" msgstr "重設密碼" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "個人" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 7e121bc984..9595c3fa22 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 05: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" @@ -530,6 +530,18 @@ msgstr "新密碼" msgid "Reset password" msgstr "重設密碼" +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + #: strings.php:5 msgid "Personal" msgstr "個人" diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 5f1433f62c..cd87ac6db2 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -144,7 +144,7 @@ $TRANSLATIONS = array( "Commercial Support" => "Kommerzieller Support", "Get the apps to sync your files" => "Lade die Apps zur Synchronisierung Deiner Daten herunter", "Show First Run Wizard again" => "Erstinstallation erneut durchführen", -"You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", +"You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", "Password" => "Passwort", "Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", From 4a19a97d67579fdc11d695ebf3ce3b26cea7c4f7 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 23 Mar 2014 01:55:34 -0400 Subject: [PATCH 255/333] [tx-robot] updated from transifex --- core/l10n/de.php | 2 ++ core/l10n/de_DE.php | 2 ++ core/l10n/es.php | 2 ++ core/l10n/gl.php | 2 ++ core/l10n/it.php | 2 ++ core/l10n/nl.php | 2 ++ core/l10n/pl.php | 2 ++ core/l10n/pt_BR.php | 2 ++ l10n/de/core.po | 10 +++++----- l10n/de_DE/core.po | 10 +++++----- l10n/es/core.po | 10 +++++----- l10n/gl/core.po | 10 +++++----- l10n/it/core.po | 10 +++++----- l10n/nl/core.po | 10 +++++----- l10n/pl/core.po | 10 +++++----- l10n/pt_BR/core.po | 10 +++++----- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- 28 files changed, 68 insertions(+), 52 deletions(-) diff --git a/core/l10n/de.php b/core/l10n/de.php index f1952d8131..79edfb725d 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Zur Login-Seite", "New password" => "Neues Passwort", "Reset password" => "Passwort zurücksetzen", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!", +"For the best results, please consider using a GNU/Linux server instead." => "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden.", "Personal" => "Persönlich", "Users" => "Benutzer", "Apps" => "Apps", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index a8b74ff450..a0877e792e 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Zur Login-Seite", "New password" => "Neues Passwort", "Reset password" => "Passwort zurücksetzen", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!", +"For the best results, please consider using a GNU/Linux server instead." => "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden.", "Personal" => "Persönlich", "Users" => "Benutzer", "Apps" => "Apps", diff --git a/core/l10n/es.php b/core/l10n/es.php index 7794914fc9..7f4d46aa1f 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "A la página de inicio de sesión", "New password" => "Nueva contraseña", "Reset password" => "Restablecer contraseña", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsela a su propio riesgo! ", +"For the best results, please consider using a GNU/Linux server instead." => "Para óptimos resultados, considere utilizar un servidor GNU/Linux.", "Personal" => "Personal", "Users" => "Usuarios", "Apps" => "Aplicaciones", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 7811e62e0b..c1c678e7e3 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "A páxina de conexión", "New password" => "Novo contrasinal", "Reset password" => "Restabelecer o contrasinal", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X non é compatíbel e %s non funcionará correctamente nesta plataforma. Úseo baixo o seu risco!", +"For the best results, please consider using a GNU/Linux server instead." => "Para obter mellores resultados, considere o emprego dun servidor GNU/Linux no seu canto.", "Personal" => "Persoal", "Users" => "Usuarios", "Apps" => "Aplicativos", diff --git a/core/l10n/it.php b/core/l10n/it.php index 86b664d616..2f0017263f 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Alla pagina di accesso", "New password" => "Nuova password", "Reset password" => "Ripristina la password", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X non è supportato e %s non funzionerà correttamente su questa piattaforma. Usalo a tuo rischio!", +"For the best results, please consider using a GNU/Linux server instead." => "Per avere il risultato migliore, prendi in considerazione l'utilizzo di un server GNU/Linux.", "Personal" => "Personale", "Users" => "Utenti", "Apps" => "Applicazioni", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 77e1dff586..05cef6afd5 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Naar de login-pagina", "New password" => "Nieuw wachtwoord", "Reset password" => "Reset wachtwoord", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OSX wordt niet ondersteund en %s zal niet goed werken op dit platform. Gebruik het op uw eigen risico!", +"For the best results, please consider using a GNU/Linux server instead." => "Voor het beste resultaat adviseren wij het gebruik van een GNU/Linux server.", "Personal" => "Persoonlijk", "Users" => "Gebruikers", "Apps" => "Apps", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index e1b97a4b24..17fde36c7c 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Do strony logowania", "New password" => "Nowe hasło", "Reset password" => "Zresetuj hasło", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X nie jest wspierany i %s nie będzie działać poprawnie na tej platformie. Używasz na własne ryzyko!", +"For the best results, please consider using a GNU/Linux server instead." => "Aby uzyskać najlepsze rezultaty, rozważ w to miejsce użycie serwera GNU/Linux.", "Personal" => "Osobiste", "Users" => "Użytkownicy", "Apps" => "Aplikacje", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index a0fa7b14d2..b31925cdf7 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Para a página de login", "New password" => "Nova senha", "Reset password" => "Redefinir senha", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X não é suportado e %s não funcionará corretamente nesta plataforma. Use-o por sua conta e risco!", +"For the best results, please consider using a GNU/Linux server instead." => "Para obter os melhores resultados, por favor, considere o uso de um servidor GNU/Linux em seu lugar.", "Personal" => "Pessoal", "Users" => "Usuários", "Apps" => "Aplicações", diff --git a/l10n/de/core.po b/l10n/de/core.po index 3d00935f83..471f29b8a0 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 10:50+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -548,12 +548,12 @@ msgstr "Passwort zurücksetzen" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden." #: strings.php:5 msgid "Personal" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 5e6727521d..16a7061e93 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 10:50+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -549,12 +549,12 @@ msgstr "Passwort zurücksetzen" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OSX wird nicht unterstützt und %s wird auf dieser Platform nicht korrekt funktionieren. Benutzung auf eigenes Risiko!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Für die besten Resultate sollte stattdessen ein GNU/Linux Server verwendet werden." #: strings.php:5 msgid "Personal" diff --git a/l10n/es/core.po b/l10n/es/core.po index 4b9ed3614f..10724eb143 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 18:40+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -552,12 +552,12 @@ msgstr "Restablecer contraseña" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X no está soportado y %s no funcionará bien en esta plataforma. ¡Úsela a su propio riesgo! " #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Para óptimos resultados, considere utilizar un servidor GNU/Linux." #: strings.php:5 msgid "Personal" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 47a673c961..7839bd4996 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 10:00+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -540,12 +540,12 @@ msgstr "Restabelecer o contrasinal" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X non é compatíbel e %s non funcionará correctamente nesta plataforma. Úseo baixo o seu risco!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Para obter mellores resultados, considere o emprego dun servidor GNU/Linux no seu canto." #: strings.php:5 msgid "Personal" diff --git a/l10n/it/core.po b/l10n/it/core.po index 5998f476d3..a58e08ae69 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 09:00+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -542,12 +542,12 @@ msgstr "Ripristina la password" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X non è supportato e %s non funzionerà correttamente su questa piattaforma. Usalo a tuo rischio!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Per avere il risultato migliore, prendi in considerazione l'utilizzo di un server GNU/Linux." #: strings.php:5 msgid "Personal" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 34b83e74f0..0177e68a32 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 06:50+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -541,12 +541,12 @@ msgstr "Reset wachtwoord" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OSX wordt niet ondersteund en %s zal niet goed werken op dit platform. Gebruik het op uw eigen risico!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Voor het beste resultaat adviseren wij het gebruik van een GNU/Linux server." #: strings.php:5 msgid "Personal" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 2a734f085e..92279c7d0a 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 07:20+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -547,12 +547,12 @@ msgstr "Zresetuj hasło" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X nie jest wspierany i %s nie będzie działać poprawnie na tej platformie. Używasz na własne ryzyko!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Aby uzyskać najlepsze rezultaty, rozważ w to miejsce użycie serwera GNU/Linux." #: strings.php:5 msgid "Personal" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index c71bb28831..9592e53fa5 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"PO-Revision-Date: 2014-03-22 14:31+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -540,12 +540,12 @@ msgstr "Redefinir senha" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X não é suportado e %s não funcionará corretamente nesta plataforma. Use-o por sua conta e risco!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Para obter os melhores resultados, por favor, considere o uso de um servidor GNU/Linux em seu lugar." #: strings.php:5 msgid "Personal" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 69cc01c096..90928f4796 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index f23857d5e3..95ada29905 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 89bf51c4f3..a62f929de7 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "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 65ca968dae..c065adbe7c 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "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 1562bd1ccc..bf41314dc9 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "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 1435f3c19c..e8d7045dda 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "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 06ef4258a7..dbdc58c583 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "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 dfb50a7b88..a41828a6ad 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "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 bc504b54f5..a2cde59647 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "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 f34c944042..e8fd89d868 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "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 cf7d4a80bd..55115b4095 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "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 64808cc5bd..9d899d4f22 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" +"POT-Creation-Date: 2014-03-23 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From abdc823bb69600c3a4fc23e09f9de5819b57f56e Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 24 Mar 2014 01:55:51 -0400 Subject: [PATCH 256/333] [tx-robot] updated from transifex --- apps/files_encryption/l10n/cs_CZ.php | 1 + apps/files_external/l10n/cs_CZ.php | 2 +- apps/files_sharing/l10n/ar.php | 14 +++++- apps/files_sharing/l10n/cs_CZ.php | 2 +- apps/files_sharing/l10n/da.php | 1 + apps/user_ldap/l10n/cs_CZ.php | 5 ++ core/l10n/ar.php | 2 + core/l10n/cs_CZ.php | 5 ++ core/l10n/en_GB.php | 2 + core/l10n/tr.php | 2 + l10n/ar/core.po | 8 +-- l10n/ar/files.po | 72 +++++++++++++-------------- l10n/ar/files_sharing.po | 29 +++++------ l10n/ar/lib.po | 35 ++++++------- l10n/ca/files.po | 72 +++++++++++++-------------- l10n/cs_CZ/core.po | 16 +++--- l10n/cs_CZ/files.po | 74 ++++++++++++++-------------- l10n/cs_CZ/files_encryption.po | 10 ++-- l10n/cs_CZ/files_external.po | 16 +++--- l10n/cs_CZ/files_sharing.po | 10 ++-- l10n/cs_CZ/files_trashbin.po | 6 +-- l10n/cs_CZ/lib.po | 16 +++--- l10n/cs_CZ/settings.po | 34 ++++++------- l10n/cs_CZ/user_ldap.po | 18 +++---- l10n/cy_GB/files.po | 72 +++++++++++++-------------- l10n/da/files.po | 72 +++++++++++++-------------- l10n/da/files_sharing.po | 9 ++-- l10n/de/files.po | 72 +++++++++++++-------------- l10n/de_CH/files.po | 72 +++++++++++++-------------- l10n/de_DE/files.po | 72 +++++++++++++-------------- l10n/el/files.po | 72 +++++++++++++-------------- l10n/en_GB/core.po | 10 ++-- l10n/en_GB/files.po | 72 +++++++++++++-------------- l10n/eo/files.po | 72 +++++++++++++-------------- l10n/es/files.po | 72 +++++++++++++-------------- l10n/es_AR/files.po | 72 +++++++++++++-------------- l10n/es_MX/files.po | 72 +++++++++++++-------------- l10n/et_EE/files.po | 72 +++++++++++++-------------- l10n/eu/files.po | 72 +++++++++++++-------------- l10n/fa/files.po | 72 +++++++++++++-------------- l10n/fi_FI/files.po | 72 +++++++++++++-------------- l10n/fr/files.po | 72 +++++++++++++-------------- l10n/gl/files.po | 72 +++++++++++++-------------- l10n/he/files.po | 72 +++++++++++++-------------- l10n/hu_HU/files.po | 72 +++++++++++++-------------- l10n/id/files.po | 72 +++++++++++++-------------- l10n/it/files.po | 72 +++++++++++++-------------- l10n/ja/files.po | 72 +++++++++++++-------------- l10n/ka_GE/files.po | 72 +++++++++++++-------------- l10n/ko/files.po | 72 +++++++++++++-------------- l10n/lt_LT/files.po | 72 +++++++++++++-------------- l10n/lv/files.po | 72 +++++++++++++-------------- l10n/mk/files.po | 72 +++++++++++++-------------- l10n/nb_NO/files.po | 72 +++++++++++++-------------- l10n/nl/files.po | 72 +++++++++++++-------------- l10n/nn_NO/files.po | 72 +++++++++++++-------------- l10n/pl/files.po | 72 +++++++++++++-------------- l10n/pt_BR/files.po | 72 +++++++++++++-------------- l10n/pt_PT/files.po | 72 +++++++++++++-------------- l10n/ro/files.po | 72 +++++++++++++-------------- l10n/ru/files.po | 72 +++++++++++++-------------- l10n/sk_SK/files.po | 72 +++++++++++++-------------- l10n/sl/files.po | 72 +++++++++++++-------------- l10n/sq/files.po | 72 +++++++++++++-------------- l10n/sr/files.po | 72 +++++++++++++-------------- l10n/sv/files.po | 72 +++++++++++++-------------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 72 +++++++++++++-------------- l10n/tr/core.po | 10 ++-- l10n/tr/files.po | 72 +++++++++++++-------------- l10n/ug/files.po | 72 +++++++++++++-------------- l10n/uk/files.po | 72 +++++++++++++-------------- l10n/vi/files.po | 72 +++++++++++++-------------- l10n/zh_CN/files.po | 72 +++++++++++++-------------- l10n/zh_TW/files.po | 72 +++++++++++++-------------- lib/l10n/ar.php | 12 +++++ lib/l10n/cs_CZ.php | 4 +- settings/l10n/cs_CZ.php | 20 +++++--- 89 files changed, 1988 insertions(+), 1937 deletions(-) diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 18848978a8..cdeaf5b192 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta.", "Following users are not set up for encryption:" => "Následující uživatelé nemají nastavené šifrování:", "Initial encryption started... This can take some time. Please wait." => "Počáteční šifrování zahájeno... Toto může chvíli trvat. Počkejte prosím.", +"Initial encryption running... Please try again later." => "Probíhá počáteční šifrování... Zkuste to prosím znovu později.", "Go directly to your " => "Běžte přímo do vašeho", "personal settings" => "osobní nastavení", "Encryption" => "Šifrování", diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 2f7bbd0c4a..1b92e35c45 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -22,7 +22,7 @@ $TRANSLATIONS = array( "Users" => "Uživatelé", "Delete" => "Smazat", "Enable User External Storage" => "Zapnout externí uživatelské úložiště", -"Allow users to mount the following external storage" => "Povolit uživatelů připojit externí úložiště", +"Allow users to mount the following external storage" => "Povolit uživatelů připojit následující externí úložiště", "SSL root certificates" => "Kořenové certifikáty SSL", "Import Root Certificate" => "Importovat kořenového certifikátu" ); diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php index e5f919aac3..f796f7ec59 100644 --- a/apps/files_sharing/l10n/ar.php +++ b/apps/files_sharing/l10n/ar.php @@ -1,7 +1,17 @@ "مشاركة بواسطة المالك {owner}", +"Shared by {owner}" => "مشاركة من طرف {owner}", +"This share is password-protected" => "هذه المشاركة محمية بكلمة مرور", +"The password is wrong. Try again." => "كلمة المرور خاطئة. حاول مرة أخرى", "Password" => "كلمة المرور", -"shared by %s" => "مشاركة من قبل %s" +"Sorry, this link doesn’t seem to work anymore." => "عذرا، يبدو أن هذا الرابط لم يعد يعمل.", +"Reasons might be:" => "الأسباب الممكنة :", +"the item was removed" => "تم حذف العنصر المطلوب", +"the link expired" => "انتهت صلاحية الرابط", +"sharing is disabled" => "المشاركة غير مفعلة", +"For more info, please ask the person who sent this link." => "لمزيد من المعلومات، يرجى سؤال الشخص الذي أرسل هذا الرابط", +"shared by %s" => "مشاركة من قبل %s", +"Download %s" => "تحميل %s", +"Direct link" => "رابط مباشر" ); $PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index 5d50ff4131..e7a8b16f00 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -10,7 +10,7 @@ $TRANSLATIONS = array( "the link expired" => "platnost odkazu vypršela", "sharing is disabled" => "sdílení je zakázané", "For more info, please ask the person who sent this link." => "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", -"shared by %s" => "sdíleno %s", +"shared by %s" => "sdílí %s", "Download %s" => "Stáhnout %s", "Direct link" => "Přímý odkaz" ); diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index 6aae750cb7..6c6a39c295 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -11,6 +11,7 @@ $TRANSLATIONS = array( "sharing is disabled" => "deling er deaktiveret", "For more info, please ask the person who sent this link." => "For yderligere information, kontakt venligst personen der sendte linket. ", "shared by %s" => "delt af %s", +"Download %s" => "Download %s", "Direct link" => "Direkte link" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/cs_CZ.php b/apps/user_ldap/l10n/cs_CZ.php index 930a4b1064..536834ee8b 100644 --- a/apps/user_ldap/l10n/cs_CZ.php +++ b/apps/user_ldap/l10n/cs_CZ.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Uložit", "Test Configuration" => "Vyzkoušet nastavení", "Help" => "Nápověda", +"Groups meeting these criteria are available in %s:" => "Skupiny splňující tyto podmínky jsou k dispozici v %s:", "only those object classes:" => "pouze tyto objektové třídy:", "only from those groups:" => "pouze z těchto skupin:", "Edit raw filter instead" => "Edituj filtr přímo", "Raw LDAP filter" => "Původní filtr LDAP", "The filter specifies which LDAP groups shall have access to the %s instance." => "Filtr určuje, kteří uživatelé LDAP mají mít přístup k instanci %s.", "groups found" => "nalezené skupiny", +"Users login with this attribute:" => "Uživatelé se přihlašují s tímto atributem:", "LDAP Username:" => "LDAP uživatelské jméno:", "LDAP Email Address:" => "LDAP e-mailová adresa:", "Other Attributes:" => "Další atributy:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Pro anonymní přístup ponechte údaje DN and heslo prázdné.", "One Base DN per line" => "Jedna základní DN na řádku", "You can specify Base DN for users and groups in the Advanced tab" => "V rozšířeném nastavení můžete určit základní DN pro uživatele a skupiny", +"Limit %s access to users meeting these criteria:" => "Omezit přístup %s uživatelům splňujícím tyto podmínky:", "The filter specifies which LDAP users shall have access to the %s instance." => "Filtr určuje, kteří uživatelé LDAP mají mít přístup k instanci %s.", "users found" => "nalezení uživatelé", "Back" => "Zpět", @@ -85,6 +88,8 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Jedna skupinová základní DN na řádku", "Group Search Attributes" => "Atributy vyhledávání skupin", "Group-Member association" => "Asociace člena skupiny", +"Nested Groups" => "Vnořené skupiny", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Pokud zapnuto, je možno používat skupiny, které obsahují jiné skupiny. (Funguje pouze pokud atribut člena skupiny obsahuje DN.)", "Special Attributes" => "Speciální atributy", "Quota Field" => "Pole pro kvótu", "Quota Default" => "Výchozí kvóta", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 64b9d702dc..1ec1bf018b 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,5 +1,7 @@ "نوع الملف غير معروف", +"Invalid image" => "الصورة غير صالحة", "Sunday" => "الأحد", "Monday" => "الأثنين", "Tuesday" => "الثلاثاء", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 5709acf033..ffe34f7828 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -1,5 +1,6 @@ "Datum expirace je v minulosti.", "Couldn't send mail to following users: %s " => "Nebylo možné odeslat e-mail následujícím uživatelům: %s", "Turned on maintenance mode" => "Zapnut režim údržby", "Turned off maintenance mode" => "Vypnut režim údržby", @@ -108,6 +109,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do evidence chyb ownCloud", "The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.", "%s password reset" => "reset hesla %s", +"A problem has occurred whilst sending the email, please contact your administrator." => "Při odesílání e-mailu nastala chyba, kontaktujte prosím svého administrátora.", "Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
Pokud jej v krátké době neobdržíte, zkontrolujte váš koš a složku spam.
Pokud jej nenaleznete, kontaktujte svého správce.", "Request failed!
Did you make sure your email/username was right?" => "Požadavek selhal!
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", @@ -120,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Na stránku přihlášení", "New password" => "Nové heslo", "Reset password" => "Obnovit heslo", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X není podporován a %s nebude na této platformě správně fungovat. Používejte pouze na vlastní nebezpečí!", +"For the best results, please consider using a GNU/Linux server instead." => "Místo toho zvažte pro nejlepší funkčnost použití GNU/Linux serveru.", "Personal" => "Osobní", "Users" => "Uživatelé", "Apps" => "Aplikace", @@ -168,6 +172,7 @@ $TRANSLATIONS = array( "remember" => "zapamatovat", "Log in" => "Přihlásit", "Alternative Logins" => "Alternativní přihlášení", +"Hey there,

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

" => "Hej ty,

jen ti dávám vědět, že %s sdílí %s s tebou.
Zobrazit!

", "This ownCloud instance is currently in single user mode." => "Tato instalace ownCloudu je momentálně v jednouživatelském módu.", "This means only administrators can use the instance." => "To znamená, že pouze správci systému mohou aplikaci používat.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Kontaktujte, prosím, správce systému, pokud se tato zpráva objevuje opakovaně nebo nečekaně.", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index 7e2d5b8e91..bc36f5a444 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "To login page", "New password" => "New password", "Reset password" => "Reset password", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! ", +"For the best results, please consider using a GNU/Linux server instead." => "For the best results, please consider using a GNU/Linux server instead.", "Personal" => "Personal", "Users" => "Users", "Apps" => "Apps", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index bd717ef8d9..03544cd3c0 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -122,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "Giriş sayfasına git", "New password" => "Yeni parola", "Reset password" => "Parolayı sıfırla", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X desteklenmemediğinden %s bu platformda düzgün çalışmayacak. Kendi riskinizle kullanın!", +"For the best results, please consider using a GNU/Linux server instead." => "En iyi sonuçlar için GNU/Linux sunucusu kullanın.", "Personal" => "Kişisel", "Users" => "Kullanıcılar", "Apps" => "Uygulamalar", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 81f7cae440..fa97b43fc9 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 13:40+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" @@ -46,11 +46,11 @@ msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "نوع الملف غير معروف" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "الصورة غير صالحة" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 45ba3707ab..bade00bb3f 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "فشل في نقل %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "اسم الملف لا يجوز أن يكون فارغا" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -90,54 +90,54 @@ msgstr "غير قادر على تحميل المجلد" msgid "Invalid Token" msgstr "علامة غير صالحة" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "مسار غير صحيح." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "تم إلغاء عملية رفع الملفات ." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "تعذر الحصول على نتيجة من الخادم" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index ef6f0d1285..103ad5d237 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abderraouf Mehdi Bouhali , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 11:30+0000\n" +"Last-Translator: Abderraouf Mehdi Bouhali \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,15 +20,15 @@ msgstr "" #: js/share.js:13 msgid "Shared by {owner}" -msgstr "مشاركة بواسطة المالك {owner}" +msgstr "مشاركة من طرف {owner}" #: templates/authenticate.php:4 msgid "This share is password-protected" -msgstr "" +msgstr "هذه المشاركة محمية بكلمة مرور" #: templates/authenticate.php:7 msgid "The password is wrong. Try again." -msgstr "" +msgstr "كلمة المرور خاطئة. حاول مرة أخرى" #: templates/authenticate.php:10 msgid "Password" @@ -35,27 +36,27 @@ msgstr "كلمة المرور" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "عذرا، يبدو أن هذا الرابط لم يعد يعمل." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "الأسباب الممكنة :" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "تم حذف العنصر المطلوب" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "انتهت صلاحية الرابط" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "المشاركة غير مفعلة" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "لمزيد من المعلومات، يرجى سؤال الشخص الذي أرسل هذا الرابط" #: templates/public.php:17 #, php-format @@ -65,8 +66,8 @@ msgstr "مشاركة من قبل %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "تحميل %s" #: templates/public.php:48 msgid "Direct link" -msgstr "" +msgstr "رابط مباشر" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index a78e73ae96..e86849ce2b 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abderraouf Mehdi Bouhali , 2014 # suliman <291101251@std.qu.edu.sa>, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 08:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 13:40+0000\n" +"Last-Translator: Abderraouf Mehdi Bouhali \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,11 +57,11 @@ msgstr "خطا في ترقية \"%s\"." #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "نوع الملف غير معروف" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "الصورة غير صالحة" #: private/defaults.php:35 msgid "web services under your control" @@ -103,7 +104,7 @@ msgstr "" #: private/installer.php:90 #, php-format msgid "Archives of type %s are not supported" -msgstr "" +msgstr "الأرشيفات من نوع %s غير مدعومة" #: private/installer.php:104 msgid "Failed to open archive when installing app" @@ -111,7 +112,7 @@ msgstr "" #: private/installer.php:126 msgid "App does not provide an info.xml file" -msgstr "" +msgstr "التطبيق لا يتوفر على ملف info.xml" #: private/installer.php:132 msgid "App can't be installed because of not allowed code in the App" @@ -137,12 +138,12 @@ msgstr "" #: private/installer.php:170 msgid "App directory already exists" -msgstr "" +msgstr "مجلد التطبيق موجود مسبقا" #: private/installer.php:183 #, php-format msgid "Can't create app folder. Please fix permissions. %s" -msgstr "" +msgstr "لا يمكن إنشاء مجلد التطبيق. يرجى تعديل الصلاحيات. %s" #: private/json.php:29 msgid "Application is not enabled" @@ -158,7 +159,7 @@ msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل ا #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "المستخدم غير معروف" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -200,7 +201,7 @@ msgstr "انت بحاجة لكتابة اسم مستخدم موجود أو حس #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "اسم مستخدم أو كلمة مرور MySQL/MariaDB غير صحيحين" #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 @@ -228,7 +229,7 @@ msgstr "الأمر المخالف كان : \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "مستخدم MySQL/MariaDB '%s'@'localhost' موجود مسبقا" #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" @@ -241,11 +242,11 @@ msgstr "" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "حذف هذا المستخدم من MySQL/MariaDB" #: private/setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "لم تنجح محاولة اتصال Oracle" #: private/setup/oci.php:41 private/setup/oci.php:113 msgid "Oracle username and/or password not valid" @@ -268,13 +269,13 @@ msgstr "اعداد اسم مستخدم للمدير" msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "الرجاء التحقق من دليل التنصيب." @@ -283,7 +284,7 @@ msgstr "الرجاء التحقق من دليل التنصيب. #: private/share/mailnotifications.php:119 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s شارك »%s« معك" #: private/tags.php:193 #, php-format diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 1f6bb0a695..d3df8a0bd1 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -21,66 +21,66 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr " No s'ha pogut moure %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "El nom del fitxer no pot ser buit." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" no es un fitxer vàlid." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta de destí s'ha mogut o eliminat." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nom %s ja s'usa en la carpeta %s. Indiqueu un nom diferent." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "No és un origen vàlid" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no té autorització per obrir URLs, comproveu la configuració del servidor" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "S'ha produït un error en baixar %s a %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "S'ha produït un error en crear el fitxer" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "El nom de la carpeta no pot ser buit." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "S'ha produït un error en crear la carpeta" @@ -92,54 +92,54 @@ msgstr "No es pot establir la carpeta de pujada." msgid "Invalid Token" msgstr "Testimoni no vàlid" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "La pujada ha fallat. El fitxer pujat no s'ha trobat." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "No hi ha resposta del servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "L'URL no pot ser buit" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A la carpeta inici 'Compartit' és un nom de fitxer reservat" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "No s'ha pogut crear el fitxer" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "No s'ha pogut crear la carpeta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error en obtenir la URL" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 651e3e43f1..32fec75418 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 22:41+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "" #: ajax/share.php:88 msgid "Expiration date is in the past." -msgstr "" +msgstr "Datum expirace je v minulosti." #: ajax/share.php:120 ajax/share.php:162 #, php-format @@ -488,7 +488,7 @@ msgstr "reset hesla %s" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Při odesílání e-mailu nastala chyba, kontaktujte prosím svého administrátora." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -551,12 +551,12 @@ msgstr "Obnovit heslo" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X není podporován a %s nebude na této platformě správně fungovat. Používejte pouze na vlastní nebezpečí!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Místo toho zvažte pro nejlepší funkčnost použití GNU/Linux serveru." #: strings.php:5 msgid "Personal" @@ -779,7 +779,7 @@ msgstr "Alternativní přihlášení" msgid "" "Hey there,

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

" -msgstr "" +msgstr "Hej ty,

jen ti dávám vědět, že %s sdílí %s s tebou.
Zobrazit!

" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index fff8ff7c03..aae75b1c0b 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,66 +25,66 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nelze přesunout %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Název souboru nemůže být prázdný řetězec." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" je neplatným názvem souboru." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Cílová složka byla přesunuta nebo smazána." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Název %s ve složce %s již existuje. Vyberte prosím jiné jméno." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server není oprávněn otevírat adresy URL. Ověřte, prosím, konfiguraci serveru." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba při stahování %s do %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Chyba při vytváření souboru" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Název složky nemůže být prázdný." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Chyba při vytváření složky" @@ -96,54 +96,54 @@ msgstr "Nelze nastavit adresář pro nahrané soubory." msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -164,40 +164,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Není dostatek místa pro uložení, velikost souboru je {size1}, zbývá pouze {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nepodařilo se získat výsledek ze serveru." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL nemůže zůstat prázdná" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V osobní složce je název 'Shared' rezervovaný" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Nepodařilo se vytvořit soubor" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Nepodařilo se vytvořit složku" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Chyba při načítání URL" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 48ef3fef55..27f50770da 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -7,15 +7,15 @@ # Honza K. , 2013 # liska_, 2013 # Martin , 2013 -# pstast , 2013 +# pstast , 2013-2014 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 22:41+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -107,7 +107,7 @@ msgstr "Počáteční šifrování zahájeno... Toto může chvíli trvat. Počk #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Probíhá počáteční šifrování... Zkuste to prosím znovu později." #: templates/invalid_private_key.php:8 msgid "Go directly to your " diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 349b37ace7..b9152a082a 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -4,14 +4,14 @@ # # Translators: # m23 , 2014 -# pstast , 2013 +# pstast , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 21:30+0000\n" -"Last-Translator: m23 \n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 21:50+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,20 +43,20 @@ msgstr "Chyba při nastavení úložiště Google Drive" msgid "Saved" msgstr "Uloženo" -#: lib/config.php:512 +#: lib/config.php:631 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:516 +#: lib/config.php:635 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 "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:519 +#: lib/config.php:638 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -118,7 +118,7 @@ msgstr "Zapnout externí uživatelské úložiště" #: templates/settings.php:130 msgid "Allow users to mount the following external storage" -msgstr "Povolit uživatelů připojit externí úložiště" +msgstr "Povolit uživatelů připojit následující externí úložiště" #: templates/settings.php:147 msgid "SSL root certificates" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index ce64f200f2..4b4b4e76aa 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -5,14 +5,14 @@ # Translators: # liska_, 2013 # m23 , 2014 -# pstast , 2013 +# pstast , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 12:24+0000\n" -"Last-Translator: m23 \n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 21:50+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,7 +63,7 @@ msgstr "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz. #: templates/public.php:17 #, php-format msgid "shared by %s" -msgstr "sdíleno %s" +msgstr "sdílí %s" #: templates/public.php:44 #, php-format diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 88c09e4d70..cebf39ff8d 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-15 05:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 21:48+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 7d2e44fc8d..c1edc97637 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -6,15 +6,15 @@ # Honza K. , 2013 # liska_, 2013 # m23 , 2014 -# pstast , 2013 +# pstast , 2013-2014 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 21:30+0000\n" -"Last-Translator: m23 \n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 21:50+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -236,7 +236,7 @@ msgstr "MySQL/MariaDB uživatel '%s'@'localhost' již existuje." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "Zahodit uživatele z MySQL/MariaDB" +msgstr "Smazat tohoto uživatele z MySQL/MariaDB" #: private/setup/mysql.php:91 #, php-format @@ -245,7 +245,7 @@ msgstr "MySQL/MariaDB uživatel '%s'@'%%' již existuje" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "Zahodit uživatele z MySQL/MariaDB." +msgstr "Smazat tohoto uživatele z MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -272,13 +272,13 @@ msgstr "Zadejte uživatelské jméno správce." msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index a4e5a0e16c..53cebdda84 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 21:20+0000\n" -"Last-Translator: m23 \n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 22:50+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Uvedena nesprávná hodnota pro %s" #: admin/controller.php:73 msgid "Saved" @@ -35,16 +35,16 @@ msgstr "Uloženo" #: admin/controller.php:90 msgid "test email settings" -msgstr "nastavení zkušebního emailu" +msgstr "otestovat nastavení e-mailu" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Pokud jste obdrželi tento e-mail, nastavení se zdají být v pořádku." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Při odesílání e-mailu nastala chyba. Překontrolujte vaše nastavení." #: admin/controller.php:99 msgid "Email sent" @@ -52,11 +52,11 @@ msgstr "E-mail odeslán" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit svou e-mailovou adresu." #: admin/controller.php:116 templates/admin.php:282 msgid "Send mode" -msgstr "" +msgstr "Mód odesílání" #: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 msgid "Encryption" @@ -64,7 +64,7 @@ msgstr "Šifrování" #: admin/controller.php:120 templates/admin.php:319 msgid "Authentication method" -msgstr "Metoda autentifikace" +msgstr "Metoda ověření" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -325,11 +325,11 @@ msgstr "Přihlásit" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Čistý text" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "Správce NT LAN" #: templates/admin.php:24 msgid "SSL" @@ -522,11 +522,11 @@ msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucován #: templates/admin.php:277 msgid "Email Server" -msgstr "Emailový server" +msgstr "E-mailový server" #: templates/admin.php:279 msgid "This is used for sending out notifications." -msgstr "Toto se používá při odesílání upozornění." +msgstr "Toto se používá pro odesílání upozornění." #: templates/admin.php:310 msgid "From address" @@ -534,7 +534,7 @@ msgstr "Adresa odesílatele" #: templates/admin.php:332 msgid "Authentication required" -msgstr "Ověření vyžadováno" +msgstr "Vyžadováno ověření" #: templates/admin.php:336 msgid "Server address" @@ -558,7 +558,7 @@ msgstr "SMTP heslo" #: templates/admin.php:353 msgid "Test email settings" -msgstr "Nastavení zkušebního emailu" +msgstr "Otestovat nastavení e-mailu" #: templates/admin.php:354 msgid "Send email" @@ -695,7 +695,7 @@ msgstr "Vaše e-mailová adresa" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění." #: templates/personal.php:96 msgid "Profile picture" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 37b925a698..e9fd629b0b 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -7,15 +7,15 @@ # Honza K. , 2013 # liska_, 2013 # cvanca , 2013 -# pstast , 2013 +# pstast , 2013-2014 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 22:50+0000\n" +"Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,7 +171,7 @@ msgstr "Nápověda" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Skupiny splňující tyto podmínky jsou k dispozici v %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -207,7 +207,7 @@ msgstr "nalezené skupiny" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Uživatelé se přihlašují s tímto atributem:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -275,7 +275,7 @@ msgstr "V rozšířeném nastavení můžete určit základní DN pro uživatele #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Omezit přístup %s uživatelům splňujícím tyto podmínky:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -419,13 +419,13 @@ msgstr "Asociace člena skupiny" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Vnořené skupiny" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Pokud zapnuto, je možno používat skupiny, které obsahují jiné skupiny. (Funguje pouze pokud atribut člena skupiny obsahuje DN.)" #: templates/settings.php:41 msgid "Special Attributes" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 57f1b46233..4af8ab8a90 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Methwyd symud %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Does dim hawl cael enw ffeil gwag." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Diddymwyd llwytho i fyny." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/da/files.po b/l10n/da/files.po index ccacffbeb9..74ad1a5d02 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -22,66 +22,66 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnavnet kan ikke stå tomt." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" er et ugyldigt filnavn." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Mappen er blevet slettet eller fjernet." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Navnet %s er allerede i brug i mappen %s. Vælg venligst et andet navn." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Ikke en gyldig kilde" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server har ikke tilladelse til at åbne URL'er. Kontroller venligst serverens indstillinger" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fejl ved hentning af %s til %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fejl ved oprettelse af fil" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Mappenavnet kan ikke være tomt." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fejl ved oprettelse af mappen" @@ -93,54 +93,54 @@ msgstr "Ude af stand til at vælge upload mappe." msgid "Invalid Token" msgstr "Ugyldig Token " -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Upload fejlede. Kunne ikke hente filinformation." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -161,40 +161,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Der er ikke tilstrækkeligt friplads. Du uplaoder {size1} men der er kun {size2} tilbage" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Kunne ikke hente resultat fra server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Navnet 'Shared' er reserveret i hjemmemappen." -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Kunne ikke oprette fil" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Kunne ikke oprette mappe" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Fejl ved URL" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 784b4385ff..a1f254615e 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -5,13 +5,14 @@ # Translators: # Sappe, 2013 # lodahl , 2013 +# Amplificator, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 18:20+0000\n" +"Last-Translator: Amplificator\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,7 +68,7 @@ msgstr "delt af %s" #: templates/public.php:44 #, php-format msgid "Download %s" -msgstr "" +msgstr "Download %s" #: templates/public.php:48 msgid "Direct link" diff --git a/l10n/de/files.po b/l10n/de/files.po index e2f5d51718..1b89a09ee3 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+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" @@ -25,66 +25,66 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" ist kein gültiger Dateiname." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Zielordner wurde verschoben oder gelöscht." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wähle einen anderen Namen." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Der Ordner-Name darf nicht leer sein." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fehler beim Erstellen des Ordners" @@ -96,54 +96,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -164,40 +164,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Nicht genügend freier Speicherplatz, du möchtest {size1} hochladen, es sind jedoch nur noch {size2} verfügbar." -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 486924cf1b..a5326b44b9 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+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" @@ -26,66 +26,66 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -97,54 +97,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -165,40 +165,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 3183c48ba9..46cc403bb2 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+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" @@ -28,66 +28,66 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" ist kein gültiger Dateiname." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Ziel-Ordner wurde verschoben oder gelöscht." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Der Name %s wird bereits im Ordner %s benutzt. Bitte wählen Sie einen anderen Namen." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Keine gültige Quelle" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Dem Server ist das Öffnen von URLs nicht erlaubt, bitte die Serverkonfiguration prüfen" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fehler beim Herunterladen von %s nach %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fehler beim Erstellen der Datei" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Der Ordner-Name darf nicht leer sein." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fehler beim Erstellen des Ordners" @@ -99,54 +99,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -167,40 +167,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Nicht genügend freier Speicherplatz, Sie möchten {size1} hochladen, es sind jedoch nur noch {size2} verfügbar." -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ergebnis konnte nicht vom Server abgerufen werden." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" diff --git a/l10n/el/files.po b/l10n/el/files.po index 211efff6ed..48163996d3 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -22,66 +22,66 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Αδυναμία μετακίνησης του %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Το όνομα αρχείου δεν μπορεί να είναι κενό." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "Το \"%s\" είναι ένα μη έγκυρο όνομα αρχείου." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Το όνομα %s χρησιμοποιείτε ήδη στον φάκελο %s. Παρακαλώ επιλέξτε ένα άλλο όνομα." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Μη έγκυρη πηγή" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Ο διακομιστής δεν επιτρέπεται να ανοίγει URL, παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Σφάλμα κατά τη λήψη του %s στο %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Σφάλμα κατά τη δημιουργία του αρχείου" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Το όνομα φακέλου δεν μπορεί να είναι κενό." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Σφάλμα δημιουργίας φακέλου" @@ -93,54 +93,54 @@ msgstr "Αδυναμία ορισμού καταλόγου αποστολής." msgid "Invalid Token" msgstr "Μη έγκυρο Token" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -161,40 +161,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Αδυναμία λήψης αποτελέσματος από το διακομιστή." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Η URL δεν πρέπει να είναι κενή" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Αδυναμία δημιουργίας αρχείου" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Αδυναμία δημιουργίας φακέλου" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Σφάλμα φόρτωσης URL" diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index 305fa77f83..b6c1fd256b 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 15:01+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -539,12 +539,12 @@ msgstr "Reset password" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "For the best results, please consider using a GNU/Linux server instead." #: strings.php:5 msgid "Personal" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index c1ead14671..fcaa77bb69 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+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" @@ -18,66 +18,66 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Could not move %s - File with this name already exists" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Could not move %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "File name cannot be empty." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" is an invalid file name." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "The target folder has been moved or deleted." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "The name %s is already used in the folder %s. Please choose a different name." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Not a valid source" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server is not allowed to open URLs, please check the server configuration" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Error whilst downloading %s to %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Error when creating the file" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Folder name cannot be empty." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Error when creating the folder" @@ -89,54 +89,54 @@ msgstr "Unable to set upload directory." msgid "Invalid Token" msgstr "Invalid Token" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "No file was uploaded. Unknown error" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "There is no error, the file uploaded successfully" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "The uploaded file was only partially uploaded" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "No file was uploaded" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Missing a temporary folder" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Failed to write to disk" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Not enough storage available" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Upload failed. Could not find uploaded file" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Upload failed. Could not get file info." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Invalid directory." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Not enough free space, you are uploading {size1} but only {size2} is left" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload cancelled." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Could not get result from server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File upload is in progress. Leaving the page now will cancel the upload." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL cannot be empty" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "In the home folder 'Shared' is a reserved file name" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} already exists" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Could not create file" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Could not create folder" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error fetching URL" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 1e3d456165..7d8eee4479 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,66 +18,66 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Ne eblis movi %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Dosiernomo devas ne malpleni." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "La nomo %s jam uziĝas en la dosierujo %s. Bonvolu elekti malsaman nomon." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Nevalida fonto" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Eraris elŝuto de %s al %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Eraris la kreo de la dosiero" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "La dosierujnomo ne povas malpleni." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Eraris la kreo de la dosierujo" @@ -89,54 +89,54 @@ msgstr "Ne povis agordiĝi la alŝuta dosierujo." msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "la alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ne povis ekhaviĝi rezulto el la servilo." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "La URL ne povas malpleni" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Ne povis kreiĝi dosiero" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Ne povis kreiĝi dosierujo" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/es/files.po b/l10n/es/files.po index d26411a2e1..a88b0ed95e 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -27,66 +27,66 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" es un nombre de archivo inválido." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta destino fue movida o eliminada." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "No es una fuente válida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "La configuración del servidor no le permite abrir URLs, revísela." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Error al crear el archivo" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "El nombre de la carpeta no puede estar vacío." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Error al crear la carpeta." @@ -98,54 +98,54 @@ msgstr "Incapaz de crear directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Directorio inválido." @@ -166,40 +166,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "No hay suficiente espacio libre. Quiere subir {size1} pero solo quedan {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En la carpeta home, no se puede usar 'Shared'" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error al descargar URL." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 0c1748fcbc..51663cf577 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -21,66 +21,66 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "No se pudo mover %s " -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "El nombre del archivo no puede quedar vacío." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nombre %s está en uso en el directorio %s. Por favor elija un otro nombre." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "No es una fuente válida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no está permitido abrir las URLs, por favor chequee la configuración del servidor" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Error al crear el archivo" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "El nombre del directorio no puede estar vacío." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Error al crear el directorio" @@ -92,54 +92,54 @@ msgstr "No fue posible crear el directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "No hay errores, el archivo fue subido con éxito" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "El archivo fue subido parcialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "No se subió ningún archivo " -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "No hay suficiente almacenamiento" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Falló la carga. No se pudo encontrar el archivo subido." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Falló la carga. No se pudo obtener la información del archivo." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Directorio inválido." @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "No se pudo obtener resultados del servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "La URL no puede estar vacía" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En el directorio inicial 'Shared' es un nombre de archivo reservado" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "No se pudo crear el directorio" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error al obtener la URL" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 650b1bcf3d..5d13dd51a3 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+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" @@ -17,66 +17,66 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "El nombre %s ya está en uso por la carpeta %s. Por favor elija uno diferente." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "No es un origen válido" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "El servidor no puede acceder URLs; revise la configuración del servidor." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Error mientras se descargaba %s a %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Error al crear el archivo" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "El nombre de la carpeta no puede estar vacío." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Error al crear la carpeta." @@ -88,54 +88,54 @@ msgstr "Incapaz de crear directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Directorio inválido." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "No se pudo obtener respuesta del servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Error al descargar URL." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 6b573af2fd..33c13f4b24 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s liigutamine ebaõnnestus" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Faili nimi ei saa olla tühi." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nimi %s on juba kasutusel kataloogis %s. Palun vali mõni teine nimi." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Pole korrektne lähteallikas" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server ei võimalda URL-ide avamist, palun kontrolli serveri seadistust" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Viga %s allalaadimisel %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Viga faili loomisel" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Kataloogi nimi ei saa olla tühi." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Viga kataloogi loomisel" @@ -90,54 +90,54 @@ msgstr "Üleslaadimiste kausta määramine ebaõnnestus." msgid "Invalid Token" msgstr "Vigane kontrollkood" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi tõrget polnud, fail on üles laetud" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üleslaetud fail ületab MAX_FILE_SIZE suuruse, mis on HTML vormi jaoks määratud" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Vigane kaust." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Serverist ei saadud tulemusi" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL ei saa olla tühi" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Ei suuda luua faili" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Ei suuda luua kataloogi" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Viga URL-i haaramisel" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 3950ef86cc..9904b91c21 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Ezin dira fitxategiak mugitu %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Fitxategi izena ezin da hutsa izan." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s izena dagoeneko erabilita dago %s karpetan. Mesdez hautatu izen ezberdina." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Ez da jatorri baliogarria" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Zerbitzaria ez dago URLak irekitzeko baimendua, mesedez egiaztatu zerbitzariaren konfigurazioa" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Errorea %s %sra deskargatzerakoan" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Errorea fitxategia sortzerakoan" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Karpeta izena ezin da hutsa izan." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Errorea karpeta sortzerakoan" @@ -90,54 +90,54 @@ msgstr "Ezin da igoera direktorioa ezarri." msgid "Invalid Token" msgstr "Lekuko baliogabea" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Ez da errorerik egon, fitxategia ongi igo da" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategia HTML formularioan zehaztutako MAX_FILE_SIZE direktiba baino handidagoa da." -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ezin da zerbitzaritik emaitzik lortu" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URLa ezin da hutsik egon" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Ezin izan da fitxategia sortu" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Ezin izan da karpeta sortu" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Errorea URLa eskuratzerakoan" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 9b6b202c14..fead8e85df 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s نمی توان جابجا کرد - در حال حاضر پرونده با این نام وجود دارد. " -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s نمی تواند حرکت کند " -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "نام پرونده نمی تواند خالی باشد." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -90,54 +90,54 @@ msgstr "قادر به تنظیم پوشه آپلود نمی باشد." msgid "Invalid Token" msgstr "رمز نامعتبر" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index c1779a2cd1..6acc4fff64 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -20,66 +20,66 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kohteen %s siirto ei onnistunut" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Tiedoston nimi ei voi olla tyhjä." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" on virheellinen tiedostonimi." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Kohdekansio on siirretty tai poistettu." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nimi %s on jo käytössä kansiossa %s. Valitse toinen nimi." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Virheellinen lähde" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Palvelimen ei ole lupa avata verkko-osoitteita. Tarkista palvelimen asetukset" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Virhe ladatessa kohdetta %s sijaintiin %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Virhe tiedostoa luotaessa" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Kansion nimi ei voi olla tyhjä." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Virhe kansiota luotaessa" @@ -91,54 +91,54 @@ msgstr "Lähetyskansion asettaminen epäonnistui." msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -159,40 +159,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Ei riittävästi vapaata tilaa. Lähetyksesi koko on {size1}, mutta vain {size2} on jäljellä" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Tuloksien saaminen palvelimelta ei onnistunut." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Osoite ei voi olla tyhjä" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Tiedoston luominen epäonnistui" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Kansion luominen epäonnistui" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Virhe noutaessa verkko-osoitetta" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 0460422401..379cd86cc1 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -22,66 +22,66 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Impossible de déplacer %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Le nom de fichier ne peut être vide." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" n'est pas un nom de fichier valide." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Le dossier cible a été déplacé ou supprimé." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Le nom %s est déjà utilisé dans le dossier %s. Merci de choisir un nom différent." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "La source n'est pas valide" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Le serveur n'est pas autorisé à ouvrir des URL, veuillez vérifier la configuration du serveur" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Erreur pendant le téléchargement de %s à %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Erreur pendant la création du fichier" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Le nom de dossier ne peux pas être vide." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Erreur pendant la création du dossier" @@ -93,54 +93,54 @@ msgstr "Impossible de définir le dossier pour l'upload, charger." msgid "Invalid Token" msgstr "Jeton non valide" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été envoyé avec succès." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse l'instruction upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier envoyé dépasse l'instruction MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML." -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "L'envoi a échoué. Impossible de trouver le fichier envoyé." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Dossier invalide." @@ -161,40 +161,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Espace insuffisant : vous tentez d'envoyer {size1} mais seulement {size2} sont disponibles" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Envoi annulé." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ne peut recevoir les résultats du serveur." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "L'URL ne peut pas être vide" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Impossible de créer le fichier" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Impossible de créer le dossier" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Erreur d'accès à l'URL" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index d9c74f926a..b71b62fd9b 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Non foi posíbel mover %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "O nome de ficheiro non pode estar baleiro" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "«%s» é un nome incorrecto de ficheiro." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "O cartafol de destino foi movido ou eliminado." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Xa existe o nome %s no cartafol %s. Escolla outro nome." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Esta orixe non é correcta" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "O servidor non ten permisos para abrir os enderezos URL, comprobe a configuración do servidor" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Produciuse un erro ao descargar %s en %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Produciuse un erro ao crear o ficheiro" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "O nome de cartafol non pode estar baleiro." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Produciuse un erro ao crear o cartafol" @@ -90,54 +90,54 @@ msgstr "Non é posíbel configurar o directorio de envíos." msgid "Invalid Token" msgstr "Marca incorrecta" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Non houbo erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede da directiva MAX_FILE_SIZE especificada no formulario HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "O envío fracasou. Non foi posíbel atopar o ficheiro enviado" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "O envío fracasou. Non foi posíbel obter información do ficheiro." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Non hai espazo libre abondo, o seu envío é de {size1} mais só dispón de {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Non foi posíbel obter o resultado do servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "O URL non pode quedar en branco." -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Non foi posíbel crear o ficheiro" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Non foi posíbel crear o cartafol" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Produciuse un erro ao obter o URL" diff --git a/l10n/he/files.po b/l10n/he/files.po index 872d1669a4..4273d42e1f 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "לא ניתן להעביר את %s - קובץ בשם הזה כבר קיים" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "לא ניתן להעביר את %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "שם קובץ אינו יכול להיות ריק" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -90,54 +90,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "תיקייה שגויה." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "לא ניתן לגשת לתוצאות מהשרת." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 4e61476239..3532ba7040 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nem sikerült %s áthelyezése" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "A fájlnév nem lehet semmi." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "A %s név már létezik a %s mappában. Kérem válasszon másik nevet!" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "A kiinduló állomány érvénytelen" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "A kiszolgálón nincs engedélyezve URL-ek megnyitása, kérem ellenőrizze a beállításokat" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, 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:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Hiba történt az állomány létrehozásakor" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "A mappa neve nem maradhat kitöltetlenül" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Hiba történt a mappa létrehozásakor" @@ -90,54 +90,54 @@ msgstr "Nem található a mappa, ahova feltölteni szeretne." msgid "Invalid Token" msgstr "Hibás mappacím" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "A feltöltés nem sikerült. Nem található a feltöltendő állomány." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "A kiszolgálótól nem kapható meg az eredmény." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Az URL-cím nem maradhat kitöltetlenül" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Az állomány nem hozható létre" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "A mappa nem hozható létre" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "A megadott URL-ről nem sikerül adatokat kapni" diff --git a/l10n/id/files.po b/l10n/id/files.po index f9f4fcb3c4..d2ec10037f 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -18,66 +18,66 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Tidak dapat memindahkan %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Nama berkas tidak boleh kosong." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nama %s sudah digunakan dalam folder %s. Silakan pilih nama yang berbeda." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Sumber tidak sah" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Galat saat mengunduh %s ke %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Galat saat membuat berkas" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Nama folder tidak bolh kosong." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Galat saat membuat folder" @@ -89,54 +89,54 @@ msgstr "Tidak dapat mengatur folder unggah" msgid "Invalid Token" msgstr "Token tidak sah" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Unggah gagal. Tidak menemukan berkas yang akan diunggah" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Direktori tidak valid." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Tidak mendapatkan hasil dari server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL tidak boleh kosong" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Tidak dapat membuat berkas" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Tidak dapat membuat folder" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/it/files.po b/l10n/it/files.po index 5422d6a6af..c1dcdc79c2 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Impossibile spostare %s - un file con questo nome esiste già" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Impossibile spostare %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Il nome del file non può essere vuoto." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" non è un nome file valido." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La cartella di destinazione è stata spostata o eliminata." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Il nome %s è attualmente in uso nella cartella %s. Scegli un nome diverso." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Non è una sorgente valida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Al server non è permesso aprire URL, controlla la configurazione del server" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Errore durante lo scaricamento di %s su %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Errore durante la creazione del file" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Il nome della cartella non può essere vuoto." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Errore durante la creazione della cartella" @@ -90,54 +90,54 @@ msgstr "Impossibile impostare una cartella di caricamento." msgid "Invalid Token" msgstr "Token non valido" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato caricato correttamente" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file inviato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Caricamento non riuscito. Impossibile trovare il file caricato." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Cartella non valida." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Spazio insufficiente, stai caricando {size1}, ma è rimasto solo {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Impossibile ottenere il risultato dal server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Impossibile creare il file" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Impossibile creare la cartella" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Errore durante il recupero dello URL" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 519d9c9856..53eda26032 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -24,66 +24,66 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s を移動できませんでした ― この名前のファイルはすでに存在します" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s を移動できませんでした" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "ファイル名を空にすることはできません。" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" は無効なファイル名です。" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "目標のフォルダは移動されたか、削除されました。" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s はフォルダー %s ですでに使われています。別の名前を選択してください。" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "有効なソースではありません" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "サーバーは、URLを開くことは許されません。サーバーの設定をチェックしてください。" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "%s から %s へのダウンロードエラー" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "ファイルの生成エラー" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "フォルダー名は空にできません" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "フォルダーの生成エラー" @@ -95,54 +95,54 @@ msgstr "アップロードディレクトリを設定できません。" msgid "Invalid Token" msgstr "無効なトークン" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "アップロードファイルは一部分だけアップロードされました" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "一時保存フォルダーが見つかりません" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -163,40 +163,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "空き容量が十分でなく、 {size1} をアップロードしていますが、 {size2} しか残っていません。" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "サーバーから結果を取得できませんでした。" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL は空にできません" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在します" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "ファイルを作成できませんでした" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "フォルダーを作成できませんでした" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "URL取得エラー" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 40699657de..edcf2c7331 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s –ის გადატანა ვერ მოხერხდა" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 9681abac20..056ec25847 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -23,66 +23,66 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "항목 %s을(를) 이동시킬 수 없음 - 같은 이름의 파일이 이미 존재함" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "항목 %s을(를) 이동시킬 수 없음" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "파일 이름이 비어 있을 수 없습니다." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "이름 %s이(가) 폴더 %s에서 이미 사용 중입니다. 다른 이름을 사용하십시오." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "올바르지 않은 원본" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "서버에서 URL을 열 수 없습니다. 서버 설정을 확인하십시오" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "%s을(를) %s(으)로 다운로드하는 중 오류 발생" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "파일 생성 중 오류 발생" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "폴더 이름이 비어있을 수 없습니다." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "폴더 생성 중 오류 발생" @@ -94,54 +94,54 @@ msgstr "업로드 디렉터리를 설정할 수 없습니다." msgid "Invalid Token" msgstr "잘못된 토큰" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -162,40 +162,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "서버에서 결과를 가져올 수 없습니다." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL이 비어있을 수 없음" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "'공유됨'은 홈 폴더의 예약된 파일 이름임" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "파일을 만들 수 없음" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "폴더를 만들 수 없음" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "URL을 가져올 수 없음" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index c035027897..8c931cc06c 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -20,66 +20,66 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nepavyko perkelti %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Failo pavadinimas negali būti tuščias." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Pavadinimas %s jau naudojamas aplanke %s. Prašome pasirinkti kitokį pavadinimą." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Netinkamas šaltinis" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serveriui neleidžiama atverti URL, prašome patikrinti serverio konfigūraciją" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Klaida siunčiant %s į %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Klaida kuriant failą" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Aplanko pavadinimas negali būti tuščias." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Klaida kuriant aplanką" @@ -91,54 +91,54 @@ msgstr "Nepavyksta nustatyti įkėlimų katalogo." msgid "Invalid Token" msgstr "Netinkamas ženklas" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Įkeliamas failas yra didesnis nei leidžia upload_max_filesize php.ini faile:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE nustatymą, kuris naudojamas HTML formoje." -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Neteisingas aplankas" @@ -159,40 +159,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nepavyko gauti rezultato iš serverio." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL negali būti tuščias." -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Neįmanoma sukurti failo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Neįmanoma sukurti aplanko" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Klauda gaunant URL" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index ec7cf61374..cb6b1128af 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,66 +18,66 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nevarēja pārvietot %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Datnes nosaukums nevar būt tukšs." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -89,54 +89,54 @@ msgstr "Nevar uzstādīt augšupielādes mapi." msgid "Invalid Token" msgstr "Nepareiza pilnvara" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, datne augšupielādēta veiksmīga" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Augšupielādētā datne ir tikai daļēji augšupielādēta" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Nederīga direktorija." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index eaa85a91de..a397c54f04 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -18,66 +18,66 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Не можам да го преместам %s - Датотека со такво име веќе постои" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Не можам да ги префрлам %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Името на датотеката не може да биде празно." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Не е валиден извор" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Грешка додека преземам %s to %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Грешка при креирање на датотека" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Името на папката не може да биде празно." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Грешка при креирање на папка" @@ -89,54 +89,54 @@ msgstr "Не може да се постави папката за префрл msgid "Invalid Token" msgstr "Грешен токен" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Големината на датотеката ја надминува MAX_FILE_SIZE директивата која беше специфицирана во HTML формата" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Нема доволно слободен сториџ" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Погрешна папка." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Не можам да добијам резултат од серверот." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL-то не може да биде празно" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Не множам да креирам датотека" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Не можам да креирам папка" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 3c1e7eda5b..1988ef019c 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -21,66 +21,66 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kan ikke flytte %s - En fil med samme navn finnes allerede" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnavn kan ikke være tomt." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Navnet %s brukes allerede i mappen %s. Velg et annet navn." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Ikke en gyldig kilde" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serveren har ikke lov til å åpne URL-er. Sjekk konfigurasjon av server" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Feil ved nedlasting av %s til %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Feil ved oppretting av filen" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Mappenavn kan ikke være tomt." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Feil ved oppretting av mappen" @@ -92,54 +92,54 @@ msgstr "Kunne ikke sette opplastingskatalog." msgid "Invalid Token" msgstr "Ugyldig nøkkel" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filen du prøvde å laste opp var større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet." -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Ingen filer ble lastet opp" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Mangler midlertidig mappe" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Opplasting feilet. Fant ikke opplastet fil." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Opplasting feilet. Klarte ikke å finne informasjon om fil." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Ugyldig katalog." @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Fikk ikke resultat fra serveren." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hjemmemappen er 'Shared' et reservert filnavn" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Klarte ikke å opprette fil" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Klarte ikke å opprette mappe" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Feil ved henting av URL" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index d386e8bbe5..efbd44ed5b 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kon %s niet verplaatsen" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Bestandsnaam kan niet leeg zijn." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" is een ongeldige bestandsnaam." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "De doelmap is verplaatst of verwijderd." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "De naam %s bestaat al in map %s. Kies een andere naam." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Geen geldige bron" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server mag geen URS's openen, controleer de server configuratie" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fout bij downloaden %s naar %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fout bij creëren bestand" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Mapnaam mag niet leeg zijn." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fout bij aanmaken map" @@ -90,54 +90,54 @@ msgstr "Kan upload map niet instellen." msgid "Invalid Token" msgstr "Ongeldig Token" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "De upload van het bestand is goedgegaan." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het bestand overschrijdt de MAX_FILE_SIZE instelling dat is opgegeven in het HTML formulier" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Upload mislukt. Kon ge-uploade bestand niet vinden" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Niet genoeg vrije ruimte. U upload {size1}, maar is is slechts {size2} beschikbaar" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Kon het resultaat van de server niet terugkrijgen." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL mag niet leeg zijn" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Kon bestand niet creëren" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Kon niet creëren map" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Fout bij ophalen URL" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 1ce4f87074..e9994a268c 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -20,66 +20,66 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Klarte ikkje flytta %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnamnet kan ikkje vera tomt." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -91,54 +91,54 @@ msgstr "Klarte ikkje å endra opplastingsmappa." msgid "Invalid Token" msgstr "Ugyldig token" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: " -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Feil ved opplasting. Klarte ikkje å finna opplasta fil." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -159,40 +159,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Opplasting avbroten." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Klarte ikkje å henta resultat frå tenaren." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbroten." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 72abe2edbb..d00c7fd8d5 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -23,66 +23,66 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nie można było przenieść %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Nazwa pliku nie może być pusta." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" jest nieprawidłową nazwą pliku." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Folder docelowy został przeniesiony lub usunięty" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Nazwa %s jest już używana w folderze %s. Proszę wybrać inną nazwę." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Niepoprawne źródło" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Serwer nie mógł otworzyć adresów URL, należy sprawdzić konfigurację serwera" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Błąd podczas pobierania %s do %S" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Błąd przy tworzeniu pliku" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Nazwa folderu nie może być pusta." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Błąd przy tworzeniu folderu" @@ -94,54 +94,54 @@ msgstr "Nie można ustawić katalog wczytywania." msgid "Invalid Token" msgstr "Nieprawidłowy Token" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Nie było błędów, plik wysłano poprawnie." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Załadowany plik został wysłany tylko częściowo." -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -162,40 +162,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Brak wolnej przestrzeni, przesyłasz {size1} a pozostało tylko {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nie można uzyskać wyniku z serwera." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL nie może być pusty" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Nie można utworzyć pliku" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Nie można utworzyć folderu" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Błąd przy pobieraniu adresu URL" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index ccefbd75b3..897f8011e4 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -20,66 +20,66 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Impossível mover %s - Um arquivo com este nome já existe" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Impossível mover %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "O nome do arquivo não pode estar vazio." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" é um nome de arquivo inválido." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "A pasta de destino foi movida ou excluída." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "O nome %s já é usado na pasta %s. Por favor, escolha um nome diferente." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Não é uma fonte válida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Não é permitido ao servidor abrir URLs, por favor verificar a configuração do servidor." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Erro ao baixar %s para %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Erro ao criar o arquivo" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "O nome da pasta não pode estar vazio." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Erro ao criar a pasta" @@ -91,54 +91,54 @@ msgstr "Impossível configurar o diretório de upload" msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Sem erros, o arquivo foi enviado com sucesso" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o argumento MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi parcialmente enviado" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Nenhum arquivo enviado" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Falha no envio. Não foi possível encontrar o arquivo enviado" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Falha no envio. Não foi possível obter informações do arquivo." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Diretório inválido." @@ -159,40 +159,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Não há espaço suficiente, você está enviando {size1} mas resta apenas {size2}" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL não pode estar vazia" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Não foi possível criar o arquivo" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Não foi possível criar a pasta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Erro ao buscar URL" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index f59532a1a4..0bfb106107 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -21,66 +21,66 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Não pôde mover o ficheiro %s - Já existe um ficheiro com esse nome" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Não foi possível move o ficheiro %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "O nome do ficheiro não pode estar vazio." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "O nome %s já está em uso na pasta %s. Por favor escolha um nome diferente." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Não é uma fonte válida" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "O servidor não consegue abrir URLs, por favor verifique a configuração do servidor" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Erro ao transferir %s para %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Erro ao criar o ficheiro" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "O nome da pasta não pode estar vazio." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Erro ao criar a pasta" @@ -92,54 +92,54 @@ msgstr "Não foi possível criar o diretório de upload" msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O tamanho do ficheiro carregado ultrapassa o valor MAX_FILE_SIZE definido no formulário HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Nenhum ficheiro foi submetido" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Está a faltar a pasta temporária" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Falhou o envio. Não conseguiu encontrar o ficheiro enviado" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Directório Inválido" @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Não foi possível obter o resultado do servidor." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL não pode estar vazio" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Não pôde criar ficheiro" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Não pôde criar pasta" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Erro ao obter URL" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 2558dc5b3f..13be40a731 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -24,66 +24,66 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s nu se poate muta - Fișierul cu acest nume există deja " -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nu se poate muta %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Numele fișierului nu poate rămâne gol." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Eroare la crearea fisierului" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Eroare la crearea folderului" @@ -95,54 +95,54 @@ msgstr "Imposibil de a seta directorul pentru incărcare." msgid "Invalid Token" msgstr "Jeton Invalid" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Niciun fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fișierul încărcat depășește directiva upload_max_filesize din php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Nu a fost încărcat niciun fișier" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Eroare la scrierea pe disc" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Nu este disponibil suficient spațiu" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Încărcare eșuată. Nu se poate găsi fișierul încărcat" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Încărcare eșuată. Nu se pot obține informații despre fișier." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Dosar nevalid." @@ -163,40 +163,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nu se poate obține rezultatul de la server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL nu poate fi gol" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} există deja" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Nu s-a putut crea fisierul" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Nu s-a putut crea folderul" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index d374b2491d..07e65a448d 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -28,66 +28,66 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Невозможно переместить %s - файл с таким именем уже существует" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Невозможно переместить %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Имя файла не может быть пустым." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Имя %s уже используется для каталога %s. Пожалуйста, выберите другое имя." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Неправильный источник" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Сервер не позволяет открывать URL-адреса, пожалуйста, проверьте настройки сервера" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Ошибка при скачивании %s в %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Ошибка при создании файла" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Имя папки не может быть пустым." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Ошибка создания каталога" @@ -99,54 +99,54 @@ msgstr "Не удалось установить каталог загрузки msgid "Invalid Token" msgstr "Недопустимый маркер" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер, установленный параметром upload_max_filesize в php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Загруженный файл превышает размер, установленный параметром MAX_FILE_SIZE в HTML-форме" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Файл загружен лишь частично" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Ни одного файла загружено не было" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Отсутствует временный каталог" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Загрузка не удалась. Невозможно найти загружаемый файл" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Загрузка не удалась. Невозможно получить информацию о файле" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Неверный каталог." @@ -167,40 +167,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Не удалось получить ответ от сервера." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "'Shared' - это зарезервированное имя файла в домашнем каталоге" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Не удалось создать файл" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Не удалось создать каталог" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Ошибка получения URL" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index fa1a2fde37..b3eb40dfbc 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,66 +18,66 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Nie je možné presunúť %s - súbor s týmto menom už existuje" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nie je možné presunúť %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Meno súboru nemôže byť prázdne" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Názov %s už používa priečinok s%. Prosím zvoľte iný názov." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Neplatný zdroj" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server nie je oprávnený otvárať adresy URL. Overte nastavenia servera." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Chyba pri sťahovaní súboru %s do %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Chyba pri vytváraní súboru" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Názov priečinka nemôže byť prázdny." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Chyba pri vytváraní priečinka" @@ -89,54 +89,54 @@ msgstr "Nemožno nastaviť priečinok pre nahrané súbory." msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol nahraný. Neznáma chyba" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára." -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Neplatný priečinok." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Odosielanie zrušené." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Nepodarilo sa dostať výsledky zo servera." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL nemôže byť prázdna" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Nemožno vytvoriť súbor" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Nemožno vytvoriť priečinok" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Chyba pri načítavaní URL" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 98e94b68b6..00b2b25a51 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Datoteke %s ni mogoče premakniti - datoteka s tem imenom že obstaja." -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Datoteke %s ni mogoče premakniti" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Ime datoteke ne sme biti prazno polje." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "\"%s\" je neveljavno ime datoteke." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Ciljna mapa je premaknjena ali izbrisana." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Ime %s je že v mapi %s že v uporabi. Izbrati je treba drugo ime." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Vir ni veljaven" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Odpiranje naslovov URL preko strežnika ni dovoljeno. Preverite nastavitve strežnika." -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Napaka med prejemanjem %s v mapo %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Napaka med ustvarjanjem datoteke" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Ime mape ne more biti prazna vrednost." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Napaka med ustvarjanjem mape" @@ -90,54 +90,54 @@ msgstr "Mapo, v katero boste prenašali dokumente, ni mogoče določiti" msgid "Invalid Token" msgstr "Neveljaven žeton" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML." -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke." -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Neveljavna mapa." @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Na voljo ni dovolj prostora. Velikost poslane datoteke je {size1}, na voljo pa je je {size2}." -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Ni mogoče pridobiti podatkov s strežnika." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "Polje naslova URL ne sme biti prazno" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo." -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Ni mogoče ustvariti datoteke" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Ni mogoče ustvariti mape" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Napaka pridobivanja naslova URL" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index e13ccd3991..8068ca9368 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "E pa mundur zhvendosja e %s - ekziston nje skedar me te njetin emer" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Nuk mund të zhvendoset %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Emri i skedarit nuk mund të jetë bosh." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -90,54 +90,54 @@ msgstr "E pa mundur të vendoset dosja e ngarkimit" msgid "Invalid Token" msgstr "Shenjë e gabuar" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Asnjë skedar nuk u dërgua. Gabim i pa njohur" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Skedari u ngarkua me sukses" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Skedari i ngarkuar tejkalon limitin hapsirës së lejuar në php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Skedari i ngarkuar tejlakon vlerën MAX_FILE_SIZE të përcaktuar në formën HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Skedari është ngakruar vetëm pjesërisht" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Asnjë skedar nuk është ngarkuar" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Mungon dosja e përkohshme" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Dështoi shkrimi në disk" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Hapsira e arkivimit e pamjaftueshme" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Dosje e pavlefshme" @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Ngarkimi u anullua" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL-i nuk mund të jetë bosh" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} është ekzistues " -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "I pamundur krijimi i kartelës" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 41efd5b4a2..6953dc1242 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Не могу да преместим %s – датотека с овим именом већ постоји" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Не могу да преместим %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Име датотеке не може бити празно." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "неисправна фасцикла." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 664d261772..4ac3ca06a7 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -25,66 +25,66 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Kan inte flytta %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Filnamn kan inte vara tomt." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Namnet %s används redan i katalogen %s. Välj ett annat namn." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Inte en giltig källa" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Fel under nerladdning från %s till %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Fel under skapande utav filen" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Katalognamn kan ej vara tomt." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Fel under skapande utav en katalog" @@ -96,54 +96,54 @@ msgstr "Kan inte sätta mapp för uppladdning." msgid "Invalid Token" msgstr "Ogiltig token" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överskrider MAX_FILE_SIZE direktivet som har angetts i HTML formuläret" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -164,40 +164,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Gick inte att hämta resultat från server." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL kan ej vara tomt" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "I hemma katalogen 'Delat' är ett reserverat filnamn" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Kunde ej skapa fil" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Kunde ej skapa katalog" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 90928f4796..7acb9705ec 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 95ada29905..fcf0284602 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index a62f929de7..984163d0cb 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "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 c065adbe7c..cfabf72a4b 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "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 bf41314dc9..06a7588211 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "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 e8d7045dda..8a0bd0dbdc 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "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 dbdc58c583..b378e9d0a5 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "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 a41828a6ad..c715dba8b6 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "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 a2cde59647..c7d3020094 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "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 e8fd89d868..339e47ef97 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "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 55115b4095..4f1f8f3d97 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" "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 9d899d4f22..ae0ae4ad12 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-23 01:55-0400\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\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 81b1ace189..5969ccf253 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "ไม่สามารถย้าย %s ได้" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "ชื่อไฟล์ไม่สามารถเว้นว่างได้" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในรูปแบบของ HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index e1bf625b9c..177ac78651 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-23 13:20+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -542,12 +542,12 @@ msgstr "Parolayı sıfırla" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X desteklenmemediğinden %s bu platformda düzgün çalışmayacak. Kendi riskinizle kullanın!" #: setup/controller.php:142 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "En iyi sonuçlar için GNU/Linux sunucusu kullanın." #: strings.php:5 msgid "Personal" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index b9a6e7a8f6..e44d0c628f 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -21,66 +21,66 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s taşınamadı - Bu isimde dosya zaten var" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s taşınamadı" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Dosya adı boş olamaz." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "'%s' geçersiz bir dosya adı." -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Hedef klasör taşındı veya silindi." -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s ismi zaten %s klasöründe kullanılıyor. Lütfen farklı bir isim seçin." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Geçerli bir kaynak değil" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Sunucunun adresleri açma izi yok, lütfen sunucu yapılandırmasını denetleyin" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "%s, %s içine indirilirken hata" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Dosya oluşturulurken hata" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Klasör adı boş olamaz." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Klasör oluşturulurken hata" @@ -92,54 +92,54 @@ msgstr "Yükleme dizini tanımlanamadı." msgid "Invalid Token" msgstr "Geçersiz Simge" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Dosya başarıyla yüklendi, hata oluşmadı" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenecek dosyanın boyutu HTML formunda belirtilen MAX_FILE_SIZE limitini aşıyor" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Yükleme başarısız. Yüklenen dosya bulunamadı" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "Yeterince boş alan yok. Gönderdiğiniz boyut {size1} ancak {size2} alan mevcut" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Sunucudan sonuç alınamadı." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL boş olamaz" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Dosya oluşturulamadı" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Klasör oluşturulamadı" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "Adres getirilirken hata" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 6af595b22f..506c14df31 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+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" @@ -17,66 +17,66 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s يۆتكىيەلمەيدۇ" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "يۈكلەشتىن ۋاز كەچتى." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋاتىدۇ. Leaving the page now will cancel the upload." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 7a3fd6f1cd..87f0b69253 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -18,66 +18,66 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Не вдалося перемістити %s - Файл з таким ім'ям вже існує" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Не вдалося перемістити %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr " Ім'я файлу не може бути порожнім." -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Ім'я теки не може бути порожнім." -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -89,54 +89,54 @@ msgstr "Не вдалося встановити каталог завантаж msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Невірний каталог." @@ -157,40 +157,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL не може бути порожнім" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Не вдалося створити файл" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Не вдалося створити теку" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 04ec0176f0..1040f0a0b1 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -21,66 +21,66 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Không thể di chuyển %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Tên file không được rỗng" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "Tên %s đã được sử dụng trong thư mục %s. Hãy chọn tên khác." -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "Nguồn không hợp lệ" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "Server cấm mở URLs, vui lòng kiểm tra lại cấu hình server" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "Lỗi trong trong quá trình tải %s từ %s" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "Lỗi khi tạo file" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "Tên thư mục không thể để trống" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "Lỗi khi tạo thư mục" @@ -92,54 +92,54 @@ msgstr "Không thể thiết lập thư mục tải lên." msgid "Invalid Token" msgstr "Xác thực không hợp lệ" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "Các tập tin được tải lên chỉ tải lên được một phần" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "Chưa có file nào được tải lên" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "Tải lên thất bại. Không thể tìm thấy tập tin được tải lên" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "Tải lên thất bại. Không thể có được thông tin tập tin." -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "Không thể nhận được kết quả từ máy chủ." -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL không thể để trống" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "Không thể tạo file" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "Không thể tạo thư mục" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 11d8394772..40428237a0 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -21,66 +21,66 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "无法移动 %s - 同名文件已存在" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "无法移动 %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "文件名不能为空。" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "文件名 %s 是已经在 %s 中存在的名称。请使用其他名称。" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "不是一个可用的源" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "服务器没有允许打开URL网址,请检查服务器配置" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "当下载 %s 到 %s 时出错" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "当创建文件是出错" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "文件夹名称不能为空" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "创建文件夹出错" @@ -92,54 +92,54 @@ msgstr "无法设置上传文件夹。" msgid "Invalid Token" msgstr "无效密匙" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功,没有错误发生" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "已上传文件只上传了部分(不完整)" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "没有文件被上传" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "上传失败。不能发现上传的文件" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "上传失败。不能获取文件信息。" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "无效文件夹。" @@ -160,40 +160,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "上传已取消" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "不能从服务器得到结果" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL不能为空" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "主目录里 'Shared' 是系统预留目录名" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "不能创建文件" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "不能创建文件夹" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "获取URL出错" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 48abe4ce14..71dc6a0a86 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 05:00+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -19,66 +19,66 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "無法移動 %s ,同名的檔案已經存在" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "無法移動 %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "檔名不能為空" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "%s 已經被使用於資料夾 %s ,請換一個名字" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "不是有效的來源" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "下載 %s 到 %s 失敗" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "建立檔案失敗" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "資料夾名稱不能留空" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "建立資料夾失敗" @@ -90,54 +90,54 @@ msgstr "無法設定上傳目錄" msgid "Invalid Token" msgstr "無效的 token" -#: ajax/upload.php:67 +#: ajax/upload.php:68 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳,原因未知" -#: ajax/upload.php:74 +#: ajax/upload.php:75 msgid "There is no error, the file uploaded with success" msgstr "一切都順利,檔案上傳成功" -#: ajax/upload.php:75 +#: ajax/upload.php:76 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:77 +#: ajax/upload.php:78 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:78 +#: ajax/upload.php:79 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:79 +#: ajax/upload.php:80 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:80 +#: ajax/upload.php:81 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:81 +#: ajax/upload.php:82 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:99 +#: ajax/upload.php:100 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:156 +#: ajax/upload.php:157 msgid "Upload failed. Could not find uploaded file" msgstr "上傳失敗,找不到上傳的檔案" -#: ajax/upload.php:166 +#: ajax/upload.php:167 msgid "Upload failed. Could not get file info." msgstr "上傳失敗,無法取得檔案資訊" -#: ajax/upload.php:185 +#: ajax/upload.php:186 msgid "Invalid directory." msgstr "無效的資料夾" @@ -158,40 +158,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "上傳已取消" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "無法從伺服器取回結果" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中,離開此頁面將會取消上傳。" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "URL 不能留空" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "在家目錄中不能使用「共享」作為檔名" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "無法建立檔案" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "無法建立資料夾" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index bf9215e350..6287a53d61 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -8,15 +8,22 @@ $TRANSLATIONS = array( "Users" => "المستخدمين", "Admin" => "المدير", "Failed to upgrade \"%s\"." => "خطا في ترقية \"%s\".", +"Unknown filetype" => "نوع الملف غير معروف", +"Invalid image" => "الصورة غير صالحة", "web services under your control" => "خدمات الشبكة تحت سيطرتك", "ZIP download is turned off." => "تحميل ملفات ZIP متوقف", "Files need to be downloaded one by one." => "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر", "Back to Files" => "العودة الى الملفات", "Selected files too large to generate zip file." => "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip", "No source specified when installing app" => "لم يتم تحديد المصدر عن تثبيت البرنامج", +"Archives of type %s are not supported" => "الأرشيفات من نوع %s غير مدعومة", +"App does not provide an info.xml file" => "التطبيق لا يتوفر على ملف info.xml", +"App directory already exists" => "مجلد التطبيق موجود مسبقا", +"Can't create app folder. Please fix permissions. %s" => "لا يمكن إنشاء مجلد التطبيق. يرجى تعديل الصلاحيات. %s", "Application is not enabled" => "التطبيق غير مفعّل", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Token expired. Please reload page." => "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة", +"Unknown user" => "المستخدم غير معروف", "Files" => "الملفات", "Text" => "معلومات إضافية", "Images" => "صور", @@ -25,8 +32,12 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات", "MS SQL username and/or password not valid: %s" => "اسم المستخدم و/أو كلمة المرور لنظام MS SQL غير صحيح : %s", "You need to enter either an existing account or the administrator." => "انت بحاجة لكتابة اسم مستخدم موجود أو حساب المدير.", +"MySQL/MariaDB username and/or password not valid" => "اسم مستخدم أو كلمة مرور MySQL/MariaDB غير صحيحين", "DB Error: \"%s\"" => "خطأ في قواعد البيانات : \"%s\"", "Offending command was: \"%s\"" => "الأمر المخالف كان : \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "مستخدم MySQL/MariaDB '%s'@'localhost' موجود مسبقا", +"Drop this user from MySQL/MariaDB." => "حذف هذا المستخدم من MySQL/MariaDB", +"Oracle connection could not be established" => "لم تنجح محاولة اتصال Oracle", "Oracle username and/or password not valid" => "اسم المستخدم و/أو كلمة المرور لنظام Oracle غير صحيح", "Offending command was: \"%s\", name: %s, password: %s" => "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, كلمة المرور: %s", "PostgreSQL username and/or password not valid" => "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة", @@ -34,6 +45,7 @@ $TRANSLATIONS = array( "Set an admin password." => "اعداد كلمة مرور للمدير", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة", "Please double check the installation guides." => "الرجاء التحقق من دليل التنصيب.", +"%s shared »%s« with you" => "%s شارك »%s« معك", "Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"", "seconds ago" => "منذ ثواني", "_%n minute ago_::_%n minutes ago_" => array("","","","","",""), diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 7969060b2c..6b5c8441ca 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -44,9 +44,9 @@ $TRANSLATIONS = array( "DB Error: \"%s\"" => "Chyba databáze: \"%s\"", "Offending command was: \"%s\"" => "Příslušný příkaz byl: \"%s\"", "MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB uživatel '%s'@'localhost' již existuje.", -"Drop this user from MySQL/MariaDB" => "Zahodit uživatele z MySQL/MariaDB", +"Drop this user from MySQL/MariaDB" => "Smazat tohoto uživatele z MySQL/MariaDB", "MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB uživatel '%s'@'%%' již existuje", -"Drop this user from MySQL/MariaDB." => "Zahodit uživatele z MySQL/MariaDB.", +"Drop this user from MySQL/MariaDB." => "Smazat tohoto uživatele z MySQL/MariaDB.", "Oracle connection could not be established" => "Spojení s Oracle nemohlo být navázáno", "Oracle username and/or password not valid" => "Uživatelské jméno či heslo Oracle není platné", "Offending command was: \"%s\", name: %s, password: %s" => "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 1d9a554f3c..09bfe89d8a 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,10 +1,15 @@ "Uvedena nesprávná hodnota pro %s", "Saved" => "Uloženo", -"test email settings" => "nastavení zkušebního emailu", +"test email settings" => "otestovat nastavení e-mailu", +"If you received this email, the settings seem to be correct." => "Pokud jste obdrželi tento e-mail, nastavení se zdají být v pořádku.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Při odesílání e-mailu nastala chyba. Překontrolujte vaše nastavení.", "Email sent" => "E-mail odeslán", +"You need to set your user email before being able to send test emails." => "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit svou e-mailovou adresu.", +"Send mode" => "Mód odesílání", "Encryption" => "Šifrování", -"Authentication method" => "Metoda autentifikace", +"Authentication method" => "Metoda ověření", "Unable to load list from App Store" => "Nelze načíst seznam z App Store", "Authentication error" => "Chyba přihlášení", "Your full name has been changed." => "Vaše celé jméno bylo změněno.", @@ -67,6 +72,8 @@ $TRANSLATIONS = array( "Fatal issues only" => "Pouze fatální problémy", "None" => "Žádné", "Login" => "Přihlásit", +"Plain" => "Čistý text", +"NT LAN Manager" => "Správce NT LAN", "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Bezpečnostní upozornění", @@ -106,16 +113,16 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL.", -"Email Server" => "Emailový server", -"This is used for sending out notifications." => "Toto se používá při odesílání upozornění.", +"Email Server" => "E-mailový server", +"This is used for sending out notifications." => "Toto se používá pro odesílání upozornění.", "From address" => "Adresa odesílatele", -"Authentication required" => "Ověření vyžadováno", +"Authentication required" => "Vyžadováno ověření", "Server address" => "Adresa serveru", "Port" => "Port", "Credentials" => "Přihlašovací údaje", "SMTP Username" => "SMTP uživatelské jméno ", "SMTP Password" => "SMTP heslo", -"Test email settings" => "Nastavení zkušebního emailu", +"Test email settings" => "Otestovat nastavení e-mailu", "Send email" => "Odeslat e-mail", "Log" => "Záznam", "Log level" => "Úroveň zaznamenávání", @@ -147,6 +154,7 @@ $TRANSLATIONS = array( "Full Name" => "Celé jméno", "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", +"Fill in an email address to enable password recovery and receive notifications" => "Zadejte e-mailovou adresu pro umožnění obnovy zapomenutého hesla a pro přijímání upozornění.", "Profile picture" => "Profilový obrázek", "Upload new" => "Nahrát nový", "Select new from Files" => "Vyberte nový ze souborů", From a25b86a30e34204f9a67e3231b1975f7aaf527af Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 24 Mar 2014 11:54:44 +0100 Subject: [PATCH 257/333] Log exception when PostgreSQL version check failed --- lib/private/util.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/private/util.php b/lib/private/util.php index 54e04ce4d7..d039d9f6a9 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -516,8 +516,10 @@ class OC_Util { } } catch (\Doctrine\DBAL\DBALException $e){ + \OCP\Util::logException('core', $e); $errors[] = array( - 'error' => 'PostgreSQL >= 9 required' + 'error' => 'Error occurred while checking PostgreSQL version', + 'hint' => 'Please make sure you have PostgreSQL >= 9 or check the logs for more information about the error' ); } } From 6b66b42f6e4399676677bd6f6534ad3c33c8404f Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 24 Mar 2014 12:33:44 +0100 Subject: [PATCH 258/333] catch the case where files_trashbin/files doesn't exist --- apps/files_trashbin/lib/trashbin.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/files_trashbin/lib/trashbin.php b/apps/files_trashbin/lib/trashbin.php index 62879b0ca8..7b14a4ec08 100644 --- a/apps/files_trashbin/lib/trashbin.php +++ b/apps/files_trashbin/lib/trashbin.php @@ -922,8 +922,11 @@ class Trashbin { $view = new \OC\Files\View('/' . $user . '/files_trashbin'); $dh = $view->opendir('/files'); + if (!$dh) { + return false; + } while ($file = readdir($dh)) { - if($file !== '.' and $file !== '..'){ + if ($file !== '.' and $file !== '..') { return false; } } From 10c9b8eb996bcabbe4ef40c51248fd6fca70814a Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 20 Mar 2014 16:15:18 +0100 Subject: [PATCH 259/333] Cache folder is now configurable When using an external cache folder, it is automatically mounted in FileSystem::initFileSystem so that any app can use it transparently by creating a view on the "/$user/cache" directory. --- config/config.sample.php | 13 +++++++++-- lib/private/cache/file.php | 15 +++++++------ lib/private/files/filesystem.php | 36 ++++++++++++++++++++++++++++++ lib/private/forbiddenexception.php | 16 +++++++++++++ 4 files changed, 71 insertions(+), 9 deletions(-) create mode 100644 lib/private/forbiddenexception.php diff --git a/config/config.sample.php b/config/config.sample.php index 987a866e49..f8e216d1e2 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -273,6 +273,15 @@ $CONFIG = array( /* all css and js files will be served by the web server statically in one js file and ons css file*/ 'asset-pipeline.enabled' => false, - /* where mount.json file should be stored, defaults to data/mount.json */ - 'mount_file' => '', +/* where mount.json file should be stored, defaults to data/mount.json */ +'mount_file' => '', + +/* + * Location of the cache folder, defaults to "data/$user/cache" where "$user" is the current user. + * + * When specified, the format will change to "$cache_path/$user" where "$cache_path" is the configured + * cache directory and "$user" is the user. + * + */ +'cache_path' => '' ); diff --git a/lib/private/cache/file.php b/lib/private/cache/file.php index 8a6ef39f61..be6805a9a5 100644 --- a/lib/private/cache/file.php +++ b/lib/private/cache/file.php @@ -1,6 +1,7 @@ + * Copyright (c) 2014 Vincent Petry * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. @@ -10,22 +11,22 @@ namespace OC\Cache; class File { protected $storage; + + /** + * Returns the cache storage for the logged in user + * @return cache storage + */ protected function getStorage() { if (isset($this->storage)) { return $this->storage; } if(\OC_User::isLoggedIn()) { \OC\Files\Filesystem::initMountPoints(\OC_User::getUser()); - $subdir = 'cache'; - $view = new \OC\Files\View('/' . \OC_User::getUser()); - if(!$view->file_exists($subdir)) { - $view->mkdir($subdir); - } - $this->storage = new \OC\Files\View('/' . \OC_User::getUser().'/'.$subdir); + $this->storage = new \OC\Files\View('/' . \OC_User::getUser() . '/cache'); return $this->storage; }else{ \OC_Log::write('core', 'Can\'t get cache storage, user not logged in', \OC_Log::ERROR); - return false; + throw new \OC\ForbiddenException('Can\t get cache storage, user not logged in'); } } diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index c31e0c3818..56bafc7e97 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -321,10 +321,46 @@ class Filesystem { self::mount('\OC\Files\Storage\Local', array('datadir' => $root), $user); } + self::mountCacheDir($user); + // Chance to mount for other storages \OC_Hook::emit('OC_Filesystem', 'post_initMountPoints', array('user' => $user, 'user_dir' => $root)); } + /** + * Mounts the cache directory + * @param string $user user name + */ + private static function mountCacheDir($user) { + $cacheBaseDir = \OC_Config::getValue('cache_path', ''); + if ($cacheBaseDir === '') { + // use local cache dir relative to the user's home + $subdir = 'cache'; + $view = new \OC\Files\View('/' . $user); + if(!$view->file_exists($subdir)) { + $view->mkdir($subdir); + } + } else { + $cacheDir = rtrim($cacheBaseDir, '/') . '/' . $user; + if (!file_exists($cacheDir)) { + mkdir($cacheDir, 0770, true); + } + // mount external cache dir to "/$user/cache" mount point + self::mount('\OC\Files\Storage\Local', array('datadir' => $cacheDir), '/' . $user . '/cache'); + } + } + + /** + * fill in the correct values for $user + * + * @param string $user + * @param string $input + * @return string + */ + private static function setUserVars($user, $input) { + return str_replace('$user', $user, $input); + } + /** * get the default filesystem view * diff --git a/lib/private/forbiddenexception.php b/lib/private/forbiddenexception.php new file mode 100644 index 0000000000..14a4cd1498 --- /dev/null +++ b/lib/private/forbiddenexception.php @@ -0,0 +1,16 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC; + +/** + * Exception thrown whenever access to a resource has + * been forbidden or whenever a user isn't authenticated. + */ +class ForbiddenException extends \Exception { +} From fb7f3008d33cb123f8b6931f6edf8697913b355a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 24 Mar 2014 13:46:31 +0100 Subject: [PATCH 260/333] idn have to be converted before being used --- lib/private/mail.php | 17 +++++++++++++++++ tests/lib/mail.php | 30 ++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 tests/lib/mail.php diff --git a/lib/private/mail.php b/lib/private/mail.php index 9605290fe5..f691fda979 100644 --- a/lib/private/mail.php +++ b/lib/private/mail.php @@ -73,6 +73,7 @@ class OC_Mail { $mailo->FromName = $fromname;; $mailo->Sender = $fromaddress; try { + $toaddress = self::buildAsciiEmail($toaddress); $mailo->AddAddress($toaddress, $toname); if($ccaddress<>'') $mailo->AddCC($ccaddress, $ccname); @@ -125,6 +126,22 @@ class OC_Mail { * @return bool */ public static function ValidateAddress($emailAddress) { + $emailAddress = self::buildAsciiEmail($emailAddress); return PHPMailer::ValidateAddress($emailAddress); } + + /** + * IDN domains will be properly converted to ascii domains. + * + * @param string $emailAddress + * @return string + */ + public static function buildAsciiEmail($emailAddress) { + + list($name, $domain) = explode('@', $emailAddress, 2); + $domain = idn_to_ascii($domain); + + return "$name@$domain"; + } + } diff --git a/tests/lib/mail.php b/tests/lib/mail.php new file mode 100644 index 0000000000..a88a9d797a --- /dev/null +++ b/tests/lib/mail.php @@ -0,0 +1,30 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Mail extends PHPUnit_Framework_TestCase { + + /** + * @dataProvider buildAsciiEmailProvider + * @param $expected + * @param $address + */ + public function testBuildAsciiEmail($expected, $address) { + $actual = \OC_Mail::buildAsciiEmail($address); + $this->assertEquals($expected, $actual); + } + + function buildAsciiEmailProvider() { + return array( + array('info@example.com', 'info@example.com'), + array('info@xn--cjr6vy5ejyai80u.com', 'info@國際化域名.com'), + array('info@xn--mller-kva.de', 'info@müller.de'), + array('info@xn--mller-kva.xn--mller-kva.de', 'info@müller.müller.de'), + ); + } + +} From 690c31ec20cc15129576fe64140d8733f9daf640 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 24 Mar 2014 13:27:46 +0000 Subject: [PATCH 261/333] Insert missing brace --- apps/files_external/js/settings.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 0fceb41c0a..00793a614c 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -189,11 +189,11 @@ $(document).ready(function() { if (placeholder.indexOf('*') === 0) { var class_string = is_optional ? ' class="optional"' : ''; td.append(''); - else if (placeholder.indexOf('!') === 0) { + } else if (placeholder.indexOf('!') === 0) { td.append(''); - else if (placeholder.indexOf('#') === 0) { + } else if (placeholder.indexOf('#') === 0) { td.append(''); - else { + } else { var class_string = is_optional ? ' class="optional"' : ''; td.append(''); } From 1e39719926ea4b204a3b0a3e8aeba6a9a9ad5a96 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 24 Mar 2014 14:32:04 +0100 Subject: [PATCH 262/333] Added unit tests for external cache folder --- tests/lib/files/filesystem.php | 51 ++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/tests/lib/files/filesystem.php b/tests/lib/files/filesystem.php index 90f1dfe581..53f528af79 100644 --- a/tests/lib/files/filesystem.php +++ b/tests/lib/files/filesystem.php @@ -226,4 +226,55 @@ class Filesystem extends \PHPUnit_Framework_TestCase { $path = $arguments['path']; $this->assertEquals($path, \OC\Files\Filesystem::normalizePath($path)); //the path passed to the hook should already be normalized } + + /** + * Test that the default cache dir is part of the user's home + */ + public function testMountDefaultCacheDir() { + $userId = uniqid('user_'); + $oldCachePath = \OC_Config::getValue('cache_path', ''); + // no cache path configured + \OC_Config::setValue('cache_path', ''); + + \OC_User::createUser($userId, $userId); + \OC\Files\Filesystem::initMountPoints($userId); + + $this->assertEquals( + '/' . $userId . '/', + \OC\Files\Filesystem::getMountPoint('/' . $userId . '/cache') + ); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/cache'); + $this->assertInstanceOf('\OC\Files\Storage\Home', $storage); + $this->assertEquals('cache', $internalPath); + \OC_User::deleteUser($userId); + + \OC_Config::setValue('cache_path', $oldCachePath); + } + + /** + * Test that an external cache is mounted into + * the user's home + */ + public function testMountExternalCacheDir() { + $userId = uniqid('user_'); + + $oldCachePath = \OC_Config::getValue('cache_path', ''); + // set cache path to temp dir + $cachePath = \OC_Helper::tmpFolder() . '/extcache'; + \OC_Config::setValue('cache_path', $cachePath); + + \OC_User::createUser($userId, $userId); + \OC\Files\Filesystem::initMountPoints($userId); + + $this->assertEquals( + '/' . $userId . '/cache/', + \OC\Files\Filesystem::getMountPoint('/' . $userId . '/cache') + ); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/cache'); + $this->assertInstanceOf('\OC\Files\Storage\Local', $storage); + $this->assertEquals('', $internalPath); + \OC_User::deleteUser($userId); + + \OC_Config::setValue('cache_path', $oldCachePath); + } } From 0d0aac6fffb2da47054ed19eae835aa7d9904692 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 24 Mar 2014 14:55:03 +0100 Subject: [PATCH 263/333] Load the routes when matching or generating a route instead of when creating the router --- lib/private/route/router.php | 2 ++ lib/private/server.php | 16 +++++++++++----- lib/public/route/irouter.php | 2 -- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index 60ba587840..806bbf51ab 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -158,6 +158,7 @@ class Router implements IRouter { * @throws \Exception */ public function match($url) { + $this->loadRoutes(); $matcher = new UrlMatcher($this->root, $this->context); $parameters = $matcher->match($url); if (isset($parameters['action'])) { @@ -196,6 +197,7 @@ class Router implements IRouter { * @return string */ public function generate($name, $parameters = array(), $absolute = false) { + $this->loadRoutes(); return $this->getGenerator()->generate($name, $parameters, $absolute); } diff --git a/lib/private/server.php b/lib/private/server.php index 8c9ea39c56..5c83f3ef49 100644 --- a/lib/private/server.php +++ b/lib/private/server.php @@ -159,7 +159,15 @@ class Server extends SimpleContainer implements IServerContainer { return new \OC\BackgroundJob\JobList($c->getDatabaseConnection(), $config); }); $this->registerService('Router', function ($c){ - $router = new \OC\Route\Router(); + /** + * @var Server $c + */ + $cacheFactory = $c->getMemCacheFactory(); + if ($cacheFactory->isAvailable()) { + $router = new \OC\Route\CachingRouter($cacheFactory->create('route')); + } else { + $router = new \OC\Route\Router(); + } return $router; }); } @@ -327,7 +335,7 @@ class Server extends SimpleContainer implements IServerContainer { /** * Returns an \OCP\CacheFactory instance * - * @return \OCP\CacheFactory + * @return \OCP\ICacheFactory */ function getMemCacheFactory() { return $this->query('MemCacheFactory'); @@ -375,8 +383,6 @@ class Server extends SimpleContainer implements IServerContainer { * @return \OCP\Route\IRouter */ function getRouter(){ - $router = $this->query('Router'); - $router->loadRoutes(); - return $router; + return $this->query('Router'); } } diff --git a/lib/public/route/irouter.php b/lib/public/route/irouter.php index d6b0750ba6..df397bc875 100644 --- a/lib/public/route/irouter.php +++ b/lib/public/route/irouter.php @@ -10,8 +10,6 @@ namespace OCP\Route; interface IRouter { - public function __construct(); - /** * Get the files to load the routes from * From 3eb5898f7b8f8b836b15dcb9c9a9213d7edbda96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 24 Mar 2014 15:35:07 +0100 Subject: [PATCH 264/333] use \OC_Mail::validateAddress() to validate the email address - fixes #7862 --- lib/private/mail.php | 2 +- lib/public/util.php | 2 +- settings/ajax/lostpassword.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/private/mail.php b/lib/private/mail.php index f691fda979..79f5160963 100644 --- a/lib/private/mail.php +++ b/lib/private/mail.php @@ -125,7 +125,7 @@ class OC_Mail { * @param string $emailAddress a given email address to be validated * @return bool */ - public static function ValidateAddress($emailAddress) { + public static function validateAddress($emailAddress) { $emailAddress = self::buildAsciiEmail($emailAddress); return PHPMailer::ValidateAddress($emailAddress); } diff --git a/lib/public/util.php b/lib/public/util.php index 5cc7f0f467..f02213f244 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -266,7 +266,7 @@ class Util { $host_name = \OC_Config::getValue('mail_domain', $host_name); $defaultEmailAddress = $user_part.'@'.$host_name; - if (\OC_Mail::ValidateAddress($defaultEmailAddress)) { + if (\OC_Mail::validateAddress($defaultEmailAddress)) { return $defaultEmailAddress; } diff --git a/settings/ajax/lostpassword.php b/settings/ajax/lostpassword.php index b5f47bbcea..88c2bee614 100644 --- a/settings/ajax/lostpassword.php +++ b/settings/ajax/lostpassword.php @@ -6,7 +6,7 @@ OCP\JSON::callCheck(); $l=OC_L10N::get('core'); // Get data -if( isset( $_POST['email'] ) && filter_var( $_POST['email'], FILTER_VALIDATE_EMAIL) ) { +if( isset( $_POST['email'] ) && OC_Mail::validateAddress($_POST['email']) ) { $email=trim($_POST['email']); OC_Preferences::setValue(OC_User::getUser(), 'settings', 'email', $email); OC_JSON::success(array("data" => array( "message" => $l->t("Email saved") ))); From f17674fef281da097838c22c71e14698f842a2db Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 24 Mar 2014 15:41:46 +0100 Subject: [PATCH 265/333] Only load routes from the apps we need --- lib/private/route/router.php | 48 +++++++++++++++++++++++++++--------- lib/public/route/irouter.php | 2 +- 2 files changed, 37 insertions(+), 13 deletions(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index 806bbf51ab..28c27b601c 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -47,6 +47,8 @@ class Router implements IRouter { protected $loaded = false; + protected $loadedApps = array(); + public function __construct() { $baseUrl = \OC_Helper::linkTo('', 'index.php'); if (!\OC::$CLI) { @@ -93,27 +95,44 @@ class Router implements IRouter { /** * loads the api routes */ - public function loadRoutes() { + public function loadRoutes($app = null) { if ($this->loaded) { return; } - $this->loaded = true; - foreach ($this->getRoutingFiles() as $app => $file) { + if (is_null($app)) { + $this->loaded = true; + $routingFiles = $this->getRoutingFiles(); + } else { + if (isset($this->loadedApps[$app])) { + return; + } + $this->loadedApps[$app] = true; + $file = \OC_App::getAppPath($app) . '/appinfo/routes.php'; + if (file_exists($file)) { + $routingFiles = array($file); + } else { + $routingFiles = array(); + } + } + foreach ($routingFiles as $app => $file) { $this->useCollection($app); require_once $file; $collection = $this->getCollection($app); $collection->addPrefix('/apps/' . $app); $this->root->addCollection($collection); } - $this->useCollection('root'); - require_once 'settings/routes.php'; - require_once 'core/routes.php'; + if (!isset($this->loadedApps['core'])) { + $this->loadedApps['core'] = true; + $this->useCollection('root'); + require_once 'settings/routes.php'; + require_once 'core/routes.php'; - // include ocs routes - require_once 'ocs/routes.php'; - $collection = $this->getCollection('ocs'); - $collection->addPrefix('/ocs'); - $this->root->addCollection($collection); + // include ocs routes + require_once 'ocs/routes.php'; + $collection = $this->getCollection('ocs'); + $collection->addPrefix('/ocs'); + $this->root->addCollection($collection); + } } /** @@ -158,7 +177,12 @@ class Router implements IRouter { * @throws \Exception */ public function match($url) { - $this->loadRoutes(); + if (substr($url, 0, 6) === '/apps/') { + list(, , $app,) = explode('/', $url, 4); + $this->loadRoutes($app); + } else { + $this->loadRoutes(); + } $matcher = new UrlMatcher($this->root, $this->context); $parameters = $matcher->match($url); if (isset($parameters['action'])) { diff --git a/lib/public/route/irouter.php b/lib/public/route/irouter.php index df397bc875..125cd29e81 100644 --- a/lib/public/route/irouter.php +++ b/lib/public/route/irouter.php @@ -22,7 +22,7 @@ interface IRouter { /** * loads the api routes */ - public function loadRoutes(); + public function loadRoutes($app = null); /** * Sets the collection to use for adding routes From 0e1cb001b64f45597300282d41965aeff3d11188 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 24 Mar 2014 15:42:21 +0100 Subject: [PATCH 266/333] Cache generated urls for routes --- lib/private/route/cachingrouter.php | 43 +++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 lib/private/route/cachingrouter.php diff --git a/lib/private/route/cachingrouter.php b/lib/private/route/cachingrouter.php new file mode 100644 index 0000000000..ad25372391 --- /dev/null +++ b/lib/private/route/cachingrouter.php @@ -0,0 +1,43 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Route; + +class CachingRouter extends Router { + /** + * @var \OCP\ICache + */ + protected $cache; + + /** + * @param \OCP\ICache $cache + */ + public function __construct($cache) { + $this->cache = $cache; + parent::__construct(); + } + + /** + * Generate url based on $name and $parameters + * + * @param string $name Name of the route to use. + * @param array $parameters Parameters for the route + * @param bool $absolute + * @return string + */ + public function generate($name, $parameters = array(), $absolute = false) { + $key = $name . json_encode($parameters) . $absolute; + if ($this->cache->hasKey($key)) { + return $this->cache->get($key); + } else { + $url = parent::generate($name, $parameters, $absolute); + $this->cache->set($key, $url, 3600); + return $url; + } + } +} From 9e89ad07c64cba95093bc40a44daf54621275e15 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 24 Mar 2014 16:20:53 +0100 Subject: [PATCH 267/333] Only load core routes when matching a core route --- lib/private/route/router.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index 28c27b601c..a0e701d391 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -106,15 +106,15 @@ class Router implements IRouter { if (isset($this->loadedApps[$app])) { return; } - $this->loadedApps[$app] = true; $file = \OC_App::getAppPath($app) . '/appinfo/routes.php'; if (file_exists($file)) { - $routingFiles = array($file); + $routingFiles[$app] = array($file); } else { $routingFiles = array(); } } foreach ($routingFiles as $app => $file) { + $this->loadedApps[$app] = true; $this->useCollection($app); require_once $file; $collection = $this->getCollection($app); @@ -171,7 +171,7 @@ class Router implements IRouter { } /** - * Find the route matching $url. + * Find the route matching $url * * @param string $url The url to find * @throws \Exception @@ -180,6 +180,8 @@ class Router implements IRouter { if (substr($url, 0, 6) === '/apps/') { list(, , $app,) = explode('/', $url, 4); $this->loadRoutes($app); + } else if(substr($url, 0, 6) === '/core/') { + $this->loadRoutes('core'); } else { $this->loadRoutes(); } From e72b2e6e3be3057effd7465bf875552a5d95e9b9 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Mon, 24 Mar 2014 17:34:37 +0100 Subject: [PATCH 268/333] Fix public upload to not close session when encryption is on The encryption app needs to create keys when uploading files, so the session needs to be kept open in such case. --- apps/files/ajax/upload.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 37c600e91d..4ed51c5277 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -58,7 +58,10 @@ if (empty($_POST['dirToken'])) { OCP\JSON::callCheck(); -\OC::$session->close(); +if (!\OCP\App::isEnabled('files_encryption')) { + // encryption app need to create keys later, so can't close too early + \OC::$session->close(); +} // get array with current storage stats (e.g. max file size) From b92dad992f86caf3d30f5a10856c417c2a0a28bc Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 25 Mar 2014 01:55:34 -0400 Subject: [PATCH 269/333] [tx-robot] updated from transifex --- core/l10n/ar.php | 4 +++ core/l10n/bg_BG.php | 1 + core/l10n/da.php | 7 +++++ l10n/ar/core.po | 14 +++++----- l10n/bg_BG/core.po | 8 +++--- l10n/da/core.po | 22 +++++++-------- l10n/da/lib.po | 42 ++++++++++++++--------------- l10n/da/settings.po | 22 +++++++-------- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 4 +-- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- lib/l10n/da.php | 6 +++++ settings/l10n/da.php | 7 +++++ 22 files changed, 92 insertions(+), 67 deletions(-) diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 1ec1bf018b..8c1d5ec307 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -82,11 +82,13 @@ $TRANSLATIONS = array( "Add" => "اضف", "The update was unsuccessful. Please report this issue to the ownCloud community." => "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud", +"%s password reset" => "تمت إعادة ضبط كلمة مرور %s", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "وصلة تحديث كلمة المرور بعثت الى بريدك الالكتروني.
اذا لم تستقبل البريد خلال فترة زمنية قصيره, ابحث في سلة مهملات بريدك.", "Request failed!
Did you make sure your email/username was right?" => "الطلب رفض!
هل انت متأكد أن الاسم/العنوان البريدي صحيح؟", "You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.", "Username" => "إسم المستخدم", +"Yes, I really want to reset my password now" => "نعم، أريد إعادة ضبظ كلمة مروري", "Your password was reset" => "لقد تم تعديل كلمة السر", "To login page" => "الى صفحة الدخول", "New password" => "كلمات سر جديدة", @@ -100,9 +102,11 @@ $TRANSLATIONS = array( "Cloud not found" => "لم يتم إيجاد", "Security Warning" => "تحذير أمان", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "يرجى تحديث نسخة PHP لاستخدام %s بطريقة آمنة", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "بدون وجود مولد أرقام عشوائية آمن قد يتمكن المهاجم من التنبؤ بكلمات اعادة ضبط كلمة المرور والتمكن من السيطرة على حسابك", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "مجلدات البيانات والملفات الخاصة قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت وذلك بسبب ان ملف .htaccess لا يعمل بشكل صحيح.", +"For information how to properly configure your server, please see the documentation." => "لمزيد من المعلومات عن كيفية إعداد خادمك، يرجى الاطلاع على صفحة المساعدة.", "Create an admin account" => "أضف
مستخدم رئيسي ", "Data folder" => "مجلد المعلومات", "Configure the database" => "أسس قاعدة البيانات", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 9178bb99cb..397440bea2 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -54,6 +54,7 @@ $TRANSLATIONS = array( "Expiration date" => "Дата на изтичане", "Share via email:" => "сподели по поща:", "No people found" => "Не са открити хора", +"group" => "група", "Resharing is not allowed" => "Допълнително споделяне не е разрешено", "Shared in {item} with {user}" => "Споделено в {item} с {user}", "Unshare" => "Премахни споделяне", diff --git a/core/l10n/da.php b/core/l10n/da.php index 4a98dfcc11..d3384dac43 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -56,6 +56,11 @@ $TRANSLATIONS = array( "(all selected)" => "(alle valgt)", "({count} selected)" => "({count} valgt)", "Error loading file exists template" => "Fejl ved inlæsning af; fil eksistere skabelon", +"Very weak password" => "Meget svagt kodeord", +"Weak password" => "Svagt kodeord", +"So-so password" => "Jævnt kodeord", +"Good password" => "Godt kodeord", +"Strong password" => "Stærkt kodeord", "Shared" => "Delt", "Share" => "Del", "Error" => "Fejl", @@ -103,6 +108,7 @@ $TRANSLATIONS = array( "The update was unsuccessful. Please report this issue to the ownCloud community." => "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til ownClouds community.", "The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.", "%s password reset" => "%s adgangskode nulstillet", +"A problem has occurred whilst sending the email, please contact your administrator." => "Der opstod et problem under afsending af emailen. Kontakt venligst systemadministratoren.", "Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Linket til at nulstille dit kodeord er blevet sendt til din e-post.
Hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam / junk mapper.
Hvis det ikke er der, så spørg din lokale administrator.", "Request failed!
Did you make sure your email/username was right?" => "Anmodning mislykkedes!
Er du sikker på at din e-post / brugernavn var korrekt?", @@ -140,6 +146,7 @@ $TRANSLATIONS = array( "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet fordi .htaccess filen ikke virker.", "For information how to properly configure your server, please see the documentation." => "For information om, hvordan du konfigurerer din server korrekt se dokumentationen.", "Create an admin account" => "Opret en administratorkonto", +"Storage & database" => "Lager & database", "Data folder" => "Datamappe", "Configure the database" => "Konfigurer databasen", "will be used" => "vil blive brugt", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index fa97b43fc9..b31f677213 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 13:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 14:00+0000\n" +"Last-Translator: Abderraouf Mehdi Bouhali \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -491,7 +491,7 @@ msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان #: lostpassword/controller.php:70 #, php-format msgid "%s password reset" -msgstr "" +msgstr "تمت إعادة ضبط كلمة مرور %s" #: lostpassword/controller.php:72 msgid "" @@ -533,7 +533,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "نعم، أريد إعادة ضبظ كلمة مروري" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" @@ -654,7 +654,7 @@ msgstr "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "يرجى تحديث نسخة PHP لاستخدام %s بطريقة آمنة" #: templates/installation.php:33 msgid "" @@ -679,7 +679,7 @@ msgstr "مجلدات البيانات والملفات الخاصة قد تكو msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "لمزيد من المعلومات عن كيفية إعداد خادمك، يرجى الاطلاع على صفحة المساعدة." #: templates/installation.php:48 msgid "Create an admin account" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index efbfc64d66..ca776f7ede 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# cybertorture , 2014 +# cybertorture, 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 08:40+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" @@ -358,7 +358,7 @@ msgstr "Не са открити хора" #: js/share.js:324 js/share.js:363 msgid "group" -msgstr "" +msgstr "група" #: js/share.js:335 msgid "Resharing is not allowed" diff --git a/l10n/da/core.po b/l10n/da/core.po index a9a754b660..352b90b2cf 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe, 2013 +# Sappe, 2013-2014 # claus_chr , 2013 # kaffeldt , 2013 # lodahl , 2013 @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-22 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 11:00+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -267,23 +267,23 @@ msgstr "Fejl ved inlæsning af; fil eksistere skabelon" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Meget svagt kodeord" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Svagt kodeord" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Jævnt kodeord" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Godt kodeord" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Stærkt kodeord" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -482,7 +482,7 @@ msgstr "%s adgangskode nulstillet" msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Der opstod et problem under afsending af emailen. Kontakt venligst systemadministratoren." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -672,7 +672,7 @@ msgstr "Opret en administratorkonto" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Lager & database" #: templates/installation.php:77 msgid "Data folder" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 0c41528bd3..b0a5605312 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe, 2013 +# Sappe, 2013-2014 # claus_chr , 2013 # lodahl , 2013 # Ole Holm Frandsen , 2013 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 11:30+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,7 +161,7 @@ msgstr "Adgang er udløbet. Genindlæs siden." #: private/json.php:75 msgid "Unknown user" -msgstr "" +msgstr "Ukendt bruger" #: private/search/provider/file.php:18 private/search/provider/file.php:36 msgid "Files" @@ -196,23 +196,23 @@ msgid "MS SQL username and/or password not valid: %s" msgstr "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s" #: private/setup/mssql.php:21 private/setup/mysql.php:13 -#: private/setup/oci.php:114 private/setup/postgresql.php:24 -#: private/setup/postgresql.php:70 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." msgstr "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" -msgstr "" +msgstr "Ugyldigt MySQL/MariaDB brugernavn og/eller kodeord " #: private/setup/mysql.php:67 private/setup/oci.php:54 #: private/setup/oci.php:121 private/setup/oci.php:144 #: private/setup/oci.php:151 private/setup/oci.php:162 #: private/setup/oci.php:169 private/setup/oci.php:178 #: private/setup/oci.php:186 private/setup/oci.php:195 -#: private/setup/oci.php:201 private/setup/postgresql.php:89 -#: private/setup/postgresql.php:98 private/setup/postgresql.php:115 -#: private/setup/postgresql.php:125 private/setup/postgresql.php:134 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 #, php-format msgid "DB Error: \"%s\"" msgstr "Databasefejl: \"%s\"" @@ -221,9 +221,9 @@ msgstr "Databasefejl: \"%s\"" #: private/setup/oci.php:122 private/setup/oci.php:145 #: private/setup/oci.php:152 private/setup/oci.php:163 #: private/setup/oci.php:179 private/setup/oci.php:187 -#: private/setup/oci.php:196 private/setup/postgresql.php:90 -#: private/setup/postgresql.php:99 private/setup/postgresql.php:116 -#: private/setup/postgresql.php:126 private/setup/postgresql.php:135 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" msgstr "Fejlende kommando var: \"%s\"" @@ -231,20 +231,20 @@ msgstr "Fejlende kommando var: \"%s\"" #: private/setup/mysql.php:85 #, php-format msgid "MySQL/MariaDB user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL/MariaDB bruger '%s'@'localhost' eksistere allerede." #: private/setup/mysql.php:86 msgid "Drop this user from MySQL/MariaDB" -msgstr "" +msgstr "Slet denne bruger fra MySQL/MariaDB" #: private/setup/mysql.php:91 #, php-format msgid "MySQL/MariaDB user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL/MariaDB bruger '%s'@'%%' eksistere allerede" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "" +msgstr "Drop denne bruger fra MySQL/MariaDB." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -259,7 +259,7 @@ msgstr "Oracle brugernavn og/eller kodeord er ikke gyldigt." msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" -#: private/setup/postgresql.php:23 private/setup/postgresql.php:69 +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt." @@ -271,13 +271,13 @@ msgstr "Angiv et admin brugernavn." msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: private/setup.php:198 +#: private/setup.php:202 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: private/setup.php:199 +#: private/setup.php:203 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 60a7e89f3c..f36af9bec0 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -3,7 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sappe, 2013 +# Sappe, 2013-2014 # lodahl , 2013 # Morten Juhl-Johansen Zölde-Fejér , 2013 # Ole Holm Frandsen , 2013 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-19 23:12+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"PO-Revision-Date: 2014-03-24 11:30+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,7 +161,7 @@ msgstr "Kunne ikke ændre kodeord" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Sender..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -169,7 +169,7 @@ msgstr "Brugerdokumentation" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Administrator Dokumentation" #: js/apps.js:67 msgid "Update to {appversion}" @@ -221,23 +221,23 @@ msgstr "Vælg et profilbillede" #: js/personal.js:277 msgid "Very weak password" -msgstr "" +msgstr "Meget svagt kodeord" #: js/personal.js:278 msgid "Weak password" -msgstr "" +msgstr "Svagt kodeord" #: js/personal.js:279 msgid "So-so password" -msgstr "" +msgstr "Jævnt kodeord" #: js/personal.js:280 msgid "Good password" -msgstr "" +msgstr "Godt kodeord" #: js/personal.js:281 msgid "Strong password" -msgstr "" +msgstr "Stærkt kodeord" #: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7acb9705ec..cc931844be 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index fcf0284602..2d857bc195 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 984163d0cb..4ff20152fe 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "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 cfabf72a4b..020f363e76 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "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 06a7588211..c0c031d382 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "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 8a0bd0dbdc..4f56340eed 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -35,7 +35,7 @@ msgstr "" msgid "Error" msgstr "" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index b378e9d0a5..7f48f51287 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "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 c715dba8b6..1f45c85d1a 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "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 c7d3020094..bcdb57fffb 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "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 339e47ef97..9d1388feb8 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "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 4f1f8f3d97..48561fdeb1 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "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 ae0ae4ad12..b7cf2ab809 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" +"POT-Creation-Date: 2014-03-25 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 755033f865..c316600072 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -31,6 +31,7 @@ $TRANSLATIONS = array( "Application is not enabled" => "Programmet er ikke aktiveret", "Authentication error" => "Adgangsfejl", "Token expired. Please reload page." => "Adgang er udløbet. Genindlæs siden.", +"Unknown user" => "Ukendt bruger", "Files" => "Filer", "Text" => "SMS", "Images" => "Billeder", @@ -39,8 +40,13 @@ $TRANSLATIONS = array( "%s you may not use dots in the database name" => "%s du må ikke bruge punktummer i databasenavnet.", "MS SQL username and/or password not valid: %s" => "MS SQL brugernavn og/eller adgangskode ikke er gyldigt: %s", "You need to enter either an existing account or the administrator." => "Du bliver nødt til at indtaste en eksisterende bruger eller en administrator.", +"MySQL/MariaDB username and/or password not valid" => "Ugyldigt MySQL/MariaDB brugernavn og/eller kodeord ", "DB Error: \"%s\"" => "Databasefejl: \"%s\"", "Offending command was: \"%s\"" => "Fejlende kommando var: \"%s\"", +"MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB bruger '%s'@'localhost' eksistere allerede.", +"Drop this user from MySQL/MariaDB" => "Slet denne bruger fra MySQL/MariaDB", +"MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB bruger '%s'@'%%' eksistere allerede", +"Drop this user from MySQL/MariaDB." => "Drop denne bruger fra MySQL/MariaDB.", "Oracle connection could not be established" => "Oracle forbindelsen kunne ikke etableres", "Oracle username and/or password not valid" => "Oracle brugernavn og/eller kodeord er ikke gyldigt.", "Offending command was: \"%s\", name: %s, password: %s" => "Fejlende kommando var: \"%s\", navn: %s, password: %s", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index d8ee237bed..42c99b2fc2 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -25,7 +25,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Forkert admin gendannelseskode. Se venligst koden efter og prøv igen.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Serveren understøtter ikke kodeordsskifte, men brugernes krypteringsnøgle blev opdateret.", "Unable to change password" => "Kunne ikke ændre kodeord", +"Sending..." => "Sender...", "User Documentation" => "Brugerdokumentation", +"Admin Documentation" => "Administrator Dokumentation", "Update to {appversion}" => "Opdatér til {appversion}", "Disable" => "Deaktiver", "Enable" => "Aktiver", @@ -38,6 +40,11 @@ $TRANSLATIONS = array( "Update" => "Opdater", "Updated" => "Opdateret", "Select a profile picture" => "Vælg et profilbillede", +"Very weak password" => "Meget svagt kodeord", +"Weak password" => "Svagt kodeord", +"So-so password" => "Jævnt kodeord", +"Good password" => "Godt kodeord", +"Strong password" => "Stærkt kodeord", "Decrypting files... Please wait, this can take some time." => "Dekryptere filer... Vent venligst, dette kan tage lang tid. ", "deleted" => "Slettet", "undo" => "fortryd", From c17f415356ef9a8145de6403cb40af203d6c574e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 25 Mar 2014 13:42:47 +0100 Subject: [PATCH 270/333] Only load core routes for ocs and settings --- lib/private/route/router.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index a0e701d391..8b2c9e72f2 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -178,9 +178,10 @@ class Router implements IRouter { */ public function match($url) { if (substr($url, 0, 6) === '/apps/') { + // empty string / 'apps' / $app / rest of the route list(, , $app,) = explode('/', $url, 4); $this->loadRoutes($app); - } else if(substr($url, 0, 6) === '/core/') { + } else if(substr($url, 0, 6) === '/core/' or substr($url, 0, 5) === '/ocs/' or substr($url, 0, 10) === '/settings/') { $this->loadRoutes('core'); } else { $this->loadRoutes(); From e1d3d0e9486f8816d9e180b5231e66af7211fba6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 25 Mar 2014 14:04:18 +0100 Subject: [PATCH 271/333] fix incorect array --- lib/private/route/router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index 8b2c9e72f2..a9fad7bc29 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -108,7 +108,7 @@ class Router implements IRouter { } $file = \OC_App::getAppPath($app) . '/appinfo/routes.php'; if (file_exists($file)) { - $routingFiles[$app] = array($file); + $routingFiles = array($app => $file); } else { $routingFiles = array(); } From d75c3d5f9ab0f0c7a65a1d497311117ccdc981cd Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 25 Mar 2014 14:28:30 +0100 Subject: [PATCH 272/333] Fix routes getting lost when loading app routes twice --- lib/private/route/router.php | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index a9fad7bc29..bad74c925f 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -114,12 +114,14 @@ class Router implements IRouter { } } foreach ($routingFiles as $app => $file) { - $this->loadedApps[$app] = true; - $this->useCollection($app); - require_once $file; - $collection = $this->getCollection($app); - $collection->addPrefix('/apps/' . $app); - $this->root->addCollection($collection); + if (!$this->loadedApps[$app]) { + $this->loadedApps[$app] = true; + $this->useCollection($app); + require_once $file; + $collection = $this->getCollection($app); + $collection->addPrefix('/apps/' . $app); + $this->root->addCollection($collection); + } } if (!isset($this->loadedApps['core'])) { $this->loadedApps['core'] = true; @@ -181,7 +183,7 @@ class Router implements IRouter { // empty string / 'apps' / $app / rest of the route list(, , $app,) = explode('/', $url, 4); $this->loadRoutes($app); - } else if(substr($url, 0, 6) === '/core/' or substr($url, 0, 5) === '/ocs/' or substr($url, 0, 10) === '/settings/') { + } else if (substr($url, 0, 6) === '/core/' or substr($url, 0, 5) === '/ocs/' or substr($url, 0, 10) === '/settings/') { $this->loadRoutes('core'); } else { $this->loadRoutes(); From f9279ac77ac8f4541bd0237fd5126f10cb7798a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 17:42:41 +0100 Subject: [PATCH 273/333] killing some more calls to OC_App::loadApps(); - because we load all apps in handleRequest() --- apps/files/command/scan.php | 1 - core/ajax/share.php | 1 - search/ajax/search.php | 1 - settings/admin.php | 1 - settings/apps.php | 1 - settings/changepassword/controller.php | 6 ------ settings/help.php | 1 - settings/personal.php | 1 - settings/settings.php | 1 - settings/users.php | 1 - 10 files changed, 15 deletions(-) diff --git a/apps/files/command/scan.php b/apps/files/command/scan.php index f334f29a93..25ab70af36 100644 --- a/apps/files/command/scan.php +++ b/apps/files/command/scan.php @@ -58,7 +58,6 @@ class Scan extends Command { protected function execute(InputInterface $input, OutputInterface $output) { if ($input->getOption('all')) { - \OC_App::loadApps('authentication'); $users = $this->userManager->search(''); } else { $users = $input->getArgument('user_id'); diff --git a/core/ajax/share.php b/core/ajax/share.php index 3f04e1e4ad..e667d9b5fa 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -21,7 +21,6 @@ OC_JSON::checkLoggedIn(); OCP\JSON::callCheck(); -OC_App::loadApps(); $defaults = new \OCP\Defaults(); diff --git a/search/ajax/search.php b/search/ajax/search.php index f0ca5752b9..0cc1f9d30c 100644 --- a/search/ajax/search.php +++ b/search/ajax/search.php @@ -23,7 +23,6 @@ // Check if we are a user OC_JSON::checkLoggedIn(); -OC_App::loadApps(); $query=(isset($_GET['query']))?$_GET['query']:''; if($query) { diff --git a/settings/admin.php b/settings/admin.php index 80b038d2ef..5e04f34367 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -6,7 +6,6 @@ */ OC_Util::checkAdminUser(); -OC_App::loadApps(); OC_Util::addStyle( "settings", "settings" ); OC_Util::addScript( "settings", "admin" ); diff --git a/settings/apps.php b/settings/apps.php index 96b6d21b50..6fd2efc201 100644 --- a/settings/apps.php +++ b/settings/apps.php @@ -22,7 +22,6 @@ */ OC_Util::checkAdminUser(); -OC_App::loadApps(); // Load the files we need OC_Util::addStyle( "settings", "settings" ); diff --git a/settings/changepassword/controller.php b/settings/changepassword/controller.php index e8c2a1943f..9f1e732996 100644 --- a/settings/changepassword/controller.php +++ b/settings/changepassword/controller.php @@ -8,9 +8,6 @@ class Controller { \OC_JSON::callCheck(); \OC_JSON::checkLoggedIn(); - // Manually load apps to ensure hooks work correctly (workaround for issue 1503) - \OC_App::loadApps(); - $username = \OC_User::getUser(); $password = isset($_POST['personal-password']) ? $_POST['personal-password'] : null; $oldPassword = isset($_POST['oldpassword']) ? $_POST['oldpassword'] : ''; @@ -32,9 +29,6 @@ class Controller { \OC_JSON::callCheck(); \OC_JSON::checkLoggedIn(); - // Manually load apps to ensure hooks work correctly (workaround for issue 1503) - \OC_App::loadApps(); - if (isset($_POST['username'])) { $username = $_POST['username']; } else { diff --git a/settings/help.php b/settings/help.php index 88693939b8..301f50592a 100644 --- a/settings/help.php +++ b/settings/help.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_App::loadApps(); // Load the files we need OC_Util::addStyle( "settings", "settings" ); diff --git a/settings/personal.php b/settings/personal.php index cf1a496bdf..be1aa6400b 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_App::loadApps(); $defaults = new OC_Defaults(); // initialize themable default strings and urls diff --git a/settings/settings.php b/settings/settings.php index 1e05452ec4..c08732fcf6 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -6,7 +6,6 @@ */ OC_Util::checkLoggedIn(); -OC_App::loadApps(); OC_Util::addStyle( 'settings', 'settings' ); OC_App::setActiveNavigationEntry( 'settings' ); diff --git a/settings/users.php b/settings/users.php index 2f1c63a0b5..f09d0e90d3 100644 --- a/settings/users.php +++ b/settings/users.php @@ -6,7 +6,6 @@ */ OC_Util::checkSubAdminUser(); -OC_App::loadApps(); // We have some javascript foo! OC_Util::addScript( 'settings', 'users' ); From 8b86b94d47d7fa78669bdc4f17e4b1fa39079787 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 17:46:05 +0100 Subject: [PATCH 274/333] call OC_App::loadApps(); to load all commands of all apps and related functionality --- console.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/console.php b/console.php index fc6957062b..dd2c1026e4 100644 --- a/console.php +++ b/console.php @@ -21,6 +21,9 @@ if (!OC::$CLI) { exit(0); } +// load all apps to get all api routes properly setup +OC_App::loadApps(); + $defaults = new OC_Defaults; $application = new Application($defaults->getName(), \OC_Util::getVersionString()); require_once 'core/register_command.php'; From 8b6d1d3bf2b31c13417bbac0ede6bc319877bf61 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 18 Feb 2014 12:37:32 +0100 Subject: [PATCH 275/333] added private share api --- lib/private/share/share.php | 1886 +++++++++++++++++++++++++++++++++++ lib/public/share.php | 1705 ++----------------------------- 2 files changed, 1944 insertions(+), 1647 deletions(-) create mode 100644 lib/private/share/share.php diff --git a/lib/private/share/share.php b/lib/private/share/share.php new file mode 100644 index 0000000000..b44d362672 --- /dev/null +++ b/lib/private/share/share.php @@ -0,0 +1,1886 @@ + + * 2014 Bjoern Schiessle + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + */ + +namespace OC\Share; + +/** + * This class provides the ability for apps to share their content between users. + * Apps must create a backend class that implements OCP\Share_Backend and register it with this class. + * + * It provides the following hooks: + * - post_shared + */ +class Share { + + const SHARE_TYPE_USER = 0; + const SHARE_TYPE_GROUP = 1; + const SHARE_TYPE_LINK = 3; + const SHARE_TYPE_EMAIL = 4; + const SHARE_TYPE_CONTACT = 5; + const SHARE_TYPE_REMOTE = 6; + + /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask + * Construct permissions for share() and setPermissions with Or (|) e.g. + * Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE + * + * Check if permission is granted with And (&) e.g. Check if delete is + * granted: if ($permissions & PERMISSION_DELETE) + * + * Remove permissions with And (&) and Not (~) e.g. Remove the update + * permission: $permissions &= ~PERMISSION_UPDATE + * + * Apps are required to handle permissions on their own, this class only + * stores and manages the permissions of shares + * @see lib/public/constants.php + */ + + const FORMAT_NONE = -1; + const FORMAT_STATUSES = -2; + const FORMAT_SOURCES = -3; + + const TOKEN_LENGTH = 32; // see db_structure.xml + + private static $shareTypeUserAndGroups = -1; + private static $shareTypeGroupUserUnique = 2; + private static $backends = array(); + private static $backendTypes = array(); + private static $isResharingAllowed; + + /** + * Register a sharing backend class that implements OCP\Share_Backend for an item type + * @param string Item type + * @param string Backend class + * @param string (optional) Depends on item type + * @param array (optional) List of supported file extensions if this item type depends on files + * @return Returns true if backend is registered or false if error + */ + public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { + if (self::isEnabled()) { + if (!isset(self::$backendTypes[$itemType])) { + self::$backendTypes[$itemType] = array( + 'class' => $class, + 'collectionOf' => $collectionOf, + 'supportedFileExtensions' => $supportedFileExtensions + ); + if(count(self::$backendTypes) === 1) { + \OC_Util::addScript('core', 'share'); + \OC_Util::addStyle('core', 'share'); + } + return true; + } + \OC_Log::write('OCP\Share', + 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'] + .' is already registered for '.$itemType, + \OC_Log::WARN); + } + return false; + } + + /** + * Check if the Share API is enabled + * @return Returns true if enabled or false + * + * The Share API is enabled by default if not configured + */ + public static function isEnabled() { + if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') { + return true; + } + return false; + } + + /** + * Prepare a path to be passed to DB as file_target + * @param string $path path + * @return string Prepared path + */ + public static function prepFileTarget( $path ) { + + // Paths in DB are stored with leading slashes, so add one if necessary + if ( substr( $path, 0, 1 ) !== '/' ) { + + $path = '/' . $path; + + } + + return $path; + + } + + /** + * Find which users can access a shared item + * @param $path to the file + * @param $user owner of the file + * @param include owner to the list of users with access to the file + * @return array + * @note $path needs to be relative to user data dir, e.g. 'file.txt' + * not '/admin/data/file.txt' + */ + public static function getUsersSharingFile($path, $user, $includeOwner = false) { + + $shares = array(); + $publicShare = false; + $source = -1; + $cache = false; + + $view = new \OC\Files\View('/' . $user . '/files'); + if ($view->file_exists($path)) { + $meta = $view->getFileInfo($path); + } else { + // if the file doesn't exists yet we start with the parent folder + $meta = $view->getFileInfo(dirname($path)); + } + + if($meta !== false) { + $source = $meta['fileid']; + $cache = new \OC\Files\Cache\Cache($meta['storage']); + } + + while ($source !== -1) { + + // Fetch all shares with another user + $query = \OC_DB::prepare( + 'SELECT `share_with` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' + ); + + $result = $query->execute(array($source, self::SHARE_TYPE_USER)); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + $shares[] = $row['share_with']; + } + } + // We also need to take group shares into account + + $query = \OC_DB::prepare( + 'SELECT `share_with` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' + ); + + $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + $usersInGroup = \OC_Group::usersInGroup($row['share_with']); + $shares = array_merge($shares, $usersInGroup); + } + } + + //check for public link shares + if (!$publicShare) { + $query = \OC_DB::prepare( + 'SELECT `share_with` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' + ); + + $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + if ($result->fetchRow()) { + $publicShare = true; + } + } + } + + // let's get the parent for the next round + $meta = $cache->get((int)$source); + if($meta !== false) { + $source = (int)$meta['parent']; + } else { + $source = -1; + } + } + // Include owner in list of users, if requested + if ($includeOwner) { + $shares[] = $user; + } + + return array("users" => array_unique($shares), "public" => $publicShare); + } + + /** + * Get the items of item type shared with the current user + * @param string Item type + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, + $parameters = null, $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, + $parameters, $limit, $includeCollections); + } + + /** + * Get the item of item type shared with the current user + * @param string $itemType + * @param string $itemTarget + * @param int $format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, + $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, + $parameters, 1, $includeCollections); + } + + /** + * Get the item of item type shared with a given user by source + * @param string $itemType + * @param string $itemSource + * @param string $user User user to whom the item was shared + * @return array Return list of items with file_target, permissions and expiration + */ + public static function getItemSharedWithUser($itemType, $itemSource, $user) { + + $shares = array(); + + // first check if there is a db entry for the specific user + $query = \OC_DB::prepare( + 'SELECT `file_target`, `permissions`, `expiration` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `item_type` = ? AND `share_with` = ?' + ); + + $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, $user)); + + while ($row = $result->fetchRow()) { + $shares[] = $row; + } + + //if didn't found a result than let's look for a group share. + if(empty($shares)) { + $groups = \OC_Group::getUserGroups($user); + + $query = \OC_DB::prepare( + 'SELECT `file_target`, `permissions`, `expiration` + FROM + `*PREFIX*share` + WHERE + `item_source` = ? AND `item_type` = ? AND `share_with` in (?)' + ); + + $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, implode(',', $groups))); + + while ($row = $result->fetchRow()) { + $shares[] = $row; + } + } + + return $shares; + + } + + /** + * Get the item of item type shared with the current user by source + * @param string Item type + * @param string Item source + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters + * @param bool include collections + * @return Return depends on format + */ + public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, + $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, + $parameters, 1, $includeCollections, true); + } + + /** + * Get the item of item type shared by a link + * @param string Item type + * @param string Item source + * @param string Owner of link + * @return Item + */ + public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { + return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, + null, 1); + } + + /** + * Based on the given token the share information will be returned - password protected shares will be verified + * @param string $token + * @return array | bool false will be returned in case the token is unknown or unauthorized + */ + public static function getShareByToken($token, $checkPasswordProtection = true) { + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1); + $result = $query->execute(array($token)); + if (\OC_DB::isError($result)) { + \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', token=' . $token, \OC_Log::ERROR); + } + $row = $result->fetchRow(); + if ($row === false) { + return false; + } + if (is_array($row) and self::expireItem($row)) { + return false; + } + + // password protected shares need to be authenticated + if ($checkPasswordProtection && !\OCP\Share::checkPasswordProtectedShare($row)) { + return false; + } + + return $row; + } + + /** + * resolves reshares down to the last real share + * @param $linkItem + * @return $fileOwner + */ + public static function resolveReShare($linkItem) + { + if (isset($linkItem['parent'])) { + $parent = $linkItem['parent']; + while (isset($parent)) { + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ?', 1); + $item = $query->execute(array($parent))->fetchRow(); + if (isset($item['parent'])) { + $parent = $item['parent']; + } else { + return $item; + } + } + } + return $linkItem; + } + + + /** + * Get the shared items of item type owned by the current user + * @param string Item type + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections + * @return Return depends on format + */ + public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, + $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, + $parameters, $limit, $includeCollections); + } + + /** + * Get the shared item of item type owned by the current user + * @param string Item type + * @param string Item source + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters + * @param bool include collections + * @return Return depends on format + */ + public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, + $parameters = null, $includeCollections = false) { + return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, + $parameters, -1, $includeCollections); + } + + /** + * Get all users an item is shared with + * @param string Item type + * @param string Item source + * @param string Owner + * @param bool Include collections + * @praram bool check expire date + * @return Return array of users + */ + public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false, $checkExpireDate = true) { + + $users = array(); + $items = self::getItems($itemType, $itemSource, null, null, $uidOwner, self::FORMAT_NONE, null, -1, $includeCollections, false, $checkExpireDate); + if ($items) { + foreach ($items as $item) { + if ((int)$item['share_type'] === self::SHARE_TYPE_USER) { + $users[] = $item['share_with']; + } else if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { + $users = array_merge($users, \OC_Group::usersInGroup($item['share_with'])); + } + } + } + return $users; + } + + /** + * Share an item with a user, group, or via private link + * @param string $itemType + * @param string $itemSource + * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string $shareWith User or group the item is being shared with + * @param int $permissions CRUDS + * @param null $itemSourceName + * @throws \Exception + * @internal param \OCP\Item $string type + * @internal param \OCP\Item $string source + * @internal param \OCP\SHARE_TYPE_USER $int , SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @internal param \OCP\User $string or group the item is being shared with + * @internal param \OCP\CRUDS $int permissions + * @return bool|string Returns true on success or false on failure, Returns token on success for links + */ + public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null) { + $uidOwner = \OC_User::getUser(); + $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); + + if (is_null($itemSourceName)) { + $itemSourceName = $itemSource; + } + + // Verify share type and sharing conditions are met + if ($shareType === self::SHARE_TYPE_USER) { + if ($shareWith == $uidOwner) { + $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the item owner'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if (!\OC_User::userExists($shareWith)) { + $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' does not exist'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if ($sharingPolicy == 'groups_only') { + $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); + if (empty($inGroup)) { + $message = 'Sharing '.$itemSourceName.' failed, because the user ' + .$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + // Check if the item source is already shared with the user, either from the same owner or a different user + if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, + $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { + // Only allow the same share to occur again if it is the same + // owner and is not a user share, this use case is for increasing + // permissions for a specific user + if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { + $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + } else if ($shareType === self::SHARE_TYPE_GROUP) { + if (!\OC_Group::groupExists($shareWith)) { + $message = 'Sharing '.$itemSourceName.' failed, because the group '.$shareWith.' does not exist'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { + $message = 'Sharing '.$itemSourceName.' failed, because ' + .$uidOwner.' is not a member of the group '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Check if the item source is already shared with the group, either from the same owner or a different user + // The check for each user in the group is done inside the put() function + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, + null, self::FORMAT_NONE, null, 1, true, true)) { + // Only allow the same share to occur again if it is the same + // owner and is not a group share, this use case is for increasing + // permissions for a specific user + if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { + $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + // Convert share with into an array with the keys group and users + $group = $shareWith; + $shareWith = array(); + $shareWith['group'] = $group; + $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); + } else if ($shareType === self::SHARE_TYPE_LINK) { + if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { + // when updating a link share + if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, + $uidOwner, self::FORMAT_NONE, null, 1)) { + // remember old token + $oldToken = $checkExists['token']; + $oldPermissions = $checkExists['permissions']; + //delete the old share + self::delete($checkExists['id']); + } + + // Generate hash of password - same method as user passwords + if (isset($shareWith)) { + $forcePortable = (CRYPT_BLOWFISH != 1); + $hasher = new \PasswordHash(8, $forcePortable); + $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); + } else { + // reuse the already set password, but only if we change permissions + // otherwise the user disabled the password protection + if ($checkExists && (int)$permissions !== (int)$oldPermissions) { + $shareWith = $checkExists['share_with']; + } + } + + // Generate token + if (isset($oldToken)) { + $token = $oldToken; + } else { + $token = \OC_Util::generateRandomBytes(self::TOKEN_LENGTH); + } + $result = self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, + null, $token, $itemSourceName); + if ($result) { + return $token; + } else { + return false; + } + } + $message = 'Sharing '.$itemSourceName.' failed, because sharing with links is not allowed'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + return false; + } else { + // Future share types need to include their own conditions + $message = 'Share type '.$shareType.' is not valid for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Put the item into the database + return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, null, $itemSourceName); + } + + /** + * Unshare an item from a user, group, or delete a private link + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @return Returns true on success or false on failure + */ + public static function unshare($itemType, $itemSource, $shareType, $shareWith) { + if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), + self::FORMAT_NONE, null, 1)) { + self::unshareItem($item); + return true; + } + return false; + } + + /** + * Unshare an item from all users, groups, and remove all links + * @param string Item type + * @param string Item source + * @return Returns true on success or false on failure + */ + public static function unshareAll($itemType, $itemSource) { + // Get all of the owners of shares of this item. + $query = \OC_DB::prepare( 'SELECT `uid_owner` from `*PREFIX*share` WHERE `item_type`=? AND `item_source`=?' ); + $result = $query->execute(array($itemType, $itemSource)); + $shares = array(); + // Add each owner's shares to the array of all shares for this item. + while ($row = $result->fetchRow()) { + $shares = array_merge($shares, self::getItems($itemType, $itemSource, null, null, $row['uid_owner'])); + } + if (!empty($shares)) { + // Pass all the vars we have for now, they may be useful + $hookParams = array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'shares' => $shares, + ); + \OC_Hook::emit('OCP\Share', 'pre_unshareAll', $hookParams); + foreach ($shares as $share) { + self::unshareItem($share); + } + \OC_Hook::emit('OCP\Share', 'post_unshareAll', $hookParams); + return true; + } + return false; + } + + /** + * Unshare an item shared with the current user + * @param string Item type + * @param string Item target + * @return Returns true on success or false on failure + * + * Unsharing from self is not allowed for items inside collections + */ + public static function unshareFromSelf($itemType, $itemTarget) { + if ($item = self::getItemSharedWith($itemType, $itemTarget)) { + if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { + // Insert an extra row for the group share and set permission + // to 0 to prevent it from showing up for the user + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share`' + .' (`item_type`, `item_source`, `item_target`, `parent`, `share_type`,' + .' `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`)' + .' VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], + $item['id'], self::$shareTypeGroupUserUnique, + \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], + $item['file_target'])); + \OC_DB::insertid('*PREFIX*share'); + // Delete all reshares by this user of the group share + self::delete($item['id'], true, \OC_User::getUser()); + } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { + // Set permission to 0 to prevent it from showing up for the user + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); + $query->execute(array(0, $item['id'])); + self::delete($item['id'], true); + } else { + self::delete($item['id']); + } + return true; + } + return false; + } + /** + * sent status if users got informed by mail about share + * @param string $itemType + * @param string $itemSource + * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param bool $status + */ + public static function setSendMailStatus($itemType, $itemSource, $shareType, $status) { + $status = $status ? 1 : 0; + + $query = \OC_DB::prepare( + 'UPDATE `*PREFIX*share` + SET `mail_send` = ? + WHERE `item_type` = ? AND `item_source` = ? AND `share_type` = ?'); + + $result = $query->execute(array($status, $itemType, $itemSource, $shareType)); + + if($result === false) { + \OC_Log::write('OCP\Share', 'Couldn\'t set send mail status', \OC_Log::ERROR); + } + } + + /** + * Set the permissions of an item for a specific user or group + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param int CRUDS permissions + * @return Returns true on success or false on failure + */ + public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { + if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, + \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { + // Check if this item is a reshare and verify that the permissions + // granted don't exceed the parent shared item + if (isset($item['parent'])) { + $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); + $result = $query->execute(array($item['parent']))->fetchRow(); + if (~(int)$result['permissions'] & $permissions) { + $message = 'Setting permissions for '.$itemSource.' failed,' + .' because the permissions exceed permissions granted to '.\OC_User::getUser(); + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); + $query->execute(array($permissions, $item['id'])); + if ($itemType === 'file' || $itemType === 'folder') { + \OC_Hook::emit('OCP\Share', 'post_update_permissions', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => \OC_User::getUser(), + 'permissions' => $permissions, + 'path' => $item['path'], + )); + } + // Check if permissions were removed + if ($item['permissions'] & ~$permissions) { + // If share permission is removed all reshares must be deleted + if (($item['permissions'] & \OCP\PERMISSION_SHARE) && (~$permissions & \OCP\PERMISSION_SHARE)) { + self::delete($item['id'], true); + } else { + $ids = array(); + $parents = array($item['id']); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' + .' WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + // Reset parents array, only go through loop again if + // items are found that need permissions removed + $parents = array(); + while ($item = $result->fetchRow()) { + // Check if permissions need to be removed + if ($item['permissions'] & ~$permissions) { + // Add to list of items that need permissions removed + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + } + // Remove the permissions for all reshares of this item + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + // TODO this should be done with Doctrine platform objects + if (\OC_Config::getValue( "dbtype") === 'oci') { + $andOp = 'BITAND(`permissions`, ?)'; + } else { + $andOp = '`permissions` & ?'; + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = '.$andOp + .' WHERE `id` IN ('.$ids.')'); + $query->execute(array($permissions)); + } + } + } + return true; + } + $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Set expiration date for a share + * @param string $itemType + * @param string $itemSource + * @param string $date expiration date + * @return \OCP\Share_Backend + */ + public static function setExpirationDate($itemType, $itemSource, $date) { + if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), + self::FORMAT_NONE, null, -1, false)) { + if (!empty($items)) { + if ($date == '') { + $date = null; + } else { + $date = new \DateTime($date); + } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); + $query->bindValue(1, $date, 'datetime'); + foreach ($items as $item) { + $query->bindValue(2, (int) $item['id']); + $query->execute(); + } + return true; + } + } + return false; + } + + /** + * Checks whether a share has expired, calls unshareItem() if yes. + * @param array $item Share data (usually database row) + * @return bool True if item was expired, false otherwise. + */ + protected static function expireItem(array $item) { + if (!empty($item['expiration'])) { + $now = new \DateTime(); + $expires = new \DateTime($item['expiration']); + if ($now > $expires) { + self::unshareItem($item); + return true; + } + } + return false; + } + + /** + * Unshares a share given a share data array + * @param array $item Share data (usually database row) + * @return null + */ + protected static function unshareItem(array $item) { + // Pass all the vars we have for now, they may be useful + $hookParams = array( + 'itemType' => $item['item_type'], + 'itemSource' => $item['item_source'], + 'shareType' => $item['share_type'], + 'shareWith' => $item['share_with'], + 'itemParent' => $item['parent'], + 'uidOwner' => $item['uid_owner'], + ); + + \OC_Hook::emit('OCP\Share', 'pre_unshare', $hookParams + array( + 'fileSource' => $item['file_source'], + )); + self::delete($item['id']); + \OC_Hook::emit('OCP\Share', 'post_unshare', $hookParams); + } + + /** + * Get the backend class for the specified item type + * @param string $itemType + * @return \OCP\Share_Backend + */ + public static function getBackend($itemType) { + if (isset(self::$backends[$itemType])) { + return self::$backends[$itemType]; + } else if (isset(self::$backendTypes[$itemType]['class'])) { + $class = self::$backendTypes[$itemType]['class']; + if (class_exists($class)) { + self::$backends[$itemType] = new $class; + if (!(self::$backends[$itemType] instanceof \OCP\Share_Backend)) { + $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + return self::$backends[$itemType]; + } else { + $message = 'Sharing backend '.$class.' not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } + $message = 'Sharing backend for '.$itemType.' not found'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Check if resharing is allowed + * @return Returns true if allowed or false + * + * Resharing is allowed by default if not configured + */ + private static function isResharingAllowed() { + if (!isset(self::$isResharingAllowed)) { + if (\OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes') == 'yes') { + self::$isResharingAllowed = true; + } else { + self::$isResharingAllowed = false; + } + } + return self::$isResharingAllowed; + } + + /** + * Get a list of collection item types for the specified item type + * @param string Item type + * @return array + */ + private static function getCollectionItemTypes($itemType) { + $collectionTypes = array($itemType); + foreach (self::$backendTypes as $type => $backend) { + if (in_array($backend['collectionOf'], $collectionTypes)) { + $collectionTypes[] = $type; + } + } + // TODO Add option for collections to be collection of themselves, only 'folder' does it now... + if (!self::getBackend($itemType) instanceof \OCP\Share_Backend_Collection || $itemType != 'folder') { + unset($collectionTypes[0]); + } + // Return array if collections were found or the item type is a + // collection itself - collections can be inside collections + if (count($collectionTypes) > 0) { + return $collectionTypes; + } + return false; + } + + /** + * Get shared items from the database + * @param string Item type + * @param string Item source or target (optional) + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique + * @param string User or group the item is being shared with + * @param string User that is the owner of shared items (optional) + * @param int Format to convert items to with formatItems() + * @param mixed Parameters to pass to formatItems() + * @param int Number of items to return, -1 to return all matches (optional) + * @param bool Include collection item types (optional) + * @param bool TODO (optional) + * @prams bool check expire date + * @return mixed + * + * See public functions getItem(s)... for parameter usage + * + */ + private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, + $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, + $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { + if (!self::isEnabled()) { + if ($limit == 1 || (isset($uidOwner) && isset($item))) { + return false; + } else { + return array(); + } + } + $backend = self::getBackend($itemType); + $collectionTypes = false; + // Get filesystem root to add it to the file target and remove from the + // file source, match file_source with the file cache + if ($itemType == 'file' || $itemType == 'folder') { + if(!is_null($uidOwner)) { + $root = \OC\Files\Filesystem::getRoot(); + } else { + $root = ''; + } + $where = 'INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid`'; + if (!isset($item)) { + $where .= ' WHERE `file_target` IS NOT NULL'; + } + $fileDependent = true; + $queryArgs = array(); + } else { + $fileDependent = false; + $root = ''; + if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) { + // If includeCollections is true, find collections of this item type, e.g. a music album contains songs + if (!in_array($itemType, $collectionTypes)) { + $itemTypes = array_merge(array($itemType), $collectionTypes); + } else { + $itemTypes = $collectionTypes; + } + $placeholders = join(',', array_fill(0, count($itemTypes), '?')); + $where = ' WHERE `item_type` IN ('.$placeholders.'))'; + $queryArgs = $itemTypes; + } else { + $where = ' WHERE `item_type` = ?'; + $queryArgs = array($itemType); + } + } + if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') { + $where .= ' AND `share_type` != ?'; + $queryArgs[] = self::SHARE_TYPE_LINK; + } + if (isset($shareType)) { + // Include all user and group items + if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) { + $where .= ' AND `share_type` IN (?,?,?)'; + $queryArgs[] = self::SHARE_TYPE_USER; + $queryArgs[] = self::SHARE_TYPE_GROUP; + $queryArgs[] = self::$shareTypeGroupUserUnique; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + $placeholders = join(',', array_fill(0, count($userAndGroups), '?')); + $where .= ' AND `share_with` IN ('.$placeholders.')'; + $queryArgs = array_merge($queryArgs, $userAndGroups); + // Don't include own group shares + $where .= ' AND `uid_owner` != ?'; + $queryArgs[] = $shareWith; + } else { + $where .= ' AND `share_type` = ?'; + $queryArgs[] = $shareType; + if (isset($shareWith)) { + $where .= ' AND `share_with` = ?'; + $queryArgs[] = $shareWith; + } + } + } + if (isset($uidOwner)) { + $where .= ' AND `uid_owner` = ?'; + $queryArgs[] = $uidOwner; + if (!isset($shareType)) { + // Prevent unique user targets for group shares from being selected + $where .= ' AND `share_type` != ?'; + $queryArgs[] = self::$shareTypeGroupUserUnique; + } + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_source'; + } else { + $column = 'item_source'; + } + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_target'; + } else { + $column = 'item_target'; + } + } + if (isset($item)) { + if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) { + $where .= ' AND ('; + } else { + $where .= ' AND'; + } + // If looking for own shared items, check item_source else check item_target + if (isset($uidOwner) || $itemShareWithBySource) { + // If item type is a file, file source needs to be checked in case the item was converted + if ($itemType == 'file' || $itemType == 'folder') { + $where .= ' `file_source` = ?'; + $column = 'file_source'; + } else { + $where .= ' `item_source` = ?'; + $column = 'item_source'; + } + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $where .= ' `file_target` = ?'; + $item = \OC\Files\Filesystem::normalizePath($item); + } else { + $where .= ' `item_target` = ?'; + } + } + $queryArgs[] = $item; + if ($includeCollections && $collectionTypes) { + $placeholders = join(',', array_fill(0, count($collectionTypes), '?')); + $where .= ' OR `item_type` IN ('.$placeholders.'))'; + $queryArgs = array_merge($queryArgs, $collectionTypes); + } + } + if ($limit != -1 && !$includeCollections) { + if ($shareType == self::$shareTypeUserAndGroups) { + // Make sure the unique user target is returned if it exists, + // unique targets should follow the group share in the database + // If the limit is not 1, the filtering can be done later + $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; + } + // The limit must be at least 3, because filtering needs to be done + if ($limit < 3) { + $queryLimit = 3; + } else { + $queryLimit = $limit; + } + } else { + $queryLimit = null; + } + // TODO Optimize selects + if ($format == self::FORMAT_STATUSES) { + if ($itemType == 'file' || $itemType == 'folder') { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' + .' `share_type`, `file_source`, `path`, `expiration`, `storage`, `share_with`, `mail_send`, `uid_owner`'; + } else { + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `expiration`, `mail_send`, `uid_owner`'; + } + } else { + if (isset($uidOwner)) { + if ($itemType == 'file' || $itemType == 'folder') { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' + .' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' + .' `expiration`, `token`, `storage`, `mail_send`, `uid_owner`'; + } else { + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' + .' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; + } + } else { + if ($fileDependent) { + if (($itemType == 'file' || $itemType == 'folder') + && $format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS + || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT + ) { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' + .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' + .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' + .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; + } else { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, + `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, + `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; + } + } else { + $select = '*'; + } + } + } + $root = strlen($root); + $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); + $result = $query->execute($queryArgs); + if (\OC_DB::isError($result)) { + \OC_Log::write('OCP\Share', + \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, + \OC_Log::ERROR); + } + $items = array(); + $targets = array(); + $switchedItems = array(); + $mounts = array(); + while ($row = $result->fetchRow()) { + if (isset($row['id'])) { + $row['id']=(int)$row['id']; + } + if (isset($row['share_type'])) { + $row['share_type']=(int)$row['share_type']; + } + if (isset($row['parent'])) { + $row['parent']=(int)$row['parent']; + } + if (isset($row['file_parent'])) { + $row['file_parent']=(int)$row['file_parent']; + } + if (isset($row['file_source'])) { + $row['file_source']=(int)$row['file_source']; + } + if (isset($row['permissions'])) { + $row['permissions']=(int)$row['permissions']; + } + if (isset($row['storage'])) { + $row['storage']=(int)$row['storage']; + } + if (isset($row['stime'])) { + $row['stime']=(int)$row['stime']; + } + // Filter out duplicate group shares for users with unique targets + if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { + $row['share_type'] = self::SHARE_TYPE_GROUP; + $row['share_with'] = $items[$row['parent']]['share_with']; + // Remove the parent group share + unset($items[$row['parent']]); + if ($row['permissions'] == 0) { + continue; + } + } else if (!isset($uidOwner)) { + // Check if the same target already exists + if (isset($targets[$row[$column]])) { + // Check if the same owner shared with the user twice + // through a group and user share - this is allowed + $id = $targets[$row[$column]]; + if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) { + // Switch to group share type to ensure resharing conditions aren't bypassed + if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { + $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; + $items[$id]['share_with'] = $row['share_with']; + } + // Switch ids if sharing permission is granted on only + // one share to ensure correct parent is used if resharing + if (~(int)$items[$id]['permissions'] & \OCP\PERMISSION_SHARE + && (int)$row['permissions'] & \OCP\PERMISSION_SHARE) { + $items[$row['id']] = $items[$id]; + $switchedItems[$id] = $row['id']; + unset($items[$id]); + $id = $row['id']; + } + // Combine the permissions for the item + $items[$id]['permissions'] |= (int)$row['permissions']; + continue; + } + } else { + $targets[$row[$column]] = $row['id']; + } + } + // Remove root from file source paths if retrieving own shared items + if (isset($uidOwner) && isset($row['path'])) { + if (isset($row['parent'])) { + $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); + $parentResult = $query->execute(array($row['parent'])); + if (\OC_DB::isError($result)) { + \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . + \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, + \OC_Log::ERROR); + } else { + $parentRow = $parentResult->fetchRow(); + $splitPath = explode('/', $row['path']); + $tmpPath = '/Shared' . $parentRow['file_target']; + foreach (array_slice($splitPath, 2) as $pathPart) { + $tmpPath = $tmpPath . '/' . $pathPart; + } + $row['path'] = $tmpPath; + } + } else { + if (!isset($mounts[$row['storage']])) { + $mountPoints = \OC\Files\Filesystem::getMountByNumericId($row['storage']); + if (is_array($mountPoints)) { + $mounts[$row['storage']] = current($mountPoints); + } + } + if ($mounts[$row['storage']]) { + $path = $mounts[$row['storage']]->getMountPoint().$row['path']; + $row['path'] = substr($path, $root); + } + } + } + if($checkExpireDate) { + if (self::expireItem($row)) { + continue; + } + } + // Check if resharing is allowed, if not remove share permission + if (isset($row['permissions']) && !self::isResharingAllowed()) { + $row['permissions'] &= ~\OCP\PERMISSION_SHARE; + } + // Add display names to result + if ( isset($row['share_with']) && $row['share_with'] != '') { + $row['share_with_displayname'] = \OCP\User::getDisplayName($row['share_with']); + } + if ( isset($row['uid_owner']) && $row['uid_owner'] != '') { + $row['displayname_owner'] = \OCP\User::getDisplayName($row['uid_owner']); + } + + $items[$row['id']] = $row; + } + if (!empty($items)) { + $collectionItems = array(); + foreach ($items as &$row) { + // Return only the item instead of a 2-dimensional array + if ($limit == 1 && $row[$column] == $item && ($row['item_type'] == $itemType || $itemType == 'file')) { + if ($format == self::FORMAT_NONE) { + return $row; + } else { + break; + } + } + // Check if this is a collection of the requested item type + if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { + if (($collectionBackend = self::getBackend($row['item_type'])) + && $collectionBackend instanceof \OCP\Share_Backend_Collection) { + // Collections can be inside collections, check if the item is a collection + if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { + $collectionItems[] = $row; + } else { + $collection = array(); + $collection['item_type'] = $row['item_type']; + if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { + $collection['path'] = basename($row['path']); + } + $row['collection'] = $collection; + // Fetch all of the children sources + $children = $collectionBackend->getChildren($row[$column]); + foreach ($children as $child) { + $childItem = $row; + $childItem['item_type'] = $itemType; + if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') { + $childItem['item_source'] = $child['source']; + $childItem['item_target'] = $child['target']; + } + if ($backend instanceof \OCP\Share_Backend_File_Dependent) { + if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { + $childItem['file_source'] = $child['source']; + } else { + $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']); + $childItem['file_source'] = $meta['fileid']; + } + $childItem['file_target'] = + \OC\Files\Filesystem::normalizePath($child['file_path']); + } + if (isset($item)) { + if ($childItem[$column] == $item) { + // Return only the item instead of a 2-dimensional array + if ($limit == 1) { + if ($format == self::FORMAT_NONE) { + return $childItem; + } else { + // Unset the items array and break out of both loops + $items = array(); + $items[] = $childItem; + break 2; + } + } else { + $collectionItems[] = $childItem; + } + } + } else { + $collectionItems[] = $childItem; + } + } + } + } + // Remove collection item + $toRemove = $row['id']; + if (array_key_exists($toRemove, $switchedItems)) { + $toRemove = $switchedItems[$toRemove]; + } + unset($items[$toRemove]); + } + } + if (!empty($collectionItems)) { + $items = array_merge($items, $collectionItems); + } + if (empty($items) && $limit == 1) { + return false; + } + if ($format == self::FORMAT_NONE) { + return $items; + } else if ($format == self::FORMAT_STATUSES) { + $statuses = array(); + foreach ($items as $item) { + if ($item['share_type'] == self::SHARE_TYPE_LINK) { + $statuses[$item[$column]]['link'] = true; + } else if (!isset($statuses[$item[$column]])) { + $statuses[$item[$column]]['link'] = false; + } + if ($itemType == 'file' || $itemType == 'folder') { + $statuses[$item[$column]]['path'] = $item['path']; + } + } + return $statuses; + } else { + return $backend->formatItems($items, $format, $parameters); + } + } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { + return false; + } + return array(); + } + + /** + * Put shared item into the database + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param string User that is the owner of shared item + * @param int CRUDS permissions + * @param bool|array Parent folder target (optional) + * @param string token (optional) + * @param string name of the source item (optional) + * @return bool Returns true on success or false on failure + */ + private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $permissions, $parentFolder = null, $token = null, $itemSourceName = null) { + $backend = self::getBackend($itemType); + + // Check if this is a reshare + if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { + + // Check if attempting to share back to owner + if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { + $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the original sharer'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + // Check if share permissions is granted + if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & \OCP\PERMISSION_SHARE) { + if (~(int)$checkReshare['permissions'] & $permissions) { + $message = 'Sharing '.$itemSourceName + .' failed, because the permissions exceed permissions granted to '.$uidOwner; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } else { + // TODO Don't check if inside folder + $parent = $checkReshare['id']; + $itemSource = $checkReshare['item_source']; + $fileSource = $checkReshare['file_source']; + $suggestedItemTarget = $checkReshare['item_target']; + $suggestedFileTarget = $checkReshare['file_target']; + $filePath = $checkReshare['file_target']; + } + } else { + $message = 'Sharing '.$itemSourceName.' failed, because resharing is not allowed'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } else { + $parent = null; + $suggestedItemTarget = null; + $suggestedFileTarget = null; + if (!$backend->isValidSource($itemSource, $uidOwner)) { + $message = 'Sharing '.$itemSource.' failed, because the sharing backend for ' + .$itemType.' could not find its source'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + $parent = null; + if ($backend instanceof \OCP\Share_Backend_File_Dependent) { + $filePath = $backend->getFilePath($itemSource, $uidOwner); + if ($itemType == 'file' || $itemType == 'folder') { + $fileSource = $itemSource; + } else { + $meta = \OC\Files\Filesystem::getFileInfo($filePath); + $fileSource = $meta['fileid']; + } + if ($fileSource == -1) { + $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + } else { + $filePath = null; + $fileSource = null; + } + } + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' + .' `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + // Share with a group + if ($shareType == self::SHARE_TYPE_GROUP) { + $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], + $uidOwner, $suggestedItemTarget); + $run = true; + $error = ''; + \OC_Hook::emit('OCP\Share', 'pre_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $groupItemTarget, + 'shareType' => $shareType, + 'shareWith' => $shareWith['group'], + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'token' => $token, + 'run' => &$run, + 'error' => &$error + )); + + if ($run === false) { + throw new \Exception($error); + } + + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $groupFileTarget = self::generateTarget('file', $filePath, $shareType, + $shareWith['group'], $uidOwner, $suggestedFileTarget); + // Set group default file target for future use + $parentFolders[0]['folder'] = $groupFileTarget; + } else { + // Get group default file target + $groupFileTarget = $parentFolder[0]['folder'].$itemSource; + $parent = $parentFolder[0]['id']; + } + } else { + $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], + $uidOwner, $suggestedFileTarget); + } + } else { + $groupFileTarget = null; + } + $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, + $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); + // Save this id, any extra rows for this group share will need to reference it + $parent = \OC_DB::insertid('*PREFIX*share'); + // Loop through all users of this group in case we need to add an extra row + foreach ($shareWith['users'] as $uid) { + $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, + $uidOwner, $suggestedItemTarget, $parent); + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, + $uidOwner, $suggestedFileTarget, $parent); + if ($fileTarget != $groupFileTarget) { + $parentFolders[$uid]['folder'] = $fileTarget; + } + } else if (isset($parentFolder[$uid])) { + $fileTarget = $parentFolder[$uid]['folder'].$itemSource; + $parent = $parentFolder[$uid]['id']; + } + } else { + $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, + $uid, $uidOwner, $suggestedFileTarget, $parent); + } + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { + $query->execute(array($itemType, $itemSource, $itemTarget, $parent, + self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), + $fileSource, $fileTarget, $token)); + $id = \OC_DB::insertid('*PREFIX*share'); + } + } + \OC_Hook::emit('OCP\Share', 'post_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $groupItemTarget, + 'parent' => $parent, + 'shareType' => $shareType, + 'shareWith' => $shareWith['group'], + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'fileTarget' => $groupFileTarget, + 'id' => $parent, + 'token' => $token + )); + + if ($parentFolder === true) { + // Return parent folders to preserve file target paths for potential children + return $parentFolders; + } + } else { + $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $suggestedItemTarget); + $run = true; + $error = ''; + \OC_Hook::emit('OCP\Share', 'pre_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $itemTarget, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'token' => $token, + 'run' => &$run, + 'error' => &$error + )); + + if ($run === false) { + throw new \Exception($error); + } + + if (isset($fileSource)) { + if ($parentFolder) { + if ($parentFolder === true) { + $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, + $uidOwner, $suggestedFileTarget); + $parentFolders['folder'] = $fileTarget; + } else { + $fileTarget = $parentFolder['folder'].$itemSource; + $parent = $parentFolder['id']; + } + } else { + $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, + $suggestedFileTarget); + } + } else { + $fileTarget = null; + } + $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, + $permissions, time(), $fileSource, $fileTarget, $token)); + $id = \OC_DB::insertid('*PREFIX*share'); + \OC_Hook::emit('OCP\Share', 'post_shared', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'itemTarget' => $itemTarget, + 'parent' => $parent, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => $uidOwner, + 'permissions' => $permissions, + 'fileSource' => $fileSource, + 'fileTarget' => $fileTarget, + 'id' => $id, + 'token' => $token + )); + if ($parentFolder === true) { + $parentFolders['id'] = $id; + // Return parent folder to preserve file target paths for potential children + return $parentFolders; + } + } + return true; + } + + /** + * Generate a unique target for the item + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param string User that is the owner of shared item + * @param string The suggested target originating from a reshare (optional) + * @param int The id of the parent group share (optional) + * @return string Item target + */ + private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $suggestedTarget = null, $groupParent = null) { + $backend = self::getBackend($itemType); + if ($shareType == self::SHARE_TYPE_LINK) { + if (isset($suggestedTarget)) { + return $suggestedTarget; + } + return $backend->generateTarget($itemSource, false); + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_target'; + $columnSource = 'file_source'; + } else { + $column = 'item_target'; + $columnSource = 'item_source'; + } + if ($shareType == self::SHARE_TYPE_USER) { + // Share with is a user, so set share type to user and groups + $shareType = self::$shareTypeUserAndGroups; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + } else { + $userAndGroups = false; + } + $exclude = null; + // Backend has 3 opportunities to generate a unique target + for ($i = 0; $i < 2; $i++) { + // Check if suggested target exists first + if ($i == 0 && isset($suggestedTarget)) { + $target = $suggestedTarget; + } else { + if ($shareType == self::SHARE_TYPE_GROUP) { + $target = $backend->generateTarget($itemSource, false, $exclude); + } else { + $target = $backend->generateTarget($itemSource, $shareWith, $exclude); + } + if (is_array($exclude) && in_array($target, $exclude)) { + break; + } + } + // Check if target already exists + $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); + if (!empty($checkTarget)) { + foreach ($checkTarget as $item) { + // Skip item if it is the group parent row + if (isset($groupParent) && $item['id'] == $groupParent) { + if (count($checkTarget) == 1) { + return $target; + } else { + continue; + } + } + if ($item['uid_owner'] == $uidOwner) { + if ($itemType == 'file' || $itemType == 'folder') { + $meta = \OC\Files\Filesystem::getFileInfo($itemSource); + if ($item['file_source'] == $meta['fileid']) { + return $target; + } + } else if ($item['item_source'] == $itemSource) { + return $target; + } + } + } + if (!isset($exclude)) { + $exclude = array(); + } + // Find similar targets to improve backend's chances to generate a unqiue target + if ($userAndGroups) { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + } + } else { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); + } + } + while ($row = $result->fetchRow()) { + $exclude[] = $row[$column]; + } + } else { + return $target; + } + } + } + $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Delete all reshares of an item + * @param int Id of item to delete + * @param bool If true, exclude the parent from the delete (optional) + * @param string The user that the parent was shared with (optinal) + */ + private static function delete($parent, $excludeParent = false, $uidOwner = null) { + $ids = array($parent); + $parents = array($parent); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + // Check the owner on the first search of reshares, useful for + // finding and deleting the reshares by a single user of a group share + if (count($ids) == 1 && isset($uidOwner)) { + $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); + $result = $query->execute(array($uidOwner)); + } else { + $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + } + // Reset parents array, only go through loop again if items are found + $parents = array(); + while ($item = $result->fetchRow()) { + // Search for a duplicate parent share, this occurs when an + // item is shared to the same user through a group and user or the + // same item is shared by different users + $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `item_target` = ?' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' + .' AND `uid_owner` != ? AND `id` != ?'); + $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], + self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, + $item['uid_owner'], $item['parent']))->fetchRow(); + if ($duplicateParent) { + // Change the parent to the other item id if share permission is granted + if ($duplicateParent['permissions'] & \OCP\PERMISSION_SHARE) { + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); + $query->execute(array($duplicateParent['id'], $item['id'])); + continue; + } + } + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + if ($excludeParent) { + unset($ids[0]); + } + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); + $query->execute(); + } + } + + /** + * Delete all shares with type SHARE_TYPE_LINK + */ + public static function removeAllLinkShares() { + // Delete any link shares + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_LINK)); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + + /** + * Hook Listeners + */ + + /** + * Function that is called after a user is deleted. Cleans up the shares of that user. + * @param array arguments + */ + public static function post_deleteUser($arguments) { + // Delete any items shared with the deleted user + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' + .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); + $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); + // Delete any items the deleted user shared + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); + $result = $query->execute(array($arguments['uid'])); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + + /** + * Function that is called after a user is added to a group. + * TODO what does it do? + * @param array arguments + */ + public static function post_addToGroup($arguments) { + // Find the group shares and check if the user needs a unique target + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' + .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' + .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + while ($item = $result->fetchRow()) { + if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { + $itemTarget = null; + } else { + $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); + } + if (isset($item['file_source'])) { + $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { + $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], + self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], + $item['stime'], $item['file_source'], $fileTarget)); + \OC_DB::insertid('*PREFIX*share'); + } + } + } + + /** + * Function that is called after a user is removed from a group. Shares are cleaned up. + * @param array arguments + */ + public static function post_removeFromGroup($arguments) { + // TODO Don't call if user deleted? + $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' + .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], + self::$shareTypeGroupUserUnique, $arguments['uid'])); + while ($item = $result->fetchRow()) { + if ($item['share_type'] == self::SHARE_TYPE_GROUP) { + // Delete all reshares by this user of the group share + self::delete($item['id'], true, $arguments['uid']); + } else { + self::delete($item['id']); + } + } + } + + /** + * Function that is called after a group is removed. Cleans up the shares to that group. + * @param array arguments + */ + public static function post_deleteGroup($arguments) { + $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + while ($item = $result->fetchRow()) { + self::delete($item['id']); + } + } + + /** + * In case a password protected link is not yet authenticated this function will return false + * + * @param array $linkItem + * @return bool + */ + public static function checkPasswordProtectedShare(array $linkItem) { + if (!isset($linkItem['share_with'])) { + return true; + } + if (!isset($linkItem['share_type'])) { + return true; + } + if (!isset($linkItem['id'])) { + return true; + } + + if ($linkItem['share_type'] != \OCP\Share::SHARE_TYPE_LINK) { + return true; + } + + if ( \OC::$session->exists('public_link_authenticated') + && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { + return true; + } + + return false; + } +} diff --git a/lib/public/share.php b/lib/public/share.php index 5066d40354..adc02dfe8c 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -2,8 +2,9 @@ /** * ownCloud * - * @author Michael Gapczynski - * @copyright 2012 Michael Gapczynski mtgap@owncloud.com + * @author Bjoern Schiessle, Michael Gapczynski + * @copyright 2012 Michael Gapczynski + * 2014 Bjoern Schiessle * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -38,6 +39,10 @@ namespace OCP; */ class Share { + const FORMAT_NONE = -1; + const FORMAT_STATUSES = -2; + const FORMAT_SOURCES = -3; + const SHARE_TYPE_USER = 0; const SHARE_TYPE_GROUP = 1; const SHARE_TYPE_LINK = 3; @@ -45,77 +50,26 @@ class Share { const SHARE_TYPE_CONTACT = 5; const SHARE_TYPE_REMOTE = 6; - /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask - * Construct permissions for share() and setPermissions with Or (|) e.g. - * Give user read and update permissions: PERMISSION_READ | PERMISSION_UPDATE - * - * Check if permission is granted with And (&) e.g. Check if delete is - * granted: if ($permissions & PERMISSION_DELETE) - * - * Remove permissions with And (&) and Not (~) e.g. Remove the update - * permission: $permissions &= ~PERMISSION_UPDATE - * - * Apps are required to handle permissions on their own, this class only - * stores and manages the permissions of shares - * @see lib/public/constants.php - */ - - const FORMAT_NONE = -1; - const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; - - const TOKEN_LENGTH = 32; // see db_structure.xml - - private static $shareTypeUserAndGroups = -1; - private static $shareTypeGroupUserUnique = 2; - private static $backends = array(); - private static $backendTypes = array(); - private static $isResharingAllowed; - /** * Register a sharing backend class that implements OCP\Share_Backend for an item type * @param string Item type * @param string Backend class * @param string (optional) Depends on item type * @param array (optional) List of supported file extensions if this item type depends on files - * @param string $itemType - * @param string $class - * @param string $collectionOf - * @return boolean true if backend is registered or false if error + * @return Returns true if backend is registered or false if error */ public static function registerBackend($itemType, $class, $collectionOf = null, $supportedFileExtensions = null) { - if (self::isEnabled()) { - if (!isset(self::$backendTypes[$itemType])) { - self::$backendTypes[$itemType] = array( - 'class' => $class, - 'collectionOf' => $collectionOf, - 'supportedFileExtensions' => $supportedFileExtensions - ); - if(count(self::$backendTypes) === 1) { - \OC_Util::addScript('core', 'share'); - \OC_Util::addStyle('core', 'share'); - } - return true; - } - \OC_Log::write('OCP\Share', - 'Sharing backend '.$class.' not registered, '.self::$backendTypes[$itemType]['class'] - .' is already registered for '.$itemType, - \OC_Log::WARN); - } - return false; + return \OC\Share\Share::registerBackend($itemType, $class, $collectionOf, $supportedFileExtensions); } /** * Check if the Share API is enabled - * @return boolean true if enabled or false + * @return Returns true if enabled or false * * The Share API is enabled by default if not configured */ public static function isEnabled() { - if (\OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes') == 'yes') { - return true; - } - return false; + return \OC\Share\Share::isEnabled(); } /** @@ -123,22 +77,13 @@ class Share { * @param string $path path * @return string Prepared path */ - public static function prepFileTarget( $path ) { - - // Paths in DB are stored with leading slashes, so add one if necessary - if ( substr( $path, 0, 1 ) !== '/' ) { - - $path = '/' . $path; - - } - - return $path; - + public static function prepFileTarget($path) { + return \OC\Share\Share::prepFileTarget($path); } /** * Find which users can access a shared item - * @param string $path to the file + * @param $path to the file * @param $user owner of the file * @param include owner to the list of users with access to the file * @return array @@ -146,101 +91,7 @@ class Share { * not '/admin/data/file.txt' */ public static function getUsersSharingFile($path, $user, $includeOwner = false) { - - $shares = array(); - $publicShare = false; - $source = -1; - $cache = false; - - $view = new \OC\Files\View('/' . $user . '/files'); - if ($view->file_exists($path)) { - $meta = $view->getFileInfo($path); - } else { - // if the file doesn't exists yet we start with the parent folder - $meta = $view->getFileInfo(dirname($path)); - } - - if($meta !== false) { - $source = $meta['fileid']; - $cache = new \OC\Files\Cache\Cache($meta['storage']); - } - - while ($source !== -1) { - - // Fetch all shares with another user - $query = \OC_DB::prepare( - 'SELECT `share_with` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' - ); - - $result = $query->execute(array($source, self::SHARE_TYPE_USER)); - - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - while ($row = $result->fetchRow()) { - $shares[] = $row['share_with']; - } - } - // We also need to take group shares into account - - $query = \OC_DB::prepare( - 'SELECT `share_with` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' - ); - - $result = $query->execute(array($source, self::SHARE_TYPE_GROUP)); - - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - while ($row = $result->fetchRow()) { - $usersInGroup = \OC_Group::usersInGroup($row['share_with']); - $shares = array_merge($shares, $usersInGroup); - } - } - - //check for public link shares - if (!$publicShare) { - $query = \OC_DB::prepare( - 'SELECT `share_with` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `share_type` = ? AND `item_type` IN (\'file\', \'folder\')' - ); - - $result = $query->execute(array($source, self::SHARE_TYPE_LINK)); - - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - if ($result->fetchRow()) { - $publicShare = true; - } - } - } - - // let's get the parent for the next round - $meta = $cache->get((int)$source); - if($meta !== false) { - $source = (int)$meta['parent']; - } else { - $source = -1; - } - } - // Include owner in list of users, if requested - if ($includeOwner) { - $shares[] = $user; - } - - return array("users" => array_unique($shares), "public" => $publicShare); + return \OC\Share\Share::getUsersSharingFile($path, $user, $includeOwner); } /** @@ -250,13 +101,12 @@ class Share { * @param mixed Parameters (optional) * @param int Number of items to return (optional) Returns all by default * @param bool include collections (optional) - * @param string $itemType * @return Return depends on format */ public static function getItemsSharedWith($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, - $parameters, $limit, $includeCollections); + + return \OC\Share\Share::getItemsSharedWith($itemType, $format, $parameters, $limit, $includeCollections); } /** @@ -266,12 +116,12 @@ class Share { * @param int $format (optional) Format type must be defined by the backend * @param mixed Parameters (optional) * @param bool include collections (optional) - * @return string depends on format + * @return Return depends on format */ public static function getItemSharedWith($itemType, $itemTarget, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemTarget, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, - $parameters, 1, $includeCollections); + + return \OC\Share\Share::getItemSharedWith($itemType, $itemTarget, $format, $parameters, $includeCollections); } /** @@ -282,45 +132,7 @@ class Share { * @return array Return list of items with file_target, permissions and expiration */ public static function getItemSharedWithUser($itemType, $itemSource, $user) { - - $shares = array(); - - // first check if there is a db entry for the specific user - $query = \OC_DB::prepare( - 'SELECT `file_target`, `permissions`, `expiration` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `item_type` = ? AND `share_with` = ?' - ); - - $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, $user)); - - while ($row = $result->fetchRow()) { - $shares[] = $row; - } - - //if didn't found a result than let's look for a group share. - if(empty($shares)) { - $groups = \OC_Group::getUserGroups($user); - - $query = \OC_DB::prepare( - 'SELECT `file_target`, `permissions`, `expiration` - FROM - `*PREFIX*share` - WHERE - `item_source` = ? AND `item_type` = ? AND `share_with` in (?)' - ); - - $result = \OC_DB::executeAudited($query, array($itemSource, $itemType, implode(',', $groups))); - - while ($row = $result->fetchRow()) { - $shares[] = $row; - } - } - - return $shares; - + return \OC\Share\Share::getItemSharedWithUser($itemType, $itemSource, $user); } /** @@ -334,8 +146,7 @@ class Share { */ public static function getItemSharedWithBySource($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, \OC_User::getUser(), null, $format, - $parameters, 1, $includeCollections, true); + return \OC\Share\Share::getItemSharedWithBySource($itemType, $itemSource, $format, $parameters, $includeCollections); } /** @@ -346,8 +157,7 @@ class Share { * @return Item */ public static function getItemSharedWithByLink($itemType, $itemSource, $uidOwner) { - return self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, $uidOwner, self::FORMAT_NONE, - null, 1); + return \OC\Share\Share::getItemSharedWithByLink($itemType, $itemSource, $uidOwner); } /** @@ -356,25 +166,7 @@ class Share { * @return array | bool false will be returned in case the token is unknown or unauthorized */ public static function getShareByToken($token, $checkPasswordProtection = true) { - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `token` = ?', 1); - $result = $query->execute(array($token)); - if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', \OC_DB::getErrorMessage($result) . ', token=' . $token, \OC_Log::ERROR); - } - $row = $result->fetchRow(); - if ($row === false) { - return false; - } - if (is_array($row) and self::expireItem($row)) { - return false; - } - - // password protected shares need to be authenticated - if ($checkPasswordProtection && !\OCP\Share::checkPasswordProtectedShare($row)) { - return false; - } - - return $row; + return \OC\Share\Share::getShareByToken($token, $checkPasswordProtection); } /** @@ -382,21 +174,8 @@ class Share { * @param $linkItem * @return $fileOwner */ - public static function resolveReShare($linkItem) - { - if (isset($linkItem['parent'])) { - $parent = $linkItem['parent']; - while (isset($parent)) { - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ?', 1); - $item = $query->execute(array($parent))->fetchRow(); - if (isset($item['parent'])) { - $parent = $item['parent']; - } else { - return $item; - } - } - } - return $linkItem; + public static function resolveReShare($linkItem) { + return \OC\Share\Share::resolveReShare($linkItem); } @@ -407,13 +186,12 @@ class Share { * @param mixed Parameters * @param int Number of items to return (optional) Returns all by default * @param bool include collections - * @param string $itemType * @return Return depends on format */ public static function getItemsShared($itemType, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false) { - return self::getItems($itemType, null, null, null, \OC_User::getUser(), $format, - $parameters, $limit, $includeCollections); + + return \OC\Share\Share::getItemsShared($itemType, $format, $parameters, $limit, $includeCollections); } /** @@ -427,8 +205,8 @@ class Share { */ public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, $parameters = null, $includeCollections = false) { - return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, - $parameters, -1, $includeCollections); + + return \OC\Share\Share::getItemShared($itemType, $itemSource, $format, $parameters, $includeCollections); } /** @@ -441,19 +219,7 @@ class Share { * @return Return array of users */ public static function getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections = false, $checkExpireDate = true) { - - $users = array(); - $items = self::getItems($itemType, $itemSource, null, null, $uidOwner, self::FORMAT_NONE, null, -1, $includeCollections, false, $checkExpireDate); - if ($items) { - foreach ($items as $item) { - if ((int)$item['share_type'] === self::SHARE_TYPE_USER) { - $users[] = $item['share_with']; - } else if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { - $users = array_merge($users, \OC_Group::usersInGroup($item['share_with'])); - } - } - } - return $users; + return \OC\Share\Share::getUsersItemShared($itemType, $itemSource, $uidOwner, $includeCollections, $checkExpireDate); } /** @@ -473,176 +239,7 @@ class Share { * @return bool|string Returns true on success or false on failure, Returns token on success for links */ public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null) { - $uidOwner = \OC_User::getUser(); - $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); - - if (is_null($itemSourceName)) { - $itemSourceName = $itemSource; - } - - // Verify share type and sharing conditions are met - if ($shareType === self::SHARE_TYPE_USER) { - if ($shareWith == $uidOwner) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the item owner'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if (!\OC_User::userExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if ($sharingPolicy == 'groups_only') { - $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); - if (empty($inGroup)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user ' - .$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - // Check if the item source is already shared with the user, either from the same owner or a different user - if ($checkExists = self::getItems($itemType, $itemSource, self::$shareTypeUserAndGroups, - $shareWith, null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same - // owner and is not a user share, this use case is for increasing - // permissions for a specific user - if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - } else if ($shareType === self::SHARE_TYPE_GROUP) { - if (!\OC_Group::groupExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the group '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because ' - .$uidOwner.' is not a member of the group '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // Check if the item source is already shared with the group, either from the same owner or a different user - // The check for each user in the group is done inside the put() function - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_GROUP, $shareWith, - null, self::FORMAT_NONE, null, 1, true, true)) { - // Only allow the same share to occur again if it is the same - // owner and is not a group share, this use case is for increasing - // permissions for a specific user - if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - // Convert share with into an array with the keys group and users - $group = $shareWith; - $shareWith = array(); - $shareWith['group'] = $group; - $shareWith['users'] = array_diff(\OC_Group::usersInGroup($group), array($uidOwner)); - } else if ($shareType === self::SHARE_TYPE_LINK) { - if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') == 'yes') { - // when updating a link share - if ($checkExists = self::getItems($itemType, $itemSource, self::SHARE_TYPE_LINK, null, - $uidOwner, self::FORMAT_NONE, null, 1)) { - // remember old token - $oldToken = $checkExists['token']; - $oldPermissions = $checkExists['permissions']; - //delete the old share - self::delete($checkExists['id']); - } - - // Generate hash of password - same method as user passwords - if (isset($shareWith)) { - $forcePortable = (CRYPT_BLOWFISH != 1); - $hasher = new \PasswordHash(8, $forcePortable); - $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); - } else { - // reuse the already set password, but only if we change permissions - // otherwise the user disabled the password protection - if ($checkExists && (int)$permissions !== (int)$oldPermissions) { - $shareWith = $checkExists['share_with']; - } - } - - // Generate token - if (isset($oldToken)) { - $token = $oldToken; - } else { - $token = \OC_Util::generateRandomBytes(self::TOKEN_LENGTH); - } - $result = self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, - null, $token, $itemSourceName); - if ($result) { - return $token; - } else { - return false; - } - } - $message = 'Sharing '.$itemSourceName.' failed, because sharing with links is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - return false; -// } else if ($shareType === self::SHARE_TYPE_CONTACT) { -// if (!\OC_App::isEnabled('contacts')) { -// $message = 'Sharing '.$itemSource.' failed, because the contacts app is not enabled'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// return false; -// } -// $vcard = \OC_Contacts_App::getContactVCard($shareWith); -// if (!isset($vcard)) { -// $message = 'Sharing '.$itemSource.' failed, because the contact does not exist'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// throw new \Exception($message); -// } -// $details = \OC_Contacts_VCard::structureContact($vcard); -// // TODO Add ownCloud user to contacts vcard -// if (!isset($details['EMAIL'])) { -// $message = 'Sharing '.$itemSource.' failed, because no email address is associated with the contact'; -// \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); -// throw new \Exception($message); -// } -// return self::shareItem($itemType, $itemSource, self::SHARE_TYPE_EMAIL, $details['EMAIL'], $permissions); - } else { - // Future share types need to include their own conditions - $message = 'Share type '.$shareType.' is not valid for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // If the item is a folder, scan through the folder looking for equivalent item types -// if ($itemType == 'folder') { -// $parentFolder = self::put('folder', $itemSource, $shareType, $shareWith, $uidOwner, $permissions, true); -// if ($parentFolder && $files = \OC\Files\Filesystem::getDirectoryContent($itemSource)) { -// for ($i = 0; $i < count($files); $i++) { -// $name = substr($files[$i]['name'], strpos($files[$i]['name'], $itemSource) - strlen($itemSource)); -// if ($files[$i]['mimetype'] == 'httpd/unix-directory' -// && $children = \OC\Files\Filesystem::getDirectoryContent($name, '/') -// ) { -// // Continue scanning into child folders -// array_push($files, $children); -// } else { -// // Check file extension for an equivalent item type to convert to -// $extension = strtolower(substr($itemSource, strrpos($itemSource, '.') + 1)); -// foreach (self::$backends as $type => $backend) { -// if (isset($backend->dependsOn) && $backend->dependsOn == 'file' && isset($backend->supportedFileExtensions) && in_array($extension, $backend->supportedFileExtensions)) { -// $itemType = $type; -// break; -// } -// } -// // Pass on to put() to check if this item should be converted, the item won't be inserted into the database unless it can be converted -// self::put($itemType, $name, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder); -// } -// } -// return true; -// } -// return false; -// } else { - // Put the item into the database - return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, null, $itemSourceName); -// } + return \OC\Share\Share::shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName); } /** @@ -651,88 +248,32 @@ class Share { * @param string Item source * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK * @param string User or group the item is being shared with - * @return boolean true on success or false on failure + * @return Returns true on success or false on failure */ public static function unshare($itemType, $itemSource, $shareType, $shareWith) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), - self::FORMAT_NONE, null, 1)) { - self::unshareItem($item); - return true; - } - return false; + return \OC\Share\Share::unshare($itemType, $itemSource, $shareType, $shareWith); } /** * Unshare an item from all users, groups, and remove all links * @param string Item type * @param string Item source - * @param string $itemType - * @param string $itemSource - * @return boolean true on success or false on failure + * @return Returns true on success or false on failure */ public static function unshareAll($itemType, $itemSource) { - // Get all of the owners of shares of this item. - $query = \OC_DB::prepare( 'SELECT `uid_owner` from `*PREFIX*share` WHERE `item_type`=? AND `item_source`=?' ); - $result = $query->execute(array($itemType, $itemSource)); - $shares = array(); - // Add each owner's shares to the array of all shares for this item. - while ($row = $result->fetchRow()) { - $shares = array_merge($shares, self::getItems($itemType, $itemSource, null, null, $row['uid_owner'])); - } - if (!empty($shares)) { - // Pass all the vars we have for now, they may be useful - $hookParams = array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'shares' => $shares, - ); - \OC_Hook::emit('OCP\Share', 'pre_unshareAll', $hookParams); - foreach ($shares as $share) { - self::unshareItem($share); - } - \OC_Hook::emit('OCP\Share', 'post_unshareAll', $hookParams); - return true; - } - return false; + return \OC\Share\Share::unshareAll($itemType, $itemSource); } /** * Unshare an item shared with the current user * @param string Item type * @param string Item target - * @param string $itemType - * @param string $itemTarget - * @return boolean true on success or false on failure + * @return Returns true on success or false on failure * * Unsharing from self is not allowed for items inside collections */ public static function unshareFromSelf($itemType, $itemTarget) { - if ($item = self::getItemSharedWith($itemType, $itemTarget)) { - if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { - // Insert an extra row for the group share and set permission - // to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share`' - .' (`item_type`, `item_source`, `item_target`, `parent`, `share_type`,' - .' `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`, `file_target`)' - .' VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - $query->execute(array($item['item_type'], $item['item_source'], $item['item_target'], - $item['id'], self::$shareTypeGroupUserUnique, - \OC_User::getUser(), $item['uid_owner'], 0, $item['stime'], $item['file_source'], - $item['file_target'])); - \OC_DB::insertid('*PREFIX*share'); - // Delete all reshares by this user of the group share - self::delete($item['id'], true, \OC_User::getUser()); - } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { - // Set permission to 0 to prevent it from showing up for the user - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); - $query->execute(array(0, $item['id'])); - self::delete($item['id'], true); - } else { - self::delete($item['id']); - } - return true; - } - return false; + return \OC\Share\Share::unshareFromSelf($itemType, $itemTarget); } /** * sent status if users got informed by mail about share @@ -742,102 +283,20 @@ class Share { * @param bool $status */ public static function setSendMailStatus($itemType, $itemSource, $shareType, $status) { - $status = $status ? 1 : 0; - - $query = \OC_DB::prepare( - 'UPDATE `*PREFIX*share` - SET `mail_send` = ? - WHERE `item_type` = ? AND `item_source` = ? AND `share_type` = ?'); - - $result = $query->execute(array($status, $itemType, $itemSource, $shareType)); - - if($result === false) { - \OC_Log::write('OCP\Share', 'Couldn\'t set send mail status', \OC_Log::ERROR); - } + return \OC\Share\Share::setSendMailStatus($itemType, $itemSource, $shareType, $status); } /** * Set the permissions of an item for a specific user or group - * @param string $itemType Item type - * @param string $itemSource Item source - * @param int $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string $shareWith User or group the item is being shared with - * @param integer|null $permissions CRUDS - * @return boolean true on success or false on failure + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param int CRUDS permissions + * @return Returns true on success or false on failure */ public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, - \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { - // Check if this item is a reshare and verify that the permissions - // granted don't exceed the parent shared item - if (isset($item['parent'])) { - $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); - $result = $query->execute(array($item['parent']))->fetchRow(); - if (~(int)$result['permissions'] & $permissions) { - $message = 'Setting permissions for '.$itemSource.' failed,' - .' because the permissions exceed permissions granted to '.\OC_User::getUser(); - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); - $query->execute(array($permissions, $item['id'])); - if ($itemType === 'file' || $itemType === 'folder') { - \OC_Hook::emit('OCP\Share', 'post_update_permissions', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'uidOwner' => \OC_User::getUser(), - 'permissions' => $permissions, - 'path' => $item['path'], - )); - } - // Check if permissions were removed - if ($item['permissions'] & ~$permissions) { - // If share permission is removed all reshares must be deleted - if (($item['permissions'] & PERMISSION_SHARE) && (~$permissions & PERMISSION_SHARE)) { - self::delete($item['id'], true); - } else { - $ids = array(); - $parents = array($item['id']); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' - .' WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - // Reset parents array, only go through loop again if - // items are found that need permissions removed - $parents = array(); - while ($item = $result->fetchRow()) { - // Check if permissions need to be removed - if ($item['permissions'] & ~$permissions) { - // Add to list of items that need permissions removed - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - } - // Remove the permissions for all reshares of this item - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - // TODO this should be done with Doctrine platform objects - if (\OC_Config::getValue( "dbtype") === 'oci') { - $andOp = 'BITAND(`permissions`, ?)'; - } else { - $andOp = '`permissions` & ?'; - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = '.$andOp - .' WHERE `id` IN ('.$ids.')'); - $query->execute(array($permissions)); - } - } - } - return true; - } - $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + return \OC\Share\Share::setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions); } /** @@ -845,67 +304,10 @@ class Share { * @param string $itemType * @param string $itemSource * @param string $date expiration date - * @return boolean + * @return Share_Backend */ public static function setExpirationDate($itemType, $itemSource, $date) { - if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), - self::FORMAT_NONE, null, -1, false)) { - if (!empty($items)) { - if ($date == '') { - $date = null; - } else { - $date = new \DateTime($date); - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); - $query->bindValue(1, $date, 'datetime'); - foreach ($items as $item) { - $query->bindValue(2, (int) $item['id']); - $query->execute(); - } - return true; - } - } - return false; - } - - /** - * Checks whether a share has expired, calls unshareItem() if yes. - * @param array $item Share data (usually database row) - * @return bool True if item was expired, false otherwise. - */ - protected static function expireItem(array $item) { - if (!empty($item['expiration'])) { - $now = new \DateTime(); - $expires = new \DateTime($item['expiration']); - if ($now > $expires) { - self::unshareItem($item); - return true; - } - } - return false; - } - - /** - * Unshares a share given a share data array - * @param array $item Share data (usually database row) - * @return null - */ - protected static function unshareItem(array $item) { - // Pass all the vars we have for now, they may be useful - $hookParams = array( - 'itemType' => $item['item_type'], - 'itemSource' => $item['item_source'], - 'shareType' => $item['share_type'], - 'shareWith' => $item['share_with'], - 'itemParent' => $item['parent'], - 'uidOwner' => $item['uid_owner'], - ); - - \OC_Hook::emit('OCP\Share', 'pre_unshare', $hookParams + array( - 'fileSource' => $item['file_source'], - )); - self::delete($item['id']); - \OC_Hook::emit('OCP\Share', 'post_unshare', $hookParams); + return \OC\Share\Share::setExpirationDate($itemType, $itemSource, $date); } /** @@ -914,930 +316,14 @@ class Share { * @return Share_Backend */ public static function getBackend($itemType) { - if (isset(self::$backends[$itemType])) { - return self::$backends[$itemType]; - } else if (isset(self::$backendTypes[$itemType]['class'])) { - $class = self::$backendTypes[$itemType]['class']; - if (class_exists($class)) { - self::$backends[$itemType] = new $class; - if (!(self::$backends[$itemType] instanceof Share_Backend)) { - $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - return self::$backends[$itemType]; - } else { - $message = 'Sharing backend '.$class.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } - $message = 'Sharing backend for '.$itemType.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * Check if resharing is allowed - * @return boolean true if allowed or false - * - * Resharing is allowed by default if not configured - */ - private static function isResharingAllowed() { - if (!isset(self::$isResharingAllowed)) { - if (\OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes') == 'yes') { - self::$isResharingAllowed = true; - } else { - self::$isResharingAllowed = false; - } - } - return self::$isResharingAllowed; - } - - /** - * Get a list of collection item types for the specified item type - * @param string Item type - * @return array - */ - private static function getCollectionItemTypes($itemType) { - $collectionTypes = array($itemType); - foreach (self::$backendTypes as $type => $backend) { - if (in_array($backend['collectionOf'], $collectionTypes)) { - $collectionTypes[] = $type; - } - } - // TODO Add option for collections to be collection of themselves, only 'folder' does it now... - if (!self::getBackend($itemType) instanceof Share_Backend_Collection || $itemType != 'folder') { - unset($collectionTypes[0]); - } - // Return array if collections were found or the item type is a - // collection itself - collections can be inside collections - if (count($collectionTypes) > 0) { - return $collectionTypes; - } - return false; - } - - /** - * Get shared items from the database - * @param string Item type - * @param string Item source or target (optional) - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, SHARE_TYPE_LINK, $shareTypeUserAndGroups, or $shareTypeGroupUserUnique - * @param string User or group the item is being shared with - * @param string User that is the owner of shared items (optional) - * @param int Format to convert items to with formatItems() - * @param mixed Parameters to pass to formatItems() - * @param int Number of items to return, -1 to return all matches (optional) - * @param bool Include collection item types (optional) - * @param bool TODO (optional) - * @prams bool check expire date - * @return mixed - * - * See public functions getItem(s)... for parameter usage - * - */ - private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, - $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, - $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { - if (!self::isEnabled()) { - if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } else { - return array(); - } - } - $backend = self::getBackend($itemType); - $collectionTypes = false; - // Get filesystem root to add it to the file target and remove from the - // file source, match file_source with the file cache - if ($itemType == 'file' || $itemType == 'folder') { - if(!is_null($uidOwner)) { - $root = \OC\Files\Filesystem::getRoot(); - } else { - $root = ''; - } - $where = 'INNER JOIN `*PREFIX*filecache` ON `file_source` = `*PREFIX*filecache`.`fileid`'; - if (!isset($item)) { - $where .= ' WHERE `file_target` IS NOT NULL'; - } - $fileDependent = true; - $queryArgs = array(); - } else { - $fileDependent = false; - $root = ''; - if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) { - // If includeCollections is true, find collections of this item type, e.g. a music album contains songs - if (!in_array($itemType, $collectionTypes)) { - $itemTypes = array_merge(array($itemType), $collectionTypes); - } else { - $itemTypes = $collectionTypes; - } - $placeholders = join(',', array_fill(0, count($itemTypes), '?')); - $where = ' WHERE `item_type` IN ('.$placeholders.'))'; - $queryArgs = $itemTypes; - } else { - $where = ' WHERE `item_type` = ?'; - $queryArgs = array($itemType); - } - } - if (\OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes') !== 'yes') { - $where .= ' AND `share_type` != ?'; - $queryArgs[] = self::SHARE_TYPE_LINK; - } - if (isset($shareType)) { - // Include all user and group items - if ($shareType == self::$shareTypeUserAndGroups && isset($shareWith)) { - $where .= ' AND `share_type` IN (?,?,?)'; - $queryArgs[] = self::SHARE_TYPE_USER; - $queryArgs[] = self::SHARE_TYPE_GROUP; - $queryArgs[] = self::$shareTypeGroupUserUnique; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - $placeholders = join(',', array_fill(0, count($userAndGroups), '?')); - $where .= ' AND `share_with` IN ('.$placeholders.')'; - $queryArgs = array_merge($queryArgs, $userAndGroups); - // Don't include own group shares - $where .= ' AND `uid_owner` != ?'; - $queryArgs[] = $shareWith; - } else { - $where .= ' AND `share_type` = ?'; - $queryArgs[] = $shareType; - if (isset($shareWith)) { - $where .= ' AND `share_with` = ?'; - $queryArgs[] = $shareWith; - } - } - } - if (isset($uidOwner)) { - $where .= ' AND `uid_owner` = ?'; - $queryArgs[] = $uidOwner; - if (!isset($shareType)) { - // Prevent unique user targets for group shares from being selected - $where .= ' AND `share_type` != ?'; - $queryArgs[] = self::$shareTypeGroupUserUnique; - } - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_source'; - } else { - $column = 'item_source'; - } - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - } else { - $column = 'item_target'; - } - } - if (isset($item)) { - if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) { - $where .= ' AND ('; - } else { - $where .= ' AND'; - } - // If looking for own shared items, check item_source else check item_target - if (isset($uidOwner) || $itemShareWithBySource) { - // If item type is a file, file source needs to be checked in case the item was converted - if ($itemType == 'file' || $itemType == 'folder') { - $where .= ' `file_source` = ?'; - $column = 'file_source'; - } else { - $where .= ' `item_source` = ?'; - $column = 'item_source'; - } - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $where .= ' `file_target` = ?'; - $item = \OC\Files\Filesystem::normalizePath($item); - } else { - $where .= ' `item_target` = ?'; - } - } - $queryArgs[] = $item; - if ($includeCollections && $collectionTypes) { - $placeholders = join(',', array_fill(0, count($collectionTypes), '?')); - $where .= ' OR `item_type` IN ('.$placeholders.'))'; - $queryArgs = array_merge($queryArgs, $collectionTypes); - } - } - if ($limit != -1 && !$includeCollections) { - if ($shareType == self::$shareTypeUserAndGroups) { - // Make sure the unique user target is returned if it exists, - // unique targets should follow the group share in the database - // If the limit is not 1, the filtering can be done later - $where .= ' ORDER BY `*PREFIX*share`.`id` DESC'; - } - // The limit must be at least 3, because filtering needs to be done - if ($limit < 3) { - $queryLimit = 3; - } else { - $queryLimit = $limit; - } - } else { - $queryLimit = null; - } - // TODO Optimize selects - if ($format == self::FORMAT_STATUSES) { - if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' - .' `share_type`, `file_source`, `path`, `expiration`, `storage`, `share_with`, `mail_send`, `uid_owner`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `expiration`, `mail_send`, `uid_owner`'; - } - } else { - if (isset($uidOwner)) { - if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' - .' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' - .' `expiration`, `token`, `storage`, `mail_send`, `uid_owner`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' - .' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; - } - } else { - if ($fileDependent) { - if (($itemType == 'file' || $itemType == 'folder') - && $format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS - || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT - ) { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' - .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' - .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' - .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; - } else { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, - `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, - `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; - } - } else { - $select = '*'; - } - } - } - $root = strlen($root); - $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); - $result = $query->execute($queryArgs); - if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', - \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, - \OC_Log::ERROR); - } - $items = array(); - $targets = array(); - $switchedItems = array(); - $mounts = array(); - while ($row = $result->fetchRow()) { - if (isset($row['id'])) { - $row['id']=(int)$row['id']; - } - if (isset($row['share_type'])) { - $row['share_type']=(int)$row['share_type']; - } - if (isset($row['parent'])) { - $row['parent']=(int)$row['parent']; - } - if (isset($row['file_parent'])) { - $row['file_parent']=(int)$row['file_parent']; - } - if (isset($row['file_source'])) { - $row['file_source']=(int)$row['file_source']; - } - if (isset($row['permissions'])) { - $row['permissions']=(int)$row['permissions']; - } - if (isset($row['storage'])) { - $row['storage']=(int)$row['storage']; - } - if (isset($row['stime'])) { - $row['stime']=(int)$row['stime']; - } - // Filter out duplicate group shares for users with unique targets - if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { - $row['share_type'] = self::SHARE_TYPE_GROUP; - $row['share_with'] = $items[$row['parent']]['share_with']; - // Remove the parent group share - unset($items[$row['parent']]); - if ($row['permissions'] == 0) { - continue; - } - } else if (!isset($uidOwner)) { - // Check if the same target already exists - if (isset($targets[$row[$column]])) { - // Check if the same owner shared with the user twice - // through a group and user share - this is allowed - $id = $targets[$row[$column]]; - if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) { - // Switch to group share type to ensure resharing conditions aren't bypassed - if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) { - $items[$id]['share_type'] = self::SHARE_TYPE_GROUP; - $items[$id]['share_with'] = $row['share_with']; - } - // Switch ids if sharing permission is granted on only - // one share to ensure correct parent is used if resharing - if (~(int)$items[$id]['permissions'] & PERMISSION_SHARE - && (int)$row['permissions'] & PERMISSION_SHARE) { - $items[$row['id']] = $items[$id]; - $switchedItems[$id] = $row['id']; - unset($items[$id]); - $id = $row['id']; - } - // Combine the permissions for the item - $items[$id]['permissions'] |= (int)$row['permissions']; - continue; - } - } else { - $targets[$row[$column]] = $row['id']; - } - } - // Remove root from file source paths if retrieving own shared items - if (isset($uidOwner) && isset($row['path'])) { - if (isset($row['parent'])) { - // FIXME: Doesn't always construct the correct path, example: - // Folder '/a/b', share '/a' and '/a/b' to user2 - // user2 reshares /Shared/b and ask for share status of /Shared/a/b - // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent - $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); - $parentResult = $query->execute(array($row['parent'])); - if (\OC_DB::isError($result)) { - \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . - \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, - \OC_Log::ERROR); - } else { - $parentRow = $parentResult->fetchRow(); - $tmpPath = '/Shared' . $parentRow['file_target']; - // find the right position where the row path continues from the target path - $pos = strrpos($row['path'], $parentRow['file_target']); - $subPath = substr($row['path'], $pos); - $splitPath = explode('/', $subPath); - foreach (array_slice($splitPath, 2) as $pathPart) { - $tmpPath = $tmpPath . '/' . $pathPart; - } - $row['path'] = $tmpPath; - } - } else { - if (!isset($mounts[$row['storage']])) { - $mountPoints = \OC\Files\Filesystem::getMountByNumericId($row['storage']); - if (is_array($mountPoints)) { - $mounts[$row['storage']] = current($mountPoints); - } - } - if ($mounts[$row['storage']]) { - $path = $mounts[$row['storage']]->getMountPoint().$row['path']; - $row['path'] = substr($path, $root); - } - } - } - if($checkExpireDate) { - if (self::expireItem($row)) { - continue; - } - } - // Check if resharing is allowed, if not remove share permission - if (isset($row['permissions']) && !self::isResharingAllowed()) { - $row['permissions'] &= ~PERMISSION_SHARE; - } - // Add display names to result - if ( isset($row['share_with']) && $row['share_with'] != '') { - $row['share_with_displayname'] = \OCP\User::getDisplayName($row['share_with']); - } - if ( isset($row['uid_owner']) && $row['uid_owner'] != '') { - $row['displayname_owner'] = \OCP\User::getDisplayName($row['uid_owner']); - } - - $items[$row['id']] = $row; - } - if (!empty($items)) { - $collectionItems = array(); - foreach ($items as &$row) { - // Return only the item instead of a 2-dimensional array - if ($limit == 1 && $row[$column] == $item && ($row['item_type'] == $itemType || $itemType == 'file')) { - if ($format == self::FORMAT_NONE) { - return $row; - } else { - break; - } - } - // Check if this is a collection of the requested item type - if ($includeCollections && $collectionTypes && in_array($row['item_type'], $collectionTypes)) { - if (($collectionBackend = self::getBackend($row['item_type'])) - && $collectionBackend instanceof Share_Backend_Collection) { - // Collections can be inside collections, check if the item is a collection - if (isset($item) && $row['item_type'] == $itemType && $row[$column] == $item) { - $collectionItems[] = $row; - } else { - $collection = array(); - $collection['item_type'] = $row['item_type']; - if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { - $collection['path'] = basename($row['path']); - } - $row['collection'] = $collection; - // Fetch all of the children sources - $children = $collectionBackend->getChildren($row[$column]); - foreach ($children as $child) { - $childItem = $row; - $childItem['item_type'] = $itemType; - if ($row['item_type'] != 'file' && $row['item_type'] != 'folder') { - $childItem['item_source'] = $child['source']; - $childItem['item_target'] = $child['target']; - } - if ($backend instanceof Share_Backend_File_Dependent) { - if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { - $childItem['file_source'] = $child['source']; - } else { - $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']); - $childItem['file_source'] = $meta['fileid']; - } - $childItem['file_target'] = - \OC\Files\Filesystem::normalizePath($child['file_path']); - } - if (isset($item)) { - if ($childItem[$column] == $item) { - // Return only the item instead of a 2-dimensional array - if ($limit == 1) { - if ($format == self::FORMAT_NONE) { - return $childItem; - } else { - // Unset the items array and break out of both loops - $items = array(); - $items[] = $childItem; - break 2; - } - } else { - $collectionItems[] = $childItem; - } - } - } else { - $collectionItems[] = $childItem; - } - } - } - } - // Remove collection item - $toRemove = $row['id']; - if (array_key_exists($toRemove, $switchedItems)) { - $toRemove = $switchedItems[$toRemove]; - } - unset($items[$toRemove]); - } - } - if (!empty($collectionItems)) { - $items = array_merge($items, $collectionItems); - } - if (empty($items) && $limit == 1) { - return false; - } - if ($format == self::FORMAT_NONE) { - return $items; - } else if ($format == self::FORMAT_STATUSES) { - $statuses = array(); - foreach ($items as $item) { - if ($item['share_type'] == self::SHARE_TYPE_LINK) { - $statuses[$item[$column]]['link'] = true; - } else if (!isset($statuses[$item[$column]])) { - $statuses[$item[$column]]['link'] = false; - } - if ($itemType == 'file' || $itemType == 'folder') { - $statuses[$item[$column]]['path'] = $item['path']; - } - } - return $statuses; - } else { - return $backend->formatItems($items, $format, $parameters); - } - } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } - return array(); - } - - /** - * Put shared item into the database - * @param string $itemType Item type - * @param string $itemSource Item source - * @param integer $shareType SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string $shareWith User or group the item is being shared with - * @param string $uidOwner User that is the owner of shared item - * @param int $permissions CRUDS permissions - * @param bool|array, $parentFolder Parent folder target (optional) - * @param string $token (optional) - * @param string $itemSourceName name of the source item (optional) - * @return bool Returns true on success or false on failure - */ - private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $permissions, $parentFolder = null, $token = null, $itemSourceName = null) { - $backend = self::getBackend($itemType); - - // Check if this is a reshare - if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { - - // Check if attempting to share back to owner - if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the original sharer'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - // Check if share permissions is granted - if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & PERMISSION_SHARE) { - if (~(int)$checkReshare['permissions'] & $permissions) { - $message = 'Sharing '.$itemSourceName - .' failed, because the permissions exceed permissions granted to '.$uidOwner; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } else { - // TODO Don't check if inside folder - $parent = $checkReshare['id']; - $itemSource = $checkReshare['item_source']; - $fileSource = $checkReshare['file_source']; - $suggestedItemTarget = $checkReshare['item_target']; - $suggestedFileTarget = $checkReshare['file_target']; - $filePath = $checkReshare['file_target']; - } - } else { - $message = 'Sharing '.$itemSourceName.' failed, because resharing is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } else { - $parent = null; - $suggestedItemTarget = null; - $suggestedFileTarget = null; - if (!$backend->isValidSource($itemSource, $uidOwner)) { - $message = 'Sharing '.$itemSource.' failed, because the sharing backend for ' - .$itemType.' could not find its source'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - $parent = null; - if ($backend instanceof Share_Backend_File_Dependent) { - $filePath = $backend->getFilePath($itemSource, $uidOwner); - if ($itemType == 'file' || $itemType == 'folder') { - $fileSource = $itemSource; - } else { - $meta = \OC\Files\Filesystem::getFileInfo($filePath); - $fileSource = $meta['fileid']; - } - if ($fileSource == -1) { - $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - } else { - $filePath = null; - $fileSource = null; - } - } - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' - .' `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' - .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); - // Share with a group - if ($shareType == self::SHARE_TYPE_GROUP) { - $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], - $uidOwner, $suggestedItemTarget); - $run = true; - $error = ''; - \OC_Hook::emit('OCP\Share', 'pre_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $groupItemTarget, - 'shareType' => $shareType, - 'shareWith' => $shareWith['group'], - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'token' => $token, - 'run' => &$run, - 'error' => &$error - )); - - if ($run === false) { - throw new \Exception($error); - } - - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, - $shareWith['group'], $uidOwner, $suggestedFileTarget); - // Set group default file target for future use - $parentFolders[0]['folder'] = $groupFileTarget; - } else { - // Get group default file target - $groupFileTarget = $parentFolder[0]['folder'].$itemSource; - $parent = $parentFolder[0]['id']; - } - } else { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], - $uidOwner, $suggestedFileTarget); - } - } else { - $groupFileTarget = null; - } - $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, - $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); - // Save this id, any extra rows for this group share will need to reference it - $parent = \OC_DB::insertid('*PREFIX*share'); - // Loop through all users of this group in case we need to add an extra row - foreach ($shareWith['users'] as $uid) { - $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, - $uidOwner, $suggestedItemTarget, $parent); - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, - $uidOwner, $suggestedFileTarget, $parent); - if ($fileTarget != $groupFileTarget) { - $parentFolders[$uid]['folder'] = $fileTarget; - } - } else if (isset($parentFolder[$uid])) { - $fileTarget = $parentFolder[$uid]['folder'].$itemSource; - $parent = $parentFolder[$uid]['id']; - } - } else { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, - $uid, $uidOwner, $suggestedFileTarget, $parent); - } - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, - self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), - $fileSource, $fileTarget, $token)); - $id = \OC_DB::insertid('*PREFIX*share'); - } - } - \OC_Hook::emit('OCP\Share', 'post_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $groupItemTarget, - 'parent' => $parent, - 'shareType' => $shareType, - 'shareWith' => $shareWith['group'], - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'fileTarget' => $groupFileTarget, - 'id' => $parent, - 'token' => $token - )); - - if ($parentFolder === true) { - // Return parent folders to preserve file target paths for potential children - return $parentFolders; - } - } else { - $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $suggestedItemTarget); - $run = true; - $error = ''; - \OC_Hook::emit('OCP\Share', 'pre_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $itemTarget, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'token' => $token, - 'run' => &$run, - 'error' => &$error - )); - - if ($run === false) { - throw new \Exception($error); - } - - if (isset($fileSource)) { - if ($parentFolder) { - if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, - $uidOwner, $suggestedFileTarget); - $parentFolders['folder'] = $fileTarget; - } else { - $fileTarget = $parentFolder['folder'].$itemSource; - $parent = $parentFolder['id']; - } - } else { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, - $suggestedFileTarget); - } - } else { - $fileTarget = null; - } - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, - $permissions, time(), $fileSource, $fileTarget, $token)); - $id = \OC_DB::insertid('*PREFIX*share'); - \OC_Hook::emit('OCP\Share', 'post_shared', array( - 'itemType' => $itemType, - 'itemSource' => $itemSource, - 'itemTarget' => $itemTarget, - 'parent' => $parent, - 'shareType' => $shareType, - 'shareWith' => $shareWith, - 'uidOwner' => $uidOwner, - 'permissions' => $permissions, - 'fileSource' => $fileSource, - 'fileTarget' => $fileTarget, - 'id' => $id, - 'token' => $token - )); - if ($parentFolder === true) { - $parentFolders['id'] = $id; - // Return parent folder to preserve file target paths for potential children - return $parentFolders; - } - } - return true; - } - - /** - * Generate a unique target for the item - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @param string User that is the owner of shared item - * @param string The suggested target originating from a reshare (optional) - * @param int The id of the parent group share (optional) - * @param integer $shareType - * @return string Item target - */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $suggestedTarget = null, $groupParent = null) { - $backend = self::getBackend($itemType); - if ($shareType == self::SHARE_TYPE_LINK) { - if (isset($suggestedTarget)) { - return $suggestedTarget; - } - return $backend->generateTarget($itemSource, false); - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - $columnSource = 'file_source'; - } else { - $column = 'item_target'; - $columnSource = 'item_source'; - } - if ($shareType == self::SHARE_TYPE_USER) { - // Share with is a user, so set share type to user and groups - $shareType = self::$shareTypeUserAndGroups; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - } else { - $userAndGroups = false; - } - $exclude = null; - // Backend has 3 opportunities to generate a unique target - for ($i = 0; $i < 2; $i++) { - // Check if suggested target exists first - if ($i == 0 && isset($suggestedTarget)) { - $target = $suggestedTarget; - } else { - if ($shareType == self::SHARE_TYPE_GROUP) { - $target = $backend->generateTarget($itemSource, false, $exclude); - } else { - $target = $backend->generateTarget($itemSource, $shareWith, $exclude); - } - if (is_array($exclude) && in_array($target, $exclude)) { - break; - } - } - // Check if target already exists - $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); - if (!empty($checkTarget)) { - foreach ($checkTarget as $item) { - // Skip item if it is the group parent row - if (isset($groupParent) && $item['id'] == $groupParent) { - if (count($checkTarget) == 1) { - return $target; - } else { - continue; - } - } - if ($item['uid_owner'] == $uidOwner) { - if ($itemType == 'file' || $itemType == 'folder') { - $meta = \OC\Files\Filesystem::getFileInfo($itemSource); - if ($item['file_source'] == $meta['fileid']) { - return $target; - } - } else if ($item['item_source'] == $itemSource) { - return $target; - } - } - } - if (!isset($exclude)) { - $exclude = array(); - } - // Find similar targets to improve backend's chances to generate a unqiue target - if ($userAndGroups) { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, - self::$shareTypeGroupUserUnique)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, - self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); - } - } else { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); - } - } - while ($row = $result->fetchRow()) { - $exclude[] = $row[$column]; - } - } else { - return $target; - } - } - } - $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * Delete all reshares of an item - * @param int Id of item to delete - * @param bool If true, exclude the parent from the delete (optional) - * @param string The user that the parent was shared with (optinal) - */ - private static function delete($parent, $excludeParent = false, $uidOwner = null) { - $ids = array($parent); - $parents = array($parent); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - // Check the owner on the first search of reshares, useful for - // finding and deleting the reshares by a single user of a group share - if (count($ids) == 1 && isset($uidOwner)) { - $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); - $result = $query->execute(array($uidOwner)); - } else { - $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - } - // Reset parents array, only go through loop again if items are found - $parents = array(); - while ($item = $result->fetchRow()) { - // Search for a duplicate parent share, this occurs when an - // item is shared to the same user through a group and user or the - // same item is shared by different users - $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' - .' WHERE `item_type` = ?' - .' AND `item_target` = ?' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' - .' AND `uid_owner` != ? AND `id` != ?'); - $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], - self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, - $item['uid_owner'], $item['parent']))->fetchRow(); - if ($duplicateParent) { - // Change the parent to the other item id if share permission is granted - if ($duplicateParent['permissions'] & PERMISSION_SHARE) { - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); - $query->execute(array($duplicateParent['id'], $item['id'])); - continue; - } - } - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - if ($excludeParent) { - unset($ids[0]); - } - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); - $query->execute(); - } + return \OC\Share\Share::getBackend($itemType); } /** * Delete all shares with type SHARE_TYPE_LINK */ public static function removeAllLinkShares() { - // Delete any link shares - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_LINK)); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } + return \OC\Share\Share::removeAllLinkShares(); } /** @@ -1849,16 +335,7 @@ class Share { * @param array arguments */ public static function post_deleteUser($arguments) { - // Delete any items shared with the deleted user - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' - .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); - $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); - // Delete any items the deleted user shared - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); - $result = $query->execute(array($arguments['uid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } + return \OC\Share\Share::post_deleteUser($arguments); } /** @@ -1867,33 +344,7 @@ class Share { * @param array arguments */ public static function post_addToGroup($arguments) { - // Find the group shares and check if the user needs a unique target - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' - .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' - .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - while ($item = $result->fetchRow()) { - if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { - $itemTarget = null; - } else { - $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); - } - if (isset($item['file_source'])) { - $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { - $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], - self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], - $item['stime'], $item['file_source'], $fileTarget)); - \OC_DB::insertid('*PREFIX*share'); - } - } + return \OC\Share\Share::post_addToGroup($arguments); } /** @@ -1901,19 +352,7 @@ class Share { * @param array arguments */ public static function post_removeFromGroup($arguments) { - // TODO Don't call if user deleted? - $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' - .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], - self::$shareTypeGroupUserUnique, $arguments['uid'])); - while ($item = $result->fetchRow()) { - if ($item['share_type'] == self::SHARE_TYPE_GROUP) { - // Delete all reshares by this user of the group share - self::delete($item['id'], true, $arguments['uid']); - } else { - self::delete($item['id']); - } - } + return \OC\Share\Share::post_removeFromGroup($arguments); } /** @@ -1921,11 +360,7 @@ class Share { * @param array arguments */ public static function post_deleteGroup($arguments) { - $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } + return \OC\Share\Share::post_deleteGroup($arguments); } /** @@ -1935,26 +370,7 @@ class Share { * @return bool */ public static function checkPasswordProtectedShare(array $linkItem) { - if (!isset($linkItem['share_with'])) { - return true; - } - if (!isset($linkItem['share_type'])) { - return true; - } - if (!isset($linkItem['id'])) { - return true; - } - - if ($linkItem['share_type'] != \OCP\Share::SHARE_TYPE_LINK) { - return true; - } - - if ( \OC::$session->exists('public_link_authenticated') - && \OC::$session->get('public_link_authenticated') === $linkItem['id'] ) { - return true; - } - - return false; + return \OC\Share\Share::checkPasswordProtectedShare($linkItem); } } @@ -1967,9 +383,7 @@ interface Share_Backend { * Get the source of the item to be stored in the database * @param string Item source * @param string Owner of the item - * @param string $itemSource - * @param string $uidOwner - * @return boolean Source + * @return mixed|array|false Source * * Return an array if the item is file dependent, the array needs two keys: 'item' and 'file' * Return false if the item does not exist for the user @@ -1992,8 +406,8 @@ interface Share_Backend { /** * Converts the shared item sources back into the item in the specified format - * @param array $items Shared items - * @param integer $format + * @param array Shared items + * @param int Format * @return TODO * * The items array is a 3-dimensional array with the item_source as the @@ -2025,9 +439,6 @@ interface Share_Backend_File_Dependent extends Share_Backend { * Get the file path of the item * @param string Item source * @param string User that is the owner of shared item - * @param string $itemSource - * @param string $uidOwner - * @return boolean */ public function getFilePath($itemSource, $uidOwner); From b6026625781b2fda8ee1b23c3984be4a064adccc Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 18 Feb 2014 15:07:03 +0100 Subject: [PATCH 276/333] add a "helper" and a "hooks" class. Move constants needed by multiple classes to a "constants" class --- lib/base.php | 8 +- lib/private/share/constants.php | 44 +++++ lib/private/share/helper.php | 202 ++++++++++++++++++++ lib/private/share/hooks.php | 108 +++++++++++ lib/private/share/share.php | 320 ++------------------------------ lib/public/share.php | 50 +---- 6 files changed, 377 insertions(+), 355 deletions(-) create mode 100644 lib/private/share/constants.php create mode 100644 lib/private/share/helper.php create mode 100644 lib/private/share/hooks.php diff --git a/lib/base.php b/lib/base.php index 2515b9657c..b3f6776e6d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -659,10 +659,10 @@ class OC { */ public static function registerShareHooks() { if (\OC_Config::getValue('installed')) { - OC_Hook::connect('OC_User', 'post_deleteUser', 'OCP\Share', 'post_deleteUser'); - OC_Hook::connect('OC_User', 'post_addToGroup', 'OCP\Share', 'post_addToGroup'); - OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OCP\Share', 'post_removeFromGroup'); - OC_Hook::connect('OC_User', 'post_deleteGroup', 'OCP\Share', 'post_deleteGroup'); + OC_Hook::connect('OC_User', 'post_deleteUser', 'OC\Share\Hooks', 'post_deleteUser'); + OC_Hook::connect('OC_User', 'post_addToGroup', 'OC\Share\Hooks', 'post_addToGroup'); + OC_Hook::connect('OC_User', 'post_removeFromGroup', 'OC\Share\Hooks', 'post_removeFromGroup'); + OC_Hook::connect('OC_User', 'post_deleteGroup', 'OC\Share\Hooks', 'post_deleteGroup'); } } diff --git a/lib/private/share/constants.php b/lib/private/share/constants.php new file mode 100644 index 0000000000..7e4223d10f --- /dev/null +++ b/lib/private/share/constants.php @@ -0,0 +1,44 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + */ + +namespace OC\Share; + +class Constants { + + const SHARE_TYPE_USER = 0; + const SHARE_TYPE_GROUP = 1; + const SHARE_TYPE_LINK = 3; + const SHARE_TYPE_EMAIL = 4; + const SHARE_TYPE_CONTACT = 5; + const SHARE_TYPE_REMOTE = 6; + + const FORMAT_NONE = -1; + const FORMAT_STATUSES = -2; + const FORMAT_SOURCES = -3; + + const TOKEN_LENGTH = 32; // see db_structure.xml + + protected static $shareTypeUserAndGroups = -1; + protected static $shareTypeGroupUserUnique = 2; + protected static $backends = array(); + protected static $backendTypes = array(); + protected static $isResharingAllowed; +} diff --git a/lib/private/share/helper.php b/lib/private/share/helper.php new file mode 100644 index 0000000000..fde5566728 --- /dev/null +++ b/lib/private/share/helper.php @@ -0,0 +1,202 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + */ + +namespace OC\Share; + +class Helper extends \OC\Share\Constants { + + /** + * Generate a unique target for the item + * @param string Item type + * @param string Item source + * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK + * @param string User or group the item is being shared with + * @param string User that is the owner of shared item + * @param string The suggested target originating from a reshare (optional) + * @param int The id of the parent group share (optional) + * @return string Item target + */ + public static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $suggestedTarget = null, $groupParent = null) { + $backend = \OC\Share\Share::getBackend($itemType); + if ($shareType == self::SHARE_TYPE_LINK) { + if (isset($suggestedTarget)) { + return $suggestedTarget; + } + return $backend->generateTarget($itemSource, false); + } else { + if ($itemType == 'file' || $itemType == 'folder') { + $column = 'file_target'; + $columnSource = 'file_source'; + } else { + $column = 'item_target'; + $columnSource = 'item_source'; + } + if ($shareType == self::SHARE_TYPE_USER) { + // Share with is a user, so set share type to user and groups + $shareType = self::$shareTypeUserAndGroups; + $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); + } else { + $userAndGroups = false; + } + $exclude = null; + // Backend has 3 opportunities to generate a unique target + for ($i = 0; $i < 2; $i++) { + // Check if suggested target exists first + if ($i == 0 && isset($suggestedTarget)) { + $target = $suggestedTarget; + } else { + if ($shareType == self::SHARE_TYPE_GROUP) { + $target = $backend->generateTarget($itemSource, false, $exclude); + } else { + $target = $backend->generateTarget($itemSource, $shareWith, $exclude); + } + if (is_array($exclude) && in_array($target, $exclude)) { + break; + } + } + // Check if target already exists + $checkTarget = \OC\Share\Share::getItems($itemType, $target, $shareType, $shareWith); + if (!empty($checkTarget)) { + foreach ($checkTarget as $item) { + // Skip item if it is the group parent row + if (isset($groupParent) && $item['id'] == $groupParent) { + if (count($checkTarget) == 1) { + return $target; + } else { + continue; + } + } + if ($item['uid_owner'] == $uidOwner) { + if ($itemType == 'file' || $itemType == 'folder') { + $meta = \OC\Files\Filesystem::getFileInfo($itemSource); + if ($item['file_source'] == $meta['fileid']) { + return $target; + } + } else if ($item['item_source'] == $itemSource) { + return $target; + } + } + } + if (!isset($exclude)) { + $exclude = array(); + } + // Find similar targets to improve backend's chances to generate a unqiue target + if ($userAndGroups) { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, + self::$shareTypeGroupUserUnique)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, + self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); + } + } else { + if ($column == 'file_target') { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` IN (\'file\', \'folder\')' + .' AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); + } else { + $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' + .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); + $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); + } + } + while ($row = $result->fetchRow()) { + $exclude[] = $row[$column]; + } + } else { + return $target; + } + } + } + $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + /** + * Delete all reshares of an item + * @param int Id of item to delete + * @param bool If true, exclude the parent from the delete (optional) + * @param string The user that the parent was shared with (optinal) + */ + public static function delete($parent, $excludeParent = false, $uidOwner = null) { + $ids = array($parent); + $parents = array($parent); + while (!empty($parents)) { + $parents = "'".implode("','", $parents)."'"; + // Check the owner on the first search of reshares, useful for + // finding and deleting the reshares by a single user of a group share + if (count($ids) == 1 && isset($uidOwner)) { + $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); + $result = $query->execute(array($uidOwner)); + } else { + $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' + .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); + $result = $query->execute(); + } + // Reset parents array, only go through loop again if items are found + $parents = array(); + while ($item = $result->fetchRow()) { + // Search for a duplicate parent share, this occurs when an + // item is shared to the same user through a group and user or the + // same item is shared by different users + $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); + $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' + .' WHERE `item_type` = ?' + .' AND `item_target` = ?' + .' AND `share_type` IN (?,?,?)' + .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' + .' AND `uid_owner` != ? AND `id` != ?'); + $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], + self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, + $item['uid_owner'], $item['parent']))->fetchRow(); + if ($duplicateParent) { + // Change the parent to the other item id if share permission is granted + if ($duplicateParent['permissions'] & \OCP\PERMISSION_SHARE) { + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); + $query->execute(array($duplicateParent['id'], $item['id'])); + continue; + } + } + $ids[] = $item['id']; + $parents[] = $item['id']; + } + } + if ($excludeParent) { + unset($ids[0]); + } + if (!empty($ids)) { + $ids = "'".implode("','", $ids)."'"; + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); + $query->execute(); + } + } +} diff --git a/lib/private/share/hooks.php b/lib/private/share/hooks.php new file mode 100644 index 0000000000..a33c71eedd --- /dev/null +++ b/lib/private/share/hooks.php @@ -0,0 +1,108 @@ + + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see . + */ + +namespace OC\Share; + +class Hooks extends \OC\Share\Constants { + /** + * Function that is called after a user is deleted. Cleans up the shares of that user. + * @param array arguments + */ + public static function post_deleteUser($arguments) { + // Delete any items shared with the deleted user + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' + .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); + $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); + // Delete any items the deleted user shared + $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); + $result = $query->execute(array($arguments['uid'])); + while ($item = $result->fetchRow()) { + Helper::delete($item['id']); + } + } + + /** + * Function that is called after a user is added to a group. + * TODO what does it do? + * @param array arguments + */ + public static function post_addToGroup($arguments) { + // Find the group shares and check if the user needs a unique target + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); + $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' + .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' + .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); + while ($item = $result->fetchRow()) { + if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { + $itemTarget = null; + } else { + $itemTarget = Helper::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); + } + if (isset($item['file_source'])) { + $fileTarget = Helper::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, + $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); + } else { + $fileTarget = null; + } + // Insert an extra row for the group share if the item or file target is unique for this user + if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { + $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], + self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], + $item['stime'], $item['file_source'], $fileTarget)); + \OC_DB::insertid('*PREFIX*share'); + } + } + } + + /** + * Function that is called after a user is removed from a group. Shares are cleaned up. + * @param array arguments + */ + public static function post_removeFromGroup($arguments) { + $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' + .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], + self::$shareTypeGroupUserUnique, $arguments['uid'])); + while ($item = $result->fetchRow()) { + if ($item['share_type'] == self::SHARE_TYPE_GROUP) { + // Delete all reshares by this user of the group share + Helper::delete($item['id'], true, $arguments['uid']); + } else { + Helper::delete($item['id']); + } + } + } + + /** + * Function that is called after a group is removed. Cleans up the shares to that group. + * @param array arguments + */ + public static function post_deleteGroup($arguments) { + $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; + $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); + while ($item = $result->fetchRow()) { + Helper::delete($item['id']); + } + } + +} diff --git a/lib/private/share/share.php b/lib/private/share/share.php index b44d362672..ef0ed257c5 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -29,14 +29,7 @@ namespace OC\Share; * It provides the following hooks: * - post_shared */ -class Share { - - const SHARE_TYPE_USER = 0; - const SHARE_TYPE_GROUP = 1; - const SHARE_TYPE_LINK = 3; - const SHARE_TYPE_EMAIL = 4; - const SHARE_TYPE_CONTACT = 5; - const SHARE_TYPE_REMOTE = 6; +class Share extends \OC\Share\Constants { /** CRUDS permissions (Create, Read, Update, Delete, Share) using a bitmask * Construct permissions for share() and setPermissions with Or (|) e.g. @@ -53,18 +46,6 @@ class Share { * @see lib/public/constants.php */ - const FORMAT_NONE = -1; - const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; - - const TOKEN_LENGTH = 32; // see db_structure.xml - - private static $shareTypeUserAndGroups = -1; - private static $shareTypeGroupUserUnique = 2; - private static $backends = array(); - private static $backendTypes = array(); - private static $isResharingAllowed; - /** * Register a sharing backend class that implements OCP\Share_Backend for an item type * @param string Item type @@ -540,7 +521,7 @@ class Share { $oldToken = $checkExists['token']; $oldPermissions = $checkExists['permissions']; //delete the old share - self::delete($checkExists['id']); + Helper::delete($checkExists['id']); } // Generate hash of password - same method as user passwords @@ -656,14 +637,14 @@ class Share { $item['file_target'])); \OC_DB::insertid('*PREFIX*share'); // Delete all reshares by this user of the group share - self::delete($item['id'], true, \OC_User::getUser()); + Helper::delete($item['id'], true, \OC_User::getUser()); } else if ((int)$item['share_type'] === self::$shareTypeGroupUserUnique) { // Set permission to 0 to prevent it from showing up for the user $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); $query->execute(array(0, $item['id'])); - self::delete($item['id'], true); + Helper::delete($item['id'], true); } else { - self::delete($item['id']); + Helper::delete($item['id']); } return true; } @@ -732,7 +713,7 @@ class Share { if ($item['permissions'] & ~$permissions) { // If share permission is removed all reshares must be deleted if (($item['permissions'] & \OCP\PERMISSION_SHARE) && (~$permissions & \OCP\PERMISSION_SHARE)) { - self::delete($item['id'], true); + Helper::delete($item['id'], true); } else { $ids = array(); $parents = array($item['id']); @@ -839,7 +820,7 @@ class Share { \OC_Hook::emit('OCP\Share', 'pre_unshare', $hookParams + array( 'fileSource' => $item['file_source'], )); - self::delete($item['id']); + Helper::delete($item['id']); \OC_Hook::emit('OCP\Share', 'post_unshare', $hookParams); } @@ -931,7 +912,7 @@ class Share { * See public functions getItem(s)... for parameter usage * */ - private static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, + public static function getItems($itemType, $item = null, $shareType = null, $shareWith = null, $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { if (!self::isEnabled()) { @@ -1417,7 +1398,7 @@ class Share { .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); // Share with a group if ($shareType == self::SHARE_TYPE_GROUP) { - $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], + $groupItemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); $run = true; $error = ''; @@ -1442,7 +1423,7 @@ class Share { if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, + $groupFileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); // Set group default file target for future use $parentFolders[0]['folder'] = $groupFileTarget; @@ -1452,7 +1433,7 @@ class Share { $parent = $parentFolder[0]['id']; } } else { - $groupFileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith['group'], + $groupFileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith['group'], $uidOwner, $suggestedFileTarget); } } else { @@ -1464,12 +1445,12 @@ class Share { $parent = \OC_DB::insertid('*PREFIX*share'); // Loop through all users of this group in case we need to add an extra row foreach ($shareWith['users'] as $uid) { - $itemTarget = self::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, + $itemTarget = Helper::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedItemTarget, $parent); if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, + $fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); if ($fileTarget != $groupFileTarget) { $parentFolders[$uid]['folder'] = $fileTarget; @@ -1479,7 +1460,7 @@ class Share { $parent = $parentFolder[$uid]['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, self::SHARE_TYPE_USER, + $fileTarget = Helper::generateTarget('file', $filePath, self::SHARE_TYPE_USER, $uid, $uidOwner, $suggestedFileTarget, $parent); } } else { @@ -1513,7 +1494,7 @@ class Share { return $parentFolders; } } else { - $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, + $itemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); $run = true; $error = ''; @@ -1538,7 +1519,7 @@ class Share { if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, + $fileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); $parentFolders['folder'] = $fileTarget; } else { @@ -1546,7 +1527,7 @@ class Share { $parent = $parentFolder['id']; } } else { - $fileTarget = self::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, + $fileTarget = Helper::generateTarget('file', $filePath, $shareType, $shareWith, $uidOwner, $suggestedFileTarget); } } else { @@ -1578,183 +1559,6 @@ class Share { return true; } - /** - * Generate a unique target for the item - * @param string Item type - * @param string Item source - * @param int SHARE_TYPE_USER, SHARE_TYPE_GROUP, or SHARE_TYPE_LINK - * @param string User or group the item is being shared with - * @param string User that is the owner of shared item - * @param string The suggested target originating from a reshare (optional) - * @param int The id of the parent group share (optional) - * @return string Item target - */ - private static function generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, - $suggestedTarget = null, $groupParent = null) { - $backend = self::getBackend($itemType); - if ($shareType == self::SHARE_TYPE_LINK) { - if (isset($suggestedTarget)) { - return $suggestedTarget; - } - return $backend->generateTarget($itemSource, false); - } else { - if ($itemType == 'file' || $itemType == 'folder') { - $column = 'file_target'; - $columnSource = 'file_source'; - } else { - $column = 'item_target'; - $columnSource = 'item_source'; - } - if ($shareType == self::SHARE_TYPE_USER) { - // Share with is a user, so set share type to user and groups - $shareType = self::$shareTypeUserAndGroups; - $userAndGroups = array_merge(array($shareWith), \OC_Group::getUserGroups($shareWith)); - } else { - $userAndGroups = false; - } - $exclude = null; - // Backend has 3 opportunities to generate a unique target - for ($i = 0; $i < 2; $i++) { - // Check if suggested target exists first - if ($i == 0 && isset($suggestedTarget)) { - $target = $suggestedTarget; - } else { - if ($shareType == self::SHARE_TYPE_GROUP) { - $target = $backend->generateTarget($itemSource, false, $exclude); - } else { - $target = $backend->generateTarget($itemSource, $shareWith, $exclude); - } - if (is_array($exclude) && in_array($target, $exclude)) { - break; - } - } - // Check if target already exists - $checkTarget = self::getItems($itemType, $target, $shareType, $shareWith); - if (!empty($checkTarget)) { - foreach ($checkTarget as $item) { - // Skip item if it is the group parent row - if (isset($groupParent) && $item['id'] == $groupParent) { - if (count($checkTarget) == 1) { - return $target; - } else { - continue; - } - } - if ($item['uid_owner'] == $uidOwner) { - if ($itemType == 'file' || $itemType == 'folder') { - $meta = \OC\Files\Filesystem::getFileInfo($itemSource); - if ($item['file_source'] == $meta['fileid']) { - return $target; - } - } else if ($item['item_source'] == $itemSource) { - return $target; - } - } - } - if (!isset($exclude)) { - $exclude = array(); - } - // Find similar targets to improve backend's chances to generate a unqiue target - if ($userAndGroups) { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, - self::$shareTypeGroupUserUnique)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_USER, - self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique)); - } - } else { - if ($column == 'file_target') { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` IN (\'file\', \'folder\')' - .' AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array(self::SHARE_TYPE_GROUP, $shareWith)); - } else { - $checkTargets = \OC_DB::prepare('SELECT `'.$column.'` FROM `*PREFIX*share`' - .' WHERE `item_type` = ? AND `share_type` = ? AND `share_with` = ?'); - $result = $checkTargets->execute(array($itemType, self::SHARE_TYPE_GROUP, $shareWith)); - } - } - while ($row = $result->fetchRow()) { - $exclude[] = $row[$column]; - } - } else { - return $target; - } - } - } - $message = 'Sharing backend registered for '.$itemType.' did not generate a unique target for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); - } - - /** - * Delete all reshares of an item - * @param int Id of item to delete - * @param bool If true, exclude the parent from the delete (optional) - * @param string The user that the parent was shared with (optinal) - */ - private static function delete($parent, $excludeParent = false, $uidOwner = null) { - $ids = array($parent); - $parents = array($parent); - while (!empty($parents)) { - $parents = "'".implode("','", $parents)."'"; - // Check the owner on the first search of reshares, useful for - // finding and deleting the reshares by a single user of a group share - if (count($ids) == 1 && isset($uidOwner)) { - $query = \OC_DB::prepare('SELECT `id`, `uid_owner`, `item_type`, `item_target`, `parent`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.') AND `uid_owner` = ?'); - $result = $query->execute(array($uidOwner)); - } else { - $query = \OC_DB::prepare('SELECT `id`, `item_type`, `item_target`, `parent`, `uid_owner`' - .' FROM `*PREFIX*share` WHERE `parent` IN ('.$parents.')'); - $result = $query->execute(); - } - // Reset parents array, only go through loop again if items are found - $parents = array(); - while ($item = $result->fetchRow()) { - // Search for a duplicate parent share, this occurs when an - // item is shared to the same user through a group and user or the - // same item is shared by different users - $userAndGroups = array_merge(array($item['uid_owner']), \OC_Group::getUserGroups($item['uid_owner'])); - $query = \OC_DB::prepare('SELECT `id`, `permissions` FROM `*PREFIX*share`' - .' WHERE `item_type` = ?' - .' AND `item_target` = ?' - .' AND `share_type` IN (?,?,?)' - .' AND `share_with` IN (\''.implode('\',\'', $userAndGroups).'\')' - .' AND `uid_owner` != ? AND `id` != ?'); - $duplicateParent = $query->execute(array($item['item_type'], $item['item_target'], - self::SHARE_TYPE_USER, self::SHARE_TYPE_GROUP, self::$shareTypeGroupUserUnique, - $item['uid_owner'], $item['parent']))->fetchRow(); - if ($duplicateParent) { - // Change the parent to the other item id if share permission is granted - if ($duplicateParent['permissions'] & \OCP\PERMISSION_SHARE) { - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `parent` = ? WHERE `id` = ?'); - $query->execute(array($duplicateParent['id'], $item['id'])); - continue; - } - } - $ids[] = $item['id']; - $parents[] = $item['id']; - } - } - if ($excludeParent) { - unset($ids[0]); - } - if (!empty($ids)) { - $ids = "'".implode("','", $ids)."'"; - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share` WHERE `id` IN ('.$ids.')'); - $query->execute(); - } - } - /** * Delete all shares with type SHARE_TYPE_LINK */ @@ -1763,95 +1567,7 @@ class Share { $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ?'); $result = $query->execute(array(self::SHARE_TYPE_LINK)); while ($item = $result->fetchRow()) { - self::delete($item['id']); - } - } - - /** - * Hook Listeners - */ - - /** - * Function that is called after a user is deleted. Cleans up the shares of that user. - * @param array arguments - */ - public static function post_deleteUser($arguments) { - // Delete any items shared with the deleted user - $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`' - .' WHERE `share_with` = ? AND `share_type` = ? OR `share_type` = ?'); - $result = $query->execute(array($arguments['uid'], self::SHARE_TYPE_USER, self::$shareTypeGroupUserUnique)); - // Delete any items the deleted user shared - $query = \OC_DB::prepare('SELECT `id` FROM `*PREFIX*share` WHERE `uid_owner` = ?'); - $result = $query->execute(array($arguments['uid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); - } - } - - /** - * Function that is called after a user is added to a group. - * TODO what does it do? - * @param array arguments - */ - public static function post_addToGroup($arguments) { - // Find the group shares and check if the user needs a unique target - $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'); - $result = $query->execute(array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`,' - .' `item_target`, `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`,' - .' `stime`, `file_source`, `file_target`) VALUES (?,?,?,?,?,?,?,?,?,?,?)'); - while ($item = $result->fetchRow()) { - if ($item['item_type'] == 'file' || $item['item_type'] == 'file') { - $itemTarget = null; - } else { - $itemTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['item_target'], $item['id']); - } - if (isset($item['file_source'])) { - $fileTarget = self::generateTarget($item['item_type'], $item['item_source'], self::SHARE_TYPE_USER, - $arguments['uid'], $item['uid_owner'], $item['file_target'], $item['id']); - } else { - $fileTarget = null; - } - // Insert an extra row for the group share if the item or file target is unique for this user - if ($itemTarget != $item['item_target'] || $fileTarget != $item['file_target']) { - $query->execute(array($item['item_type'], $item['item_source'], $itemTarget, $item['id'], - self::$shareTypeGroupUserUnique, $arguments['uid'], $item['uid_owner'], $item['permissions'], - $item['stime'], $item['file_source'], $fileTarget)); - \OC_DB::insertid('*PREFIX*share'); - } - } - } - - /** - * Function that is called after a user is removed from a group. Shares are cleaned up. - * @param array arguments - */ - public static function post_removeFromGroup($arguments) { - // TODO Don't call if user deleted? - $sql = 'SELECT `id`, `share_type` FROM `*PREFIX*share`' - .' WHERE (`share_type` = ? AND `share_with` = ?) OR (`share_type` = ? AND `share_with` = ?)'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'], - self::$shareTypeGroupUserUnique, $arguments['uid'])); - while ($item = $result->fetchRow()) { - if ($item['share_type'] == self::SHARE_TYPE_GROUP) { - // Delete all reshares by this user of the group share - self::delete($item['id'], true, $arguments['uid']); - } else { - self::delete($item['id']); - } - } - } - - /** - * Function that is called after a group is removed. Cleans up the shares to that group. - * @param array arguments - */ - public static function post_deleteGroup($arguments) { - $sql = 'SELECT `id` FROM `*PREFIX*share` WHERE `share_type` = ? AND `share_with` = ?'; - $result = \OC_DB::executeAudited($sql, array(self::SHARE_TYPE_GROUP, $arguments['gid'])); - while ($item = $result->fetchRow()) { - self::delete($item['id']); + Helper::delete($item['id']); } } diff --git a/lib/public/share.php b/lib/public/share.php index adc02dfe8c..fcc61b2f4f 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -37,18 +37,7 @@ namespace OCP; * It provides the following hooks: * - post_shared */ -class Share { - - const FORMAT_NONE = -1; - const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; - - const SHARE_TYPE_USER = 0; - const SHARE_TYPE_GROUP = 1; - const SHARE_TYPE_LINK = 3; - const SHARE_TYPE_EMAIL = 4; - const SHARE_TYPE_CONTACT = 5; - const SHARE_TYPE_REMOTE = 6; +class Share extends \OC\Share\Constants { /** * Register a sharing backend class that implements OCP\Share_Backend for an item type @@ -326,43 +315,6 @@ class Share { return \OC\Share\Share::removeAllLinkShares(); } - /** - * Hook Listeners - */ - - /** - * Function that is called after a user is deleted. Cleans up the shares of that user. - * @param array arguments - */ - public static function post_deleteUser($arguments) { - return \OC\Share\Share::post_deleteUser($arguments); - } - - /** - * Function that is called after a user is added to a group. - * TODO what does it do? - * @param array arguments - */ - public static function post_addToGroup($arguments) { - return \OC\Share\Share::post_addToGroup($arguments); - } - - /** - * Function that is called after a user is removed from a group. Shares are cleaned up. - * @param array arguments - */ - public static function post_removeFromGroup($arguments) { - return \OC\Share\Share::post_removeFromGroup($arguments); - } - - /** - * Function that is called after a group is removed. Cleans up the shares to that group. - * @param array arguments - */ - public static function post_deleteGroup($arguments) { - return \OC\Share\Share::post_deleteGroup($arguments); - } - /** * In case a password protected link is not yet authenticated this function will return false * From 6afd496d9bf64cdc911bab6393d24240db3df04d Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 18 Feb 2014 16:32:49 +0100 Subject: [PATCH 277/333] remove prepFileTarget() seems that it is no longer in use --- lib/private/share/share.php | 18 ------------------ lib/public/share.php | 9 --------- 2 files changed, 27 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index ef0ed257c5..c819f6bf54 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -89,24 +89,6 @@ class Share extends \OC\Share\Constants { return false; } - /** - * Prepare a path to be passed to DB as file_target - * @param string $path path - * @return string Prepared path - */ - public static function prepFileTarget( $path ) { - - // Paths in DB are stored with leading slashes, so add one if necessary - if ( substr( $path, 0, 1 ) !== '/' ) { - - $path = '/' . $path; - - } - - return $path; - - } - /** * Find which users can access a shared item * @param $path to the file diff --git a/lib/public/share.php b/lib/public/share.php index fcc61b2f4f..a08134b383 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -61,15 +61,6 @@ class Share extends \OC\Share\Constants { return \OC\Share\Share::isEnabled(); } - /** - * Prepare a path to be passed to DB as file_target - * @param string $path path - * @return string Prepared path - */ - public static function prepFileTarget($path) { - return \OC\Share\Share::prepFileTarget($path); - } - /** * Find which users can access a shared item * @param $path to the file From 6607f7cb5e170568129ddd3ea0a7839a7f6229b5 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:06:45 +0100 Subject: [PATCH 278/333] seperate creation of select statement --- lib/private/share/share.php | 82 ++++++++++++++++++++----------------- 1 file changed, 44 insertions(+), 38 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index c819f6bf54..d743cfccb7 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1032,44 +1032,7 @@ class Share extends \OC\Share\Constants { } else { $queryLimit = null; } - // TODO Optimize selects - if ($format == self::FORMAT_STATUSES) { - if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' - .' `share_type`, `file_source`, `path`, `expiration`, `storage`, `share_with`, `mail_send`, `uid_owner`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `expiration`, `mail_send`, `uid_owner`'; - } - } else { - if (isset($uidOwner)) { - if ($itemType == 'file' || $itemType == 'folder') { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' - .' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' - .' `expiration`, `token`, `storage`, `mail_send`, `uid_owner`'; - } else { - $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' - .' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; - } - } else { - if ($fileDependent) { - if (($itemType == 'file' || $itemType == 'folder') - && $format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS - || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT - ) { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' - .'`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' - .'`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' - .'`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; - } else { - $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, - `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, - `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; - } - } else { - $select = '*'; - } - } - } + $select = self::createSelectStatement($format, $fileDependent, $uidOwner); $root = strlen($root); $query = \OC_DB::prepare('SELECT '.$select.' FROM `*PREFIX*share` '.$where, $queryLimit); $result = $query->execute($queryArgs); @@ -1581,4 +1544,47 @@ class Share extends \OC\Share\Constants { return false; } + + /** + * @breif construct select statement + * @param int $format + * @param bool $fileDependent ist it a file/folder share or a generla share + * @param string $uidOwner + * @return string select statement + */ + private static function createSelectStatement($format, $fileDependent, $uidOwner = null) { + $select = '*'; + if ($format == self::FORMAT_STATUSES) { + if ($fileDependent) { + $select = '`*PREFIX*share`.`id`, `*PREFIX*share`.`parent`, `share_type`, `path`, `share_with`, `uid_owner`'; + } else { + $select = '`id`, `parent`, `share_type`, `share_with`, `uid_owner`'; + } + } else { + if (isset($uidOwner)) { + if ($fileDependent) { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`,' + . ' `share_type`, `share_with`, `file_source`, `path`, `permissions`, `stime`,' + . ' `expiration`, `token`, `storage`, `mail_send`, `uid_owner`'; + } else { + $select = '`id`, `item_type`, `item_source`, `parent`, `share_type`, `share_with`, `permissions`,' + . ' `stime`, `file_source`, `expiration`, `token`, `mail_send`, `uid_owner`'; + } + } else { + if ($fileDependent) { + if ($format == \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS || $format == \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT) { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `*PREFIX*share`.`parent`, `uid_owner`, ' + . '`share_type`, `share_with`, `file_source`, `path`, `file_target`, ' + . '`permissions`, `expiration`, `storage`, `*PREFIX*filecache`.`parent` as `file_parent`, ' + . '`name`, `mtime`, `mimetype`, `mimepart`, `size`, `unencrypted_size`, `encrypted`, `etag`, `mail_send`'; + } else { + $select = '`*PREFIX*share`.`id`, `item_type`, `item_source`, `item_target`, + `*PREFIX*share`.`parent`, `share_type`, `share_with`, `uid_owner`, + `file_source`, `path`, `file_target`, `permissions`, `stime`, `expiration`, `token`, `storage`, `mail_send`'; + } + } + } + } + return $select; + } } From 3a459db3585f02d02c492dc3ce836e2fea1c8cb2 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:20:09 +0100 Subject: [PATCH 279/333] seperate transformDBResults --- lib/private/share/share.php | 57 +++++++++++++++++++++---------------- 1 file changed, 33 insertions(+), 24 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index d743cfccb7..45ed4c7045 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1046,30 +1046,7 @@ class Share extends \OC\Share\Constants { $switchedItems = array(); $mounts = array(); while ($row = $result->fetchRow()) { - if (isset($row['id'])) { - $row['id']=(int)$row['id']; - } - if (isset($row['share_type'])) { - $row['share_type']=(int)$row['share_type']; - } - if (isset($row['parent'])) { - $row['parent']=(int)$row['parent']; - } - if (isset($row['file_parent'])) { - $row['file_parent']=(int)$row['file_parent']; - } - if (isset($row['file_source'])) { - $row['file_source']=(int)$row['file_source']; - } - if (isset($row['permissions'])) { - $row['permissions']=(int)$row['permissions']; - } - if (isset($row['storage'])) { - $row['storage']=(int)$row['storage']; - } - if (isset($row['stime'])) { - $row['stime']=(int)$row['stime']; - } + self::transformDBResults($row); // Filter out duplicate group shares for users with unique targets if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { $row['share_type'] = self::SHARE_TYPE_GROUP; @@ -1587,4 +1564,36 @@ class Share extends \OC\Share\Constants { } return $select; } + + + /** + * @brief transform db results + * @param array $row result + */ + private static function transformDBResults(&$row) { + if (isset($row['id'])) { + $row['id'] = (int) $row['id']; + } + if (isset($row['share_type'])) { + $row['share_type'] = (int) $row['share_type']; + } + if (isset($row['parent'])) { + $row['parent'] = (int) $row['parent']; + } + if (isset($row['file_parent'])) { + $row['file_parent'] = (int) $row['file_parent']; + } + if (isset($row['file_source'])) { + $row['file_source'] = (int) $row['file_source']; + } + if (isset($row['permissions'])) { + $row['permissions'] = (int) $row['permissions']; + } + if (isset($row['storage'])) { + $row['storage'] = (int) $row['storage']; + } + if (isset($row['stime'])) { + $row['stime'] = (int) $row['stime']; + } + } } From 078fafdc5ace1981a9e5582ac66cc087a1277aed Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:24:31 +0100 Subject: [PATCH 280/333] use variable --- lib/private/share/share.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 45ed4c7045..48dd3cd68e 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -973,13 +973,13 @@ class Share extends \OC\Share\Constants { $where .= ' AND `share_type` != ?'; $queryArgs[] = self::$shareTypeGroupUserUnique; } - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $column = 'file_source'; } else { $column = 'item_source'; } } else { - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $column = 'file_target'; } else { $column = 'item_target'; @@ -994,7 +994,7 @@ class Share extends \OC\Share\Constants { // If looking for own shared items, check item_source else check item_target if (isset($uidOwner) || $itemShareWithBySource) { // If item type is a file, file source needs to be checked in case the item was converted - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $where .= ' `file_source` = ?'; $column = 'file_source'; } else { @@ -1002,7 +1002,7 @@ class Share extends \OC\Share\Constants { $column = 'item_source'; } } else { - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $where .= ' `file_target` = ?'; $item = \OC\Files\Filesystem::normalizePath($item); } else { @@ -1225,7 +1225,7 @@ class Share extends \OC\Share\Constants { } else if (!isset($statuses[$item[$column]])) { $statuses[$item[$column]]['link'] = false; } - if ($itemType == 'file' || $itemType == 'folder') { + if ($fileDependent) { $statuses[$item[$column]]['path'] = $item['path']; } } @@ -1296,7 +1296,6 @@ class Share extends \OC\Share\Constants { \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); throw new \Exception($message); } - $parent = null; if ($backend instanceof \OCP\Share_Backend_File_Dependent) { $filePath = $backend->getFilePath($itemSource, $uidOwner); if ($itemType == 'file' || $itemType == 'folder') { From ecde48fce8b0cc580161da539b44899c406cd10d Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:27:26 +0100 Subject: [PATCH 281/333] don't assign variables in if conditions --- lib/private/share/share.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 48dd3cd68e..69d93797ba 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -923,7 +923,8 @@ class Share extends \OC\Share\Constants { } else { $fileDependent = false; $root = ''; - if ($includeCollections && !isset($item) && ($collectionTypes = self::getCollectionItemTypes($itemType))) { + $collectionTypes = self::getCollectionItemTypes($itemType); + if ($includeCollections && !isset($item) && $collectionTypes) { // If includeCollections is true, find collections of this item type, e.g. a music album contains songs if (!in_array($itemType, $collectionTypes)) { $itemTypes = array_merge(array($itemType), $collectionTypes); @@ -986,7 +987,8 @@ class Share extends \OC\Share\Constants { } } if (isset($item)) { - if ($includeCollections && $collectionTypes = self::getCollectionItemTypes($itemType)) { + $collectionTypes = self::getCollectionItemTypes($itemType); + if ($includeCollections && $collectionTypes) { $where .= ' AND ('; } else { $where .= ' AND'; From 154277ab1139c0705be2947c4c9995794c7d092b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 3 Mar 2014 17:30:16 +0100 Subject: [PATCH 282/333] seperate formatResults() --- lib/private/share/share.php | 49 +++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 18 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 69d93797ba..f6f2ac8ccf 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1217,24 +1217,7 @@ class Share extends \OC\Share\Constants { if (empty($items) && $limit == 1) { return false; } - if ($format == self::FORMAT_NONE) { - return $items; - } else if ($format == self::FORMAT_STATUSES) { - $statuses = array(); - foreach ($items as $item) { - if ($item['share_type'] == self::SHARE_TYPE_LINK) { - $statuses[$item[$column]]['link'] = true; - } else if (!isset($statuses[$item[$column]])) { - $statuses[$item[$column]]['link'] = false; - } - if ($fileDependent) { - $statuses[$item[$column]]['path'] = $item['path']; - } - } - return $statuses; - } else { - return $backend->formatItems($items, $format, $parameters); - } + return self::formatResult($items, $column, $backend, $format, $parameters); } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { return false; } @@ -1597,4 +1580,34 @@ class Share extends \OC\Share\Constants { $row['stime'] = (int) $row['stime']; } } + + /** + * @brief format result + * @param array $items result + * @prams string $column is it a file share or a general share ('file_target' or 'item_target') + * @params \OCP\Share_Backend $backend sharing backend + * @param int $format + * @param array additional format parameters + * @return array formate result + */ + private static function formatResult($items, $column, $backend, $format = self::FORMAT_NONE , $parameters = null) { + if ($format === self::FORMAT_NONE) { + return $items; + } else if ($format === self::FORMAT_STATUSES) { + $statuses = array(); + foreach ($items as $item) { + if ($item['share_type'] === self::SHARE_TYPE_LINK) { + $statuses[$item[$column]]['link'] = true; + } else if (!isset($statuses[$item[$column]])) { + $statuses[$item[$column]]['link'] = false; + } + if ('file_target') { + $statuses[$item[$column]]['path'] = $item['path']; + } + } + return $statuses; + } else { + return $backend->formatItems($items, $format, $parameters); + } + } } From bc0292c16d5fa8e99727306ef703da1e018defa2 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 6 Mar 2014 14:00:12 +0100 Subject: [PATCH 283/333] always return an array --- lib/private/share/share.php | 15 ++++----------- tests/lib/share/share.php | 12 ++++++------ 2 files changed, 10 insertions(+), 17 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index f6f2ac8ccf..b69f620646 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -889,7 +889,7 @@ class Share extends \OC\Share\Constants { * @param bool Include collection item types (optional) * @param bool TODO (optional) * @prams bool check expire date - * @return mixed + * @return array * * See public functions getItem(s)... for parameter usage * @@ -898,11 +898,7 @@ class Share extends \OC\Share\Constants { $uidOwner = null, $format = self::FORMAT_NONE, $parameters = null, $limit = -1, $includeCollections = false, $itemShareWithBySource = false, $checkExpireDate = true) { if (!self::isEnabled()) { - if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; - } else { - return array(); - } + return array(); } $backend = self::getBackend($itemType); $collectionTypes = false; @@ -1214,13 +1210,10 @@ class Share extends \OC\Share\Constants { if (!empty($collectionItems)) { $items = array_merge($items, $collectionItems); } - if (empty($items) && $limit == 1) { - return false; - } + return self::formatResult($items, $column, $backend, $format, $parameters); - } else if ($limit == 1 || (isset($uidOwner) && isset($item))) { - return false; } + return array(); } diff --git a/tests/lib/share/share.php b/tests/lib/share/share.php index b5cba9430a..aae91fa108 100644 --- a/tests/lib/share/share.php +++ b/tests/lib/share/share.php @@ -282,7 +282,7 @@ class Test_Share extends PHPUnit_Framework_TestCase { OC_User::setUserId($this->user2); $this->assertEquals(array(OCP\PERMISSION_READ), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_PERMISSIONS)); OC_User::setUserId($this->user3); - $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt')); // Reshare again, and then have owner unshare OC_User::setUserId($this->user1); @@ -292,9 +292,9 @@ class Test_Share extends PHPUnit_Framework_TestCase { OC_User::setUserId($this->user1); $this->assertTrue(OCP\Share::unshare('test', 'test.txt', OCP\Share::SHARE_TYPE_USER, $this->user2)); OC_User::setUserId($this->user2); - $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt')); OC_User::setUserId($this->user3); - $this->assertFalse(OCP\Share::getItemSharedWith('test', 'test.txt')); + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt')); // Attempt target conflict OC_User::setUserId($this->user1); @@ -325,7 +325,7 @@ class Test_Share extends PHPUnit_Framework_TestCase { ); OC_User::setUserId($this->user2); - $this->assertFalse( + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 2 no longer has access to test.txt after expiration.' ); @@ -526,13 +526,13 @@ class Test_Share extends PHPUnit_Framework_TestCase { ); OC_User::setUserId($this->user2); - $this->assertFalse( + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 2 no longer has access to test.txt after expiration.' ); OC_User::setUserId($this->user3); - $this->assertFalse( + $this->assertSame(array(), OCP\Share::getItemSharedWith('test', 'test.txt', Test_Share_Backend::FORMAT_SOURCE), 'Failed asserting that user 3 no longer has access to test.txt after expiration.' ); From 5db3b049fd459e3a8e6e36a3a9e12f53e97c4b0b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 6 Mar 2014 15:30:01 +0100 Subject: [PATCH 284/333] add todo --- lib/private/share/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index b69f620646..3471514c48 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1170,7 +1170,7 @@ class Share extends \OC\Share\Constants { if ($backend instanceof \OCP\Share_Backend_File_Dependent) { if ($row['item_type'] == 'file' || $row['item_type'] == 'folder') { $childItem['file_source'] = $child['source']; - } else { + } else { // TODO is this really needed if we already know that we use the file backend? $meta = \OC\Files\Filesystem::getFileInfo($child['file_path']); $childItem['file_source'] = $meta['fileid']; } From 2d8607fae92e083a431d476f670acdbc1cfdc947 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 7 Mar 2014 15:38:14 +0100 Subject: [PATCH 285/333] don't assign variables in if condition --- lib/private/share/share.php | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 3471514c48..ae7b6f5fbc 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -556,8 +556,8 @@ class Share extends \OC\Share\Constants { * @return Returns true on success or false on failure */ public static function unshare($itemType, $itemSource, $shareType, $shareWith) { - if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), - self::FORMAT_NONE, null, 1)) { + $item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(),self::FORMAT_NONE, null, 1); + if (!empty($item)) { self::unshareItem($item); return true; } @@ -605,7 +605,8 @@ class Share extends \OC\Share\Constants { * Unsharing from self is not allowed for items inside collections */ public static function unshareFromSelf($itemType, $itemTarget) { - if ($item = self::getItemSharedWith($itemType, $itemTarget)) { + $item = self::getItemSharedWith($itemType, $itemTarget); + if (!empty($item)) { if ((int)$item['share_type'] === self::SHARE_TYPE_GROUP) { // Insert an extra row for the group share and set permission // to 0 to prevent it from showing up for the user @@ -746,22 +747,20 @@ class Share extends \OC\Share\Constants { * @return \OCP\Share_Backend */ public static function setExpirationDate($itemType, $itemSource, $date) { - if ($items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), - self::FORMAT_NONE, null, -1, false)) { - if (!empty($items)) { - if ($date == '') { - $date = null; - } else { - $date = new \DateTime($date); - } - $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); - $query->bindValue(1, $date, 'datetime'); - foreach ($items as $item) { - $query->bindValue(2, (int) $item['id']); - $query->execute(); - } - return true; + $items = self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), self::FORMAT_NONE, null, -1, false); + if (!empty($items)) { + if ($date == '') { + $date = null; + } else { + $date = new \DateTime($date); } + $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `expiration` = ? WHERE `id` = ?'); + $query->bindValue(1, $date, 'datetime'); + foreach ($items as $item) { + $query->bindValue(2, (int) $item['id']); + $query->execute(); + } + return true; } return false; } From 3653a51af2f21065f7afad40624e053f0dfaadb3 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 11 Mar 2014 12:58:46 +0100 Subject: [PATCH 286/333] fix path creation for re-shares, issue #7662 --- apps/files_sharing/tests/api.php | 83 -------------------------------- lib/private/share/share.php | 9 +++- 2 files changed, 7 insertions(+), 85 deletions(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index e2bbb54818..4ada0118d3 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -477,89 +477,6 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } - /** - * @brief test multiple shared folder if the path gets constructed correctly - * @medium - */ - function testGetShareMultipleSharedFolder() { - - self::loginHelper(self::TEST_FILES_SHARING_API_USER1); - - $fileInfo1 = $this->view->getFileInfo($this->folder); - $fileInfo2 = $this->view->getFileInfo($this->folder . $this->subfolder); - - - // share sub-folder to user2 - $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, - \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - - // share was successful? - $this->assertTrue($result); - - // share folder to user2 - $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, - \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - - // share was successful? - $this->assertTrue($result); - - - // login as user2 - self::loginHelper(self::TEST_FILES_SHARING_API_USER2); - - $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); - // share was successful? - $this->assertTrue(is_string($result)); - - - // ask for shared/subfolder - $expectedPath1 = '/Shared' . $this->subfolder; - $_GET['path'] = $expectedPath1; - - $result1 = Share\Api::getAllShares(array()); - - $this->assertTrue($result1->succeeded()); - - // test should return one share within $this->folder - $data1 = $result1->getData(); - $share1 = reset($data1); - - // ask for shared/folder/subfolder - $expectedPath2 = '/Shared' . $this->folder . $this->subfolder; - $_GET['path'] = $expectedPath2; - - $result2 = Share\Api::getAllShares(array()); - - $this->assertTrue($result2->succeeded()); - - // test should return one share within $this->folder - $data2 = $result2->getData(); - $share2 = reset($data2); - - - // validate results - // we should get exactly one result each time - $this->assertEquals(1, count($data1)); - $this->assertEquals(1, count($data2)); - - $this->assertEquals($expectedPath1, $share1['path']); - $this->assertEquals($expectedPath2, $share2['path']); - - - // cleanup - $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null); - $this->assertTrue($result); - - self::loginHelper(self::TEST_FILES_SHARING_API_USER1); - $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, - \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); - $this->assertTrue($result); - $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, - \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); - $this->assertTrue($result); - - } - /** * @brief test re-re-share of folder if the path gets constructed correctly * @medium diff --git a/lib/private/share/share.php b/lib/private/share/share.php index ae7b6f5fbc..e4886abd2b 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1087,18 +1087,23 @@ class Share extends \OC\Share\Constants { if (isset($row['parent'])) { $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); $parentResult = $query->execute(array($row['parent'])); + //$query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); + //$parentResult = $query->execute(array($row['id'])); if (\OC_DB::isError($result)) { \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, \OC_Log::ERROR); } else { $parentRow = $parentResult->fetchRow(); - $splitPath = explode('/', $row['path']); $tmpPath = '/Shared' . $parentRow['file_target']; + // find the right position where the row path continues from the target path + $pos = strrpos($row['path'], $parentRow['file_target']); + $subPath = substr($row['path'], $pos); + $splitPath = explode('/', $subPath); foreach (array_slice($splitPath, 2) as $pathPart) { $tmpPath = $tmpPath . '/' . $pathPart; } - $row['path'] = $tmpPath; + $row['path'] = $tmpPath; } } else { if (!isset($mounts[$row['storage']])) { From 31681a3a27d1f36a980a044479a5948b4310ebe5 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 12 Mar 2014 11:00:30 +0100 Subject: [PATCH 287/333] finally fix the paths for the OCS Share API --- apps/files_sharing/tests/api.php | 85 +++++++++++++++++++++++++++++++- lib/private/share/share.php | 6 ++- 2 files changed, 88 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 4ada0118d3..e3c5b6e431 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -477,6 +477,89 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } + /** + * @brief test multiple shared folder if the path gets constructed correctly + * @medium + */ + function testGetShareMultipleSharedFolder() { + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + + $fileInfo1 = $this->view->getFileInfo($this->folder); + $fileInfo2 = $this->view->getFileInfo($this->folder . $this->subfolder); + + + // share sub-folder to user2 + $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // share was successful? + $this->assertTrue($result); + + // share folder to user2 + $result = \OCP\Share::shareItem('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + // share was successful? + $this->assertTrue($result); + + + // login as user2 + self::loginHelper(self::TEST_FILES_SHARING_API_USER2); + + $result = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null, 1); + // share was successful? + $this->assertTrue(is_string($result)); + + + // ask for shared/subfolder + $expectedPath1 = '/Shared' . $this->subfolder; + $_GET['path'] = $expectedPath1; + + $result1 = Share\Api::getAllShares(array()); + + $this->assertTrue($result1->succeeded()); + + // test should return one share within $this->folder + $data1 = $result1->getData(); + $share1 = reset($data1); + + // ask for shared/folder/subfolder + $expectedPath2 = '/Shared' . $this->folder . $this->subfolder; + $_GET['path'] = $expectedPath2; + + $result2 = Share\Api::getAllShares(array()); + + $this->assertTrue($result2->succeeded()); + + // test should return one share within $this->folder + $data2 = $result2->getData(); + $share2 = reset($data2); + + + // validate results + // we should get exactly one result each time + $this->assertEquals(1, count($data1)); + $this->assertEquals(1, count($data2)); + + $this->assertEquals($expectedPath1, $share1['path']); + $this->assertEquals($expectedPath2, $share2['path']); + + + // cleanup + $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_LINK, null); + $this->assertTrue($result); + + self::loginHelper(self::TEST_FILES_SHARING_API_USER1); + $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + $this->assertTrue($result); + $result = \OCP\Share::unshare('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + $this->assertTrue($result); + + } + /** * @brief test re-re-share of folder if the path gets constructed correctly * @medium @@ -803,5 +886,5 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { class TestShareApi extends \OCA\Files\Share\Api { public function correctPathTest($path, $folder) { return self::correctPath($path, $folder); -} + } } diff --git a/lib/private/share/share.php b/lib/private/share/share.php index e4886abd2b..a385328edc 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1085,10 +1085,12 @@ class Share extends \OC\Share\Constants { // Remove root from file source paths if retrieving own shared items if (isset($uidOwner) && isset($row['path'])) { if (isset($row['parent'])) { + // FIXME: Doesn't always construct the correct path, example: + // Folder '/a/b', share '/a' and '/a/b' to user2 + // user2 reshares /Shared/b and ask for share status of /Shared/a/b + // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); $parentResult = $query->execute(array($row['parent'])); - //$query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); - //$parentResult = $query->execute(array($row['id'])); if (\OC_DB::isError($result)) { \OC_Log::write('OCP\Share', 'Can\'t select parent: ' . \OC_DB::getErrorMessage($result) . ', select=' . $select . ' where=' . $where, From 4900ad911923f829dd89dd5db6162a061cea6c9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 22:59:42 +0100 Subject: [PATCH 288/333] update type hint in PHPDoc --- core/routes.php | 3 ++- settings/routes.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/core/routes.php b/core/routes.php index 76cf03c367..74be880612 100644 --- a/core/routes.php +++ b/core/routes.php @@ -7,7 +7,8 @@ */ // Post installation check -/** @var $this OC_Router */ + +/** @var $this OCP\Route\IRouter */ $this->create('post_setup_check', '/post-setup-check') ->action('OC_Setup', 'postSetupCheck'); diff --git a/settings/routes.php b/settings/routes.php index 6954bd3823..a8bb0d981e 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -6,7 +6,7 @@ * See the COPYING-README file. */ -/** @var $this OC_Router */ +/** @var $this OCP\Route\IRouter */ // Settings pages $this->create('settings_help', '/settings/help') From 6bfeb342db32feff686f4fc6d7bd0d42de9d297b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 23:17:00 +0100 Subject: [PATCH 289/333] fixing code style --- lib/private/util.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/private/util.php b/lib/private/util.php index d039d9f6a9..7168ed0024 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -514,8 +514,7 @@ class OC_Util { ); } } - } - catch (\Doctrine\DBAL\DBALException $e){ + } catch (\Doctrine\DBAL\DBALException $e) { \OCP\Util::logException('core', $e); $errors[] = array( 'error' => 'Error occurred while checking PostgreSQL version', From a54260b5174cca222fb7589d9f582b454b37ef08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 23:35:55 +0100 Subject: [PATCH 290/333] use minimum-scale=1.0 --- core/templates/layout.user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 3d89750348..b7266d50cf 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -15,7 +15,7 @@ - + From e6392163a437ad5d44cba452edeaba35aeff250b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 25 Mar 2014 23:40:40 +0100 Subject: [PATCH 291/333] adding ellipsis on file names --- apps/files/css/mobile.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index 087bb1f836..bb71d67c76 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -49,5 +49,12 @@ table td.filename .nametext { display: none; } +/* ellipsis on file names */ +.nametext { + width: 60%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} } From d0f84e936f3be2a4622b0b1b8be8d070c970b1cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 26 Mar 2014 00:04:11 +0100 Subject: [PATCH 292/333] adding proper notification area for multi line messages --- apps/files/css/mobile.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index bb71d67c76..3ad7d63483 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -57,4 +57,12 @@ table td.filename .nametext { text-overflow: ellipsis; } +/* proper notification area for multi line messages */ +#notification-container { + display: -webkit-box; + display: -moz-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; +} } From 8958b9147b4134d1732b23882d8bc419572b7bd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 26 Mar 2014 00:14:38 +0100 Subject: [PATCH 293/333] adding ellipsis on file names to public file list as well --- apps/files_sharing/css/mobile.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/files_sharing/css/mobile.css b/apps/files_sharing/css/mobile.css index 7d2116d190..988ae862ef 100644 --- a/apps/files_sharing/css/mobile.css +++ b/apps/files_sharing/css/mobile.css @@ -45,5 +45,13 @@ table td.filename .nametext { display: none; } +/* ellipsis on file names */ +.nametext { + width: 60%; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + } From 75d8de378cd355671c310bcb62c35504a5c03f0a Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 26 Mar 2014 01:56:21 -0400 Subject: [PATCH 294/333] [tx-robot] updated from transifex --- apps/files/l10n/am_ET.php | 7 + apps/user_ldap/l10n/am_ET.php | 6 + core/l10n/am_ET.php | 9 + core/l10n/ca.php | 3 + l10n/ach/settings.po | 148 ++--- l10n/ady/settings.po | 148 ++--- l10n/af/settings.po | 148 ++--- l10n/af_ZA/settings.po | 148 ++--- l10n/ak/settings.po | 148 ++--- l10n/am_ET/core.po | 801 +++++++++++++++++++++++++++ l10n/am_ET/files.po | 416 ++++++++++++++ l10n/am_ET/files_encryption.po | 201 +++++++ l10n/am_ET/files_external.po | 127 +++++ l10n/am_ET/files_sharing.po | 72 +++ l10n/am_ET/files_trashbin.po | 64 +++ l10n/am_ET/files_versions.po | 43 ++ l10n/am_ET/lib.po | 338 ++++++++++++ l10n/am_ET/settings.po | 824 ++++++++++++++++++++++++++++ l10n/am_ET/user_ldap.po | 523 ++++++++++++++++++ l10n/am_ET/user_webdavauth.po | 33 ++ l10n/ar/settings.po | 100 ++-- l10n/az/settings.po | 150 ++--- l10n/be/settings.po | 148 ++--- l10n/bg_BG/settings.po | 148 ++--- l10n/bn_BD/settings.po | 148 ++--- l10n/bs/settings.po | 148 ++--- l10n/ca/core.po | 12 +- l10n/ca/settings.po | 100 ++-- l10n/cs_CZ/settings.po | 100 ++-- l10n/cy_GB/settings.po | 148 ++--- l10n/da/settings.po | 100 ++-- l10n/de/settings.po | 98 ++-- l10n/de_AT/settings.po | 148 ++--- l10n/de_CH/settings.po | 150 ++--- l10n/de_DE/settings.po | 114 ++-- l10n/el/settings.po | 100 ++-- l10n/en@pirate/settings.po | 148 ++--- l10n/en_GB/settings.po | 100 ++-- l10n/eo/settings.po | 148 ++--- l10n/es/settings.po | 116 ++-- l10n/es_AR/settings.po | 148 ++--- l10n/es_CL/settings.po | 148 ++--- l10n/es_MX/settings.po | 148 ++--- l10n/et_EE/settings.po | 148 ++--- l10n/eu/settings.po | 148 ++--- l10n/eu_ES/settings.po | 148 ++--- l10n/fa/settings.po | 148 ++--- l10n/fi_FI/settings.po | 114 ++-- l10n/fr/settings.po | 100 ++-- l10n/fr_CA/settings.po | 148 ++--- l10n/gl/settings.po | 100 ++-- l10n/he/settings.po | 148 ++--- l10n/hi/settings.po | 148 ++--- l10n/hr/settings.po | 148 ++--- l10n/hu_HU/settings.po | 148 ++--- l10n/hy/settings.po | 148 ++--- l10n/ia/settings.po | 148 ++--- l10n/id/settings.po | 148 ++--- l10n/is/settings.po | 148 ++--- l10n/it/settings.po | 100 ++-- l10n/ja/settings.po | 100 ++-- l10n/ka_GE/settings.po | 148 ++--- l10n/km/settings.po | 148 ++--- l10n/kn/settings.po | 148 ++--- l10n/ko/settings.po | 100 ++-- l10n/ku_IQ/settings.po | 148 ++--- l10n/lb/settings.po | 148 ++--- l10n/lt_LT/settings.po | 148 ++--- l10n/lv/settings.po | 148 ++--- l10n/mk/settings.po | 148 ++--- l10n/ml/settings.po | 148 ++--- l10n/ml_IN/settings.po | 148 ++--- l10n/mn/settings.po | 148 ++--- l10n/ms_MY/settings.po | 148 ++--- l10n/my_MM/settings.po | 148 ++--- l10n/nb_NO/settings.po | 148 ++--- l10n/nds/settings.po | 148 ++--- l10n/ne/settings.po | 148 ++--- l10n/nl/settings.po | 114 ++-- l10n/nn_NO/settings.po | 148 ++--- l10n/nqo/settings.po | 148 ++--- l10n/oc/settings.po | 148 ++--- l10n/pa/settings.po | 148 ++--- l10n/pl/settings.po | 100 ++-- l10n/pt_BR/settings.po | 114 ++-- l10n/pt_PT/settings.po | 100 ++-- l10n/ro/settings.po | 148 ++--- l10n/ru/settings.po | 148 ++--- l10n/si_LK/settings.po | 148 ++--- l10n/sk/settings.po | 148 ++--- l10n/sk_SK/settings.po | 148 ++--- l10n/sl/settings.po | 100 ++-- l10n/sq/settings.po | 148 ++--- l10n/sr/settings.po | 148 ++--- l10n/sr@latin/settings.po | 148 ++--- l10n/su/settings.po | 148 ++--- l10n/sv/settings.po | 148 ++--- l10n/sw_KE/settings.po | 148 ++--- l10n/ta_LK/settings.po | 148 ++--- l10n/te/settings.po | 148 ++--- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 28 +- 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 | 96 ++-- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/settings.po | 148 ++--- l10n/tr/settings.po | 114 ++-- l10n/tzm/settings.po | 148 ++--- l10n/ug/settings.po | 148 ++--- l10n/uk/settings.po | 148 ++--- l10n/ur/settings.po | 148 ++--- l10n/ur_PK/settings.po | 148 ++--- l10n/uz/settings.po | 148 ++--- l10n/vi/settings.po | 148 ++--- l10n/zh_CN/settings.po | 148 ++--- l10n/zh_HK/settings.po | 148 ++--- l10n/zh_TW/settings.po | 148 ++--- lib/l10n/am_ET.php | 8 + 125 files changed, 10973 insertions(+), 5946 deletions(-) create mode 100644 apps/files/l10n/am_ET.php create mode 100644 apps/user_ldap/l10n/am_ET.php create mode 100644 core/l10n/am_ET.php create mode 100644 l10n/am_ET/core.po create mode 100644 l10n/am_ET/files.po create mode 100644 l10n/am_ET/files_encryption.po create mode 100644 l10n/am_ET/files_external.po create mode 100644 l10n/am_ET/files_sharing.po create mode 100644 l10n/am_ET/files_trashbin.po create mode 100644 l10n/am_ET/files_versions.po create mode 100644 l10n/am_ET/lib.po create mode 100644 l10n/am_ET/settings.po create mode 100644 l10n/am_ET/user_ldap.po create mode 100644 l10n/am_ET/user_webdavauth.po create mode 100644 lib/l10n/am_ET.php diff --git a/apps/files/l10n/am_ET.php b/apps/files/l10n/am_ET.php new file mode 100644 index 0000000000..0157af093e --- /dev/null +++ b/apps/files/l10n/am_ET.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/am_ET.php b/apps/user_ldap/l10n/am_ET.php new file mode 100644 index 0000000000..3a1e002311 --- /dev/null +++ b/apps/user_ldap/l10n/am_ET.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/am_ET.php b/core/l10n/am_ET.php new file mode 100644 index 0000000000..ffcdde48d4 --- /dev/null +++ b/core/l10n/am_ET.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ca.php b/core/l10n/ca.php index c696d1f0e6..0a658d515d 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -1,5 +1,6 @@ "La data de venciment és en el passat.", "Couldn't send mail to following users: %s " => "No s'ha pogut enviar correu als usuaris següents: %s", "Turned on maintenance mode" => "Activat el mode de manteniment", "Turned off maintenance mode" => "Desactivat el mode de manteniment", @@ -121,6 +122,8 @@ $TRANSLATIONS = array( "To login page" => "A la pàgina d'inici de sessió", "New password" => "Contrasenya nova", "Reset password" => "Reinicialitza la contrasenya", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X no té suport i %s no funcionarà correctament en aquesta plataforma. Useu-ho al vostre risc!", +"For the best results, please consider using a GNU/Linux server instead." => "Per millors resultats, millor considereu utilitzar un servidor GNU/Linux.", "Personal" => "Personal", "Users" => "Usuaris", "Apps" => "Aplicacions", diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index b36c8be6ba..ebba9b1309 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "" msgid "Updated" msgstr "" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:138 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:142 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/am_ET/files.po b/l10n/am_ET/files.po new file mode 100644 index 0000000000..e301286aee --- /dev/null +++ b/l10n/am_ET/files.po @@ -0,0 +1,416 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:119 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:156 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:53 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:29 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:71 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:78 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:79 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:81 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:82 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:83 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:84 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:85 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:103 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:160 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:170 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:189 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:247 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:258 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:268 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:340 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:385 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:477 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:564 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:568 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:570 js/filelist.js:430 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:636 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:652 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:702 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:149 +msgid "Share" +msgstr "" + +#: js/fileactions.js:162 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:223 +msgid "Rename" +msgstr "" + +#: js/filelist.js:107 js/filelist.js:110 js/filelist.js:992 +msgid "Pending" +msgstr "" + +#: js/filelist.js:456 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:591 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:591 +msgid "undo" +msgstr "" + +#: js/filelist.js:662 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:687 js/filelist.js:761 js/files.js:691 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:688 js/filelist.js:762 js/files.js:697 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:695 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:931 js/filelist.js:969 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:379 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error moving file" +msgstr "" + +#: js/files.js:610 js/files.js:654 +msgid "Error" +msgstr "" + +#: js/files.js:672 templates/index.php:68 +msgid "Name" +msgstr "" + +#: js/files.js:673 templates/index.php:80 +msgid "Size" +msgstr "" + +#: js/files.js:674 templates/index.php:82 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:111 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:23 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:6 +msgid "New" +msgstr "" + +#: templates/index.php:9 +msgid "New text file" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:13 +msgid "New folder" +msgstr "" + +#: templates/index.php:14 +msgid "Folder" +msgstr "" + +#: templates/index.php:17 +msgid "From link" +msgstr "" + +#: templates/index.php:41 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:52 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:57 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:74 +msgid "Download" +msgstr "" + +#: templates/index.php:85 templates/index.php:86 +msgid "Delete" +msgstr "" + +#: templates/index.php:98 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:100 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:105 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:108 +msgid "Current scanning" +msgstr "" diff --git a/l10n/am_ET/files_encryption.po b/l10n/am_ET/files_encryption.po new file mode 100644 index 0000000000..ee25cebfde --- /dev/null +++ b/l10n/am_ET/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:4 templates/settings-personal.php:3 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:7 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:11 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:51 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:59 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:40 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:47 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:58 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:9 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:12 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:14 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:22 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:28 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:33 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:42 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:44 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:61 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/am_ET/files_external.po b/l10n/am_ET/files_external.po new file mode 100644 index 0000000000..a99ed6d50e --- /dev/null +++ b/l10n/am_ET/files_external.po @@ -0,0 +1,127 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:313 js/settings.js:320 +msgid "Saved" +msgstr "" + +#: lib/config.php:631 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:635 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:638 +msgid "" +"Warning: The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:155 templates/settings.php:156 +msgid "Delete" +msgstr "" + +#: templates/settings.php:127 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:147 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:165 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/am_ET/files_sharing.po b/l10n/am_ET/files_sharing.po new file mode 100644 index 0000000000..5df40a5570 --- /dev/null +++ b/l10n/am_ET/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:13 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/am_ET/files_trashbin.po b/l10n/am_ET/files_trashbin.po new file mode 100644 index 0000000000..5c0bf63448 --- /dev/null +++ b/l10n/am_ET/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:23 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:16 js/trash.js:103 js/trash.js:152 +msgid "Error" +msgstr "" + +#: lib/trashbin.php:859 lib/trashbin.php:861 +msgid "restored" +msgstr "" + +#: templates/index.php:7 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 +msgid "Name" +msgstr "" + +#: templates/index.php:23 templates/index.php:25 +msgid "Restore" +msgstr "" + +#: templates/index.php:31 +msgid "Deleted" +msgstr "" + +#: templates/index.php:34 templates/index.php:35 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:8 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/am_ET/files_versions.po b/l10n/am_ET/files_versions.po new file mode 100644 index 0000000000..63482f6805 --- /dev/null +++ b/l10n/am_ET/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:14 +msgid "Versions" +msgstr "" + +#: js/versions.js:60 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:87 +msgid "More versions..." +msgstr "" + +#: js/versions.js:125 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:155 +msgid "Restore" +msgstr "" diff --git a/l10n/am_ET/lib.po b/l10n/am_ET/lib.po new file mode 100644 index 0000000000..0bec5cd684 --- /dev/null +++ b/l10n/am_ET/lib.po @@ -0,0 +1,338 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:875 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:231 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:232 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:233 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:258 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:259 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:63 private/json.php:88 +msgid "Authentication error" +msgstr "" + +#: private/json.php:52 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:75 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:203 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:73 +#: private/share/mailnotifications.php:119 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:133 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:134 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:135 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "today" +msgstr "" + +#: private/template/functions.php:137 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:139 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:141 +msgid "last month" +msgstr "" + +#: private/template/functions.php:142 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:144 +msgid "last year" +msgstr "" + +#: private/template/functions.php:145 +msgid "years ago" +msgstr "" diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po new file mode 100644 index 0000000000..f2886d1023 --- /dev/null +++ b/l10n/am_ET/settings.po @@ -0,0 +1,824 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05:55+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:55 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:20 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:42 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:74 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:79 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:87 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:92 changepassword/controller.php:103 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:54 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:246 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:277 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:278 +msgid "Weak password" +msgstr "" + +#: js/personal.js:279 +msgid "So-so password" +msgstr "" + +#: js/personal.js:280 +msgid "Good password" +msgstr "" + +#: js/personal.js:281 +msgid "Strong password" +msgstr "" + +#: js/personal.js:316 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:49 personal.php:50 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"This server has no working internet connection. This means that some of the " +"features like mounting of external storage, notifications about updates or " +"installation of 3rd party apps don´t work. Accessing files from remote and " +"sending of notification emails might also not work. We suggest to enable " +"internet connection for this server if you want to have all features." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow user to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:181 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:184 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:37 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:42 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:48 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:50 +msgid "See application website" +msgstr "" + +#: templates/apps.php:52 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:43 +msgid "Current password" +msgstr "" + +#: templates/personal.php:46 +msgid "New password" +msgstr "" + +#: templates/personal.php:50 +msgid "Change password" +msgstr "" + +#: templates/personal.php:64 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:81 +msgid "Email" +msgstr "" + +#: templates/personal.php:83 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:86 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:96 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:101 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:103 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:104 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:105 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:107 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:111 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:112 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:120 templates/personal.php:121 +msgid "Language" +msgstr "" + +#: templates/personal.php:140 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:147 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:149 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:161 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:167 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:172 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/am_ET/user_ldap.po b/l10n/am_ET/user_ldap.po new file mode 100644 index 0000000000..df272f6978 --- /dev/null +++ b/l10n/am_ET/user_ldap.po @@ -0,0 +1,523 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:963 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:41 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:43 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:44 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:45 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:46 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:46 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:52 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:53 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:54 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:55 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:56 +msgid "" +"By default, the UUID attribute is automatically detected. The UUID attribute" +" is used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:57 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:59 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:60 +msgid "" +"Usernames are used to store and assign (meta) data. In order to precisely " +"identify and recognize users, each LDAP user will have a internal username. " +"This requires a mapping from username to LDAP user. The created username is " +"mapped to the UUID of the LDAP user. Additionally the DN is cached as well " +"to reduce LDAP interaction, but it is not used for identification. If the DN" +" changes, the changes will be found. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/am_ET/user_webdavauth.po b/l10n/am_ET/user_webdavauth.po new file mode 100644 index 0000000000..effb19c169 --- /dev/null +++ b/l10n/am_ET/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-25 09:38+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: am_ET\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 06d399baad..6e6dd969c6 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:40+0000\n" -"Last-Translator: m.shehab \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,15 +50,15 @@ msgstr "تم ارسال البريد الالكتروني" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:282 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "وضعية الإرسال" -#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "التشفير" -#: admin/controller.php:120 templates/admin.php:319 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "أسلوب التطابق" @@ -430,157 +430,173 @@ msgid "Cron" msgstr "مجدول" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه" -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "استخدم نظام خدمة cron لـ استدعاء ملف cron.php كل 15 دقيقة " -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:210 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "السماح بالرفع للعامة " -#: templates/admin.php:211 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "السماح للمستخدمين بتفعيل الرفع للاخرين من خلال مجلد المشاركة العام " -#: templates/admin.php:218 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:219 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:226 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:229 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:236 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "السماح بتنبيهات البريد الالكتروني." -#: templates/admin.php:237 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة " -#: templates/admin.php:244 +#: templates/admin.php:261 msgid "Security" msgstr "حماية" -#: templates/admin.php:257 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:259 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر" -#: templates/admin.php:265 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او تعطيل SSL enforcement." -#: templates/admin.php:277 +#: templates/admin.php:294 msgid "Email Server" msgstr "خادم البريد الالكتروني" -#: templates/admin.php:279 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:310 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:332 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:336 +#: templates/admin.php:353 msgid "Server address" msgstr "عنوان الخادم" -#: templates/admin.php:340 +#: templates/admin.php:357 msgid "Port" msgstr "المنفذ" -#: templates/admin.php:345 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:346 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:354 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:359 +#: templates/admin.php:376 msgid "Log" msgstr "سجل" -#: templates/admin.php:360 +#: templates/admin.php:377 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:392 +#: templates/admin.php:409 msgid "More" msgstr "المزيد" -#: templates/admin.php:393 +#: templates/admin.php:410 msgid "Less" msgstr "أقل" -#: templates/admin.php:399 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "إصدار" -#: templates/admin.php:403 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Крон" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Споделяне" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адрес на сървъра" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Още" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "По-малко" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Версия" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "সার্ভার ঠিকানা" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "পোর্ট" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "বেশী" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "কম" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,15 +54,15 @@ msgstr "E-mail odeslán" msgid "You need to set your user email before being able to send test emails." msgstr "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit svou e-mailovou adresu." -#: admin/controller.php:116 templates/admin.php:282 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Mód odesílání" -#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Šifrování" -#: admin/controller.php:120 templates/admin.php:319 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Metoda ověření" @@ -434,157 +434,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Spustit jednu úlohu s každým načtením stránky" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použít systémovou službu cron pro volání cron.php každých 15 minut." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Povolit uživatelům sdílet položky veřejně pomocí odkazů" -#: templates/admin.php:210 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Povolit veřejné nahrávání souborů" -#: templates/admin.php:211 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky" -#: templates/admin.php:218 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:219 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:226 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:229 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:236 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Povolit e-mailová upozornění" -#: templates/admin.php:237 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" -#: templates/admin.php:244 +#: templates/admin.php:261 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:257 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:259 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynutí připojování klientů k %s šifrovaným spojením." -#: templates/admin.php:265 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL." -#: templates/admin.php:277 +#: templates/admin.php:294 msgid "Email Server" msgstr "E-mailový server" -#: templates/admin.php:279 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Toto se používá pro odesílání upozornění." -#: templates/admin.php:310 +#: templates/admin.php:327 msgid "From address" msgstr "Adresa odesílatele" -#: templates/admin.php:332 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Vyžadováno ověření" -#: templates/admin.php:336 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresa serveru" -#: templates/admin.php:340 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:345 +#: templates/admin.php:362 msgid "Credentials" msgstr "Přihlašovací údaje" -#: templates/admin.php:346 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP uživatelské jméno " -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP heslo" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Otestovat nastavení e-mailu" -#: templates/admin.php:354 +#: templates/admin.php:371 msgid "Send email" msgstr "Odeslat e-mail" -#: templates/admin.php:359 +#: templates/admin.php:376 msgid "Log" msgstr "Záznam" -#: templates/admin.php:360 +#: templates/admin.php:377 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:392 +#: templates/admin.php:409 msgid "More" msgstr "Více" -#: templates/admin.php:393 +#: templates/admin.php:410 msgid "Less" msgstr "Méně" -#: templates/admin.php:399 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Verze" -#: templates/admin.php:403 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the ownCloud community, the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the , 2013 # Mario Siegmann , 2013 # Mirodin , 2013 -# traductor , 2013 +# traductor, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" @@ -56,15 +56,15 @@ msgstr "Email gesendet" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -220,31 +220,31 @@ msgstr "Update durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -341,18 +341,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -361,68 +361,68 @@ msgid "" "root." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis ausserhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "Bitte überprüfen Sie die Instalationsanleitungen." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -431,162 +431,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Erlaube öffentliches hochladen" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mehr" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Weniger" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,15 +56,15 @@ msgstr "Email gesendet" msgid "You need to set your user email before being able to send test emails." msgstr "Sie müssen Ihre Benutzer-E-Mail-Adresse setzen, bevor Sie Test-E-Mails versenden können." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Authentifizierungsmethode" @@ -220,31 +220,31 @@ msgstr "Update durchführen" msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Wählen Sie ein Profilbild" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Sehr schwaches Passwort" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Schwaches Passwort" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Passables Passwort" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Gutes Passwort" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Starkes Passwort" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen." @@ -436,157 +436,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt es Benutzern, andere Benutzer einzurichten, dass diese in deren öffentlich freigegebenen Ordner hochladen dürfen" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Dies wird für das Senden von Benachrichtigungen verwendet." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP Passwort" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "E-Mail-Einstellungen testen" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "E-Mail senden" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Mehr" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Weniger" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,15 +55,15 @@ msgstr "Το Email απεστάλη " msgid "You need to set your user email before being able to send test emails." msgstr "Πρέπει να ορίσετε το email του χρήστη πριν να είστε σε θέση να στείλετε δοκιμαστικά emails." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Κατάσταση αποστολής" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Μέθοδος πιστοποίησης" @@ -435,157 +435,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Επιτρέψτε κοινόχρηστο ανέβασμα" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Επιτρέψτε στους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Επιτρέψτε ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Επιτρέψτε στο χρήστη να στέλνει ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Επιβάλλει τους δέκτες να συνδέονται με το %s μέσω κρυπογραφημένης σύνδεσης." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Διακομιστής Email" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Χρησιμοποιείται για αποστολή ειδοποιήσεων." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Από τη διεύθυνση" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Απαιτείται πιστοποίηση" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Διεύθυνση διακομιστή" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Θύρα" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Πιστοποιητικά" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Όνομα χρήστη SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Συνθηματικό SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Δοκιμή ρυθμίσεων email" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Αποστολή email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,15 +48,15 @@ msgstr "Email sent" msgid "You need to set your user email before being able to send test emails." msgstr "You need to set your user email before being able to send test emails." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Send mode" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Encryption" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Authentication method" @@ -428,157 +428,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Execute one task with each page loaded" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use system's cron service to call the cron.php file every 15 minutes." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Sharing" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Enable Share API" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Allow apps to use the Share API" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Allow links" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Allow users to share items to the public with links" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Allow public uploads" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Allow users to enable others to upload into their publicly shared folders" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Allow resharing" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Allow users to share items shared with them again" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Allow users to share with anyone" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Allow users to only share with users in their groups" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Allow mail notification" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Allow user to send mail notification for shared files" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Security" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forces the clients to connect to %s via an encrypted connection." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Email Server" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "This is used for sending out notifications." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "From address" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Authentication required" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Server address" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credentials" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP Username" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP Password" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Test email settings" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Send email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Log level" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "More" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Less" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Kunhavigo" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Kapabligi API-on por Kunhavigo" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Kapabligi ligilojn" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Kapabligi rekunhavigon" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Servila adreso" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Pordo" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Aŭtentigiloj" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Pli" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Malpli" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Eldono" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the , 2013 # ggam , 2013 # japaol , 2013 -# txelu , 2014 +# Jose Luis Tirado , 2014 # juanman , 2013 # pablomillaquen , 2013 # Raul Fernandez Garcia , 2013 @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 21:20+0000\n" -"Last-Translator: txelu \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,15 +61,15 @@ msgstr "Correo electrónico enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Tiene que configurar su dirección de correo electrónico antes de poder enviar mensajes de prueba." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Método de autenticación" @@ -225,31 +225,31 @@ msgstr "Actualizar" msgid "Updated" msgstr "Actualizado" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Seleccionar una imagen de perfil" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Contraseña muy débil" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Contraseña débil" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Contraseña pasable" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Contraseña buena" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Contraseña muy buena" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo." @@ -441,157 +441,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Servidor de correo electrónico" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Esto se usa para enviar notificaciones." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Desde la dirección" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Se necesita autenticación" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Puerto" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciales" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nombre de usuario SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Contraseña SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Probar configuración de correo electrónico" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Enviar mensaje" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Registro" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Más" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Por favor, cheque bien la guía de instalación." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "El módulo 'fileinfo' no existe" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Su versión de PHP está fuera de término" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Su versión de PHP está fuera de término. Recomendamos fuertemente actualizar a 5.3.8 o a una más nueva porque se sabe que versiones anteriores están falladas. Es posible que esta instalación no funcione adecuadamente." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "\"Locale\" no está funcionando" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "La localización del sistema no puede cambiarse a una que soporta UTF-8" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Se sugiere fuertemente instalar los paquetes requeridos en su sistema para soportar uno de las siguientes localizaciones: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "La conexión a Internet no esta funcionando. " -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -425,162 +425,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "El servidor no posee una conexión a Internet activa. Esto significa que algunas características como el montaje de un almacenamiento externo, las notificaciones acerca de actualizaciones o la instalación de aplicaciones de terceros no funcionarán. El acceso a archivos de forma remota y el envío de correos con notificaciones es posible que tampoco funcionen. Sugerimos habilitar la conexión a Internet para este servidor si deseas tener todas estas características." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Ejecutá una tarea con cada pagina cargada." -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registrado en el servicio webcron para llamarlo cada 15 minutos usando http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Usar el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Habilitar Share API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la Share API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir enlaces públicos" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que los usuarios autoricen a otros a subir archivos en sus directorios públicos compartidos" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir Re-Compartir" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permite a los usuarios volver a compartir items que les fueron compartidos" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera." -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los de sus mismos grupos" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Permitir al usuario enviar notificaciones por correo para archivos compartidos" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Puerto" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciales" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Más" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "No se ha encontrado el módulo \"fileinfo\"" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Su versión de PHP ha caducado" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Su versión de PHP ha caducado. Le sugerimos encarecidamente que la actualize a 5.3.8 o a una más nueva porque normalmente las versiones antiguas no funcionan bien. Puede ser que esta instalación no esté funcionando bien por ello." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "No se puede escoger una configuración regional que soporte UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Esto significa que puede haber problemas con ciertos caracteres en los nombres de los archivos." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Es muy recomendable instalar los paquetes necesarios para poder soportar una de las siguientes configuraciones regionales: %s. " -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "La conexión a Internet no está funcionando" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos con el público mediante enlaces" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir subidas públicas" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir de nuevo elementos ya compartidos" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquier persona" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Puerto" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Registro" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Más" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Palun kontrolli uuesti paigaldusjuhendeid." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Moodul 'fileinfo' puudub" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "PHP versioon on aegunud" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Sinu PHP versioon on aegunud. Soovitame tungivalt uuenda versioonile 5.3.8 või uuemale, kuna varasemad versioonid on teadaolevalt vigased. On võimalik, et see käesolev paigaldus ei toimi korrektselt." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokalisatsioon ei toimi" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Soovitame tungivalt paigaldada vajalikud paketid oma süsteemi tagamaks tuge järgmistele lokaliseeringutele: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Internetiühendus ei toimi" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Käivita toiming igal lehe laadimisel" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php on registreeritud webcron teenuses, et käivitada fail cron.php iga 15 minuti tagant üle http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Kasuta süsteemi cron teenust, et käivitada fail cron.php iga 15 minuti tagant." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Jagamine" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Luba Share API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada Share API-t" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Luba lingid" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Luba avalikud üleslaadimised" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Luba kasutajatel üleslaadimine teiste poolt oma avalikult jagatud kataloogidesse " -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Luba teavitused e-postiga" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Palun ühendu oma %s üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Serveri aadress" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Kasutajatunnused" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Logi" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Rohkem" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Vähem" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versioon" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Mesedez birpasatu instalazio gidak." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "'fileinfo' Modulua falta da" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Zure PHP bertsioa zaharkituta dago" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Zure PHP bertsioa zaharkituta dago. Gure aholkua 5.3.8 edo bertsio berriago batera eguneratzea da, bertsio zaharragoak arazoak ematen baitituzte. Posible da instalazio honek ez funtzionatzea ongi." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokala ez dabil" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistemaren lokala ezin da UTF-8 onartzen duen batera ezarri." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Interneteko konexioak ez du funtzionatzen" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -425,162 +425,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Exekutatu zeregin bat orri karga bakoitzean" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php webcron zerbitzu batean erregistratua dago cron.php 15 minuturo http bidez deitzeko." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Erabili sistemaren cron zerbitzua cron.php fitxategia 15 minuturo deitzeko." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Partekatzea" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Gaitu Elkarbanatze APIa" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Baimendu igoera publikoak" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Baimendu erabiltzaileak besteak bere partekatutako karpetetan fitxategiak igotzea" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Baimendu posta bidezko jakinarazpenak" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Zerbitzariaren helbidea" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Portua" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Kredentzialak" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Gehiago" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "ماژول 'fileinfo' از کار افتاده" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "زبان محلی کار نمی کند." -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "اتصال اینترنت کار نمی کند" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -425,162 +425,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "این سرور ارتباط اینترنتی ندارد. این بدین معناست که بعضی از امکانات نظیر مرتبط سازی یک منبع ذخیره‌ی خارجی، اطلاعات رسانی در مورد بروزرسانی‌ها یا نصب برنامه های جانبی کار نمی‌کنند. دسترسی به فایل ها از راه دور و ارسال اطلاع رسانی توسط ایمیل ممکن است همچنان کار نکند. ما پیشنهاد می‌کنیم که ارتباط اینترنتی مربوط به این سرور را فعال کنید تا تمامی امکانات را در اختیار داشته باشید." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "زمانبند" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php در یک سرویس webcron ثبت شده است که هر 15 دقیقه یک بار بر روی بستر http فراخوانی شود." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "از سرویس کرون سرور استفاده شده است که فایل cron.php را هر 15 دقیقه یک بار فراخوانی کند." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "اشتراک گذاری" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "فعال کردن API اشتراک گذاری" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "اجازه ی لینک ها" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "اجازه بارگذاری عمومی" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "به کاربران اجازه داده شود که امکان بارگذاری در پوشه هایی که بصورت عمومی به اشتراک گذاشته اند را برای سایرین فعال سازند" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "مجوز اشتراک گذاری مجدد" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "اجازه به کابران برای اشتراک گذاری با همه" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "مجاز نمودن اطلاع رسانی توسط ایمیل" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "مجاز نمودن ارسال ایمیل توسط کاربر برای فایل‌های به اشتراک گذاشته شده" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "امنیت" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "کلاینت‌ها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "برای فعال سازی یا عدم فعال سازی اجبار استفاده از SSL، لطفاً از طریق HTTPS به %s وصل شوید." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "آدرس سرور" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "درگاه" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "اعتبارهای" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "نسخه" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,15 +48,15 @@ msgstr "Sähköposti lähetetty" msgid "You need to set your user email before being able to send test emails." msgstr "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Lähetystila" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Salaus" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Tunnistautumistapa" @@ -212,31 +212,31 @@ msgstr "Päivitä" msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Valitse profiilikuva" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Erittäin heikko salasana" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Heikko salasana" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Kohtalainen salasana" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Hyvä salasana" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Vahva salasana" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa." @@ -428,157 +428,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein" -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita käyttäen linkkejä" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Salli julkiset lähetykset" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Salli sähköposti-ilmoitukset" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Sähköpostipalvelin" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Tätä käytetään ilmoitusten lähettämiseen." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Lähettäjän osoite" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Tunnistautuminen vaaditaan" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Palvelimen osoite" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Portti" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Tilitiedot" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP-käyttäjätunnus" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP-salasana" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Testaa sähköpostiasetukset" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Lähetä sähköpostiviesti" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Loki" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Enemmän" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versio" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -58,15 +58,15 @@ msgstr "Email envoyé" msgid "You need to set your user email before being able to send test emails." msgstr "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoyer des e-mails de test." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Mode d'envoi" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Chiffrement" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Méthode d'authentification" @@ -438,157 +438,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php est enregistré en tant que service webcron pour appeler cron.php toutes les 15 minutes via http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Utilise le service cron du système pour appeler le fichier cron.php toutes les 15 minutes." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Autoriser les téléversements publics" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permet d'autoriser les autres utilisateurs à téléverser dans le dossier partagé public de l'utilisateur" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Autoriser les notifications par couriel" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forcer les clients à se connecter à %s via une connexion chiffrée." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Serveur mail" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Ceci est utilisé pour l'envoi des notifications." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Adresse source" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Authentification requise" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresse du serveur" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Informations d'identification" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nom d'utilisateur SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Mot de passe SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Paramètres de test d'e-mail" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Envoyer un e-mail" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Plus" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Moins" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,15 +49,15 @@ msgstr "Correo enviado" msgid "You need to set your user email before being able to send test emails." msgstr "É necesario configurar o correo do usuario antes de poder enviar mensaxes de correo de proba." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Método de autenticación" @@ -429,157 +429,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Executar unha tarefa con cada páxina cargada" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o servizo de sistema cron para chamar ao ficheiro cron.php cada 15 minutos." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartindo" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activar o API para compartir" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir que os aplicativos empreguen o API para compartir" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir ligazóns" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Permitir que os usuarios compartan elementos ao público con ligazóns" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir os envíos públicos" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que os usuarios lle permitan a outros enviar aos seus cartafoles compartidos publicamente" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir compartir" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permitir que os usuarios compartan de novo os elementos compartidos con eles" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir que os usuarios compartan con calquera" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os usuarios compartan só cos usuarios dos seus grupos" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir o envío de notificacións por correo" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar que os clientes se conecten a %s empregando unha conexión cifrada." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Conéctese a %s empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Servidor de correo" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Isto utilizase para o envío de notificacións." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Desde o enderezo" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Requírese autenticación" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Enderezo do servidor" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Porto" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nome de usuario SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Contrasinal SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Correo de proba dos axustes" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Enviar o correo" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Máis" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versión" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "המודול „fileinfo“ חסר" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "החיבור לאינטרנט אינו פעיל" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "יש להפעיל משימה אחת עם כל עמוד שנטען" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "שיתוף" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "הפעלת API השיתוף" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "לאפשר ליישום להשתמש ב־API השיתוף" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "לאפשר קישורים" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "לאפשר למשתמשים לשתף פריטים " -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "לאפשר שיתוף מחדש" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "לאפשר למשתמשים לשתף הלאה פריטים ששותפו אתם" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "לאפשר למשתמשים לשתף עם כל אחד" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "כתובת שרת" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "פורט" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "פרטי גישה" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "יומן" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "יותר" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "פחות" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "גרסא" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "više" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "A 'fileinfo' modul hiányzik" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "A PHP verzió túl régi" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "A PHP verzió túl régi. Nagyon ajánlott legalább az 5.3.8-as vagy újabb verzióra frissíteni, mert a régebbi verziónál léteznek ismert hibák. Ezért lehet a telepítésed elkézelhető, hogy nem müködik majd megfelelően." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "A nyelvi lokalizáció nem működik" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "A rendszer lokálok nem lehetett olyat beállítani ami támogatja az UTF-8-at." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Ez arra utal, hogy probléma lehet néhány karakterrel a file neveiben." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Erősen ajánlott telepíteni a szükséges csomagokat a rendszeredbe amely támogat egyet a következő helyi beállítások közül: %s" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Az internet kapcsolat nem működik" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -426,162 +426,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Ütemezett feladatok" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "A cron.php webcron szolgáltatásként van regisztrálva, hogy 15 percenként egyszer lefuttassa a cron.php-t." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Használjuk a rendszer cron szolgáltatását, hogy 15 percenként egyszer futtassa le a cron.php-t." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Megosztás" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "A megosztás API-jának engedélyezése" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Linkek engedélyezése" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Feltöltést engedélyezése mindenki számára" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Engedélyezni a felhasználóknak, hogy beállíithassák, hogy mások feltölthetnek a nyilvánosan megosztott mappákba." -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "A továbbosztás engedélyezése" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "A felhasználók bárkivel megoszthatják állományaikat" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "E-mail értesítések engedélyezése" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról." -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Kérjük kapcsolodjon a %s rendszerhez HTTPS protokollon keresztül, hogy be vagy ki kapcsoljaa kötelező SSL beállítást." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "A kiszolgáló címe" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Azonosítók" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Több" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Verzió" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Registro" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Plus" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Silakan periksa kembali petunjuk instalasi." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' tidak ada" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Versi PHP telah usang" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Versi PHP telah usang. Kami sangat menyarankan untuk diperbarui ke versi 5.3.8 atau yang lebih baru karena versi lama diketahui rusak. Ada kemungkinan bahwa instalasi ini tidak bekerja dengan benar." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Kode pelokalan tidak berfungsi" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Sistem lokal tidak dapat diatur untuk satu yang mendukung UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Ini artinya mungkin ada masalah dengan karakter tertentu pada nama berkas." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Kami sangat menyarankan untuk menginstal paket yang dibutuhkan pada sistem agar mendukung salah satu bahasa berikut: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Koneksi internet tidak berfungsi" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Jalankan tugas setiap kali halaman dimuat" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php didaftarkan pada layanan webcron untuk memanggil cron.php setiap 15 menit melalui http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Menggunakan sistem layanan cron untuk memanggil berkas cron.php setiap 15 menit." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Berbagi" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktifkan API Pembagian" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Izinkan tautan" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Izinkan unggahan publik" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Izinkan pengguna memungkinkan orang lain untuk mengunggah kedalam folder berbagi publik mereka" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Izinkan pembagian ulang" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Izinkan pemberitahuan email" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Alamat server" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Catat" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Lainnya" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versi" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Host nafn netþjóns" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Meira" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Minna" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,15 +51,15 @@ msgstr "Email inviata" msgid "You need to set your user email before being able to send test emails." msgstr "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio delle email." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modalità di invio" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Cifratura" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Metodo di autenticazione" @@ -431,157 +431,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Consenti caricamenti pubblici" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Consenti agli utenti di abilitare altri al caricamento nelle loro cartelle pubbliche condivise" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere a loro volta elementi condivisi da altri" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Consenti le notifiche tramite posta elettronica" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Protezione" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forza i client a connettersi a %s tramite una connessione cifrata." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Server di posta" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Viene utilizzato per inviare le notifiche." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Indirizzo mittente" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Autenticazione richiesta" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Indirizzo del server" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Porta" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenziali" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nome utente SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Password SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Prova impostazioni email" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Invia email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Altro" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Meno" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versione" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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,15 +52,15 @@ msgstr "メールを送信しました" msgid "You need to set your user email before being able to send test emails." msgstr "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。" -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "送信モード" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "暗号化" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "認証方法" @@ -432,157 +432,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されています" -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "システムのcronサービスを利用して15分ごとにcron.phpファイルを実行します。" -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "共有" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "ユーザーがリンクによりアイテムを公開することを許可する" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "パブリックなアップロードを許可" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "公開している共有フォルダーへのアップロードを共有しているメンバーにも許可" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "ユーザーが共有しているアイテムの再共有を許可する" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "ユーザーに誰とでも共有することを許可する" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "ユーザーにグループ内のユーザーとのみ共有を許可する" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "メール通知を許可" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "共有ファイルに関するメール通知の送信をユーザーに許可する" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "クライアントから %sへの接続を常に暗号化します。" -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "メールサーバー" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "これは通知の送信に使われます。" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "アドレスから" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "要求される認証" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "サーバーアドレス" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "ポート" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "資格情報" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP ユーザー名" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP パスワード" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "メールテスト設定" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "メールを送信" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "ログ" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "もっと見る" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "閉じる" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "バージョン" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "მოდული 'fileinfo' არ არსებობს" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "ლოკალიზაცია არ მუშაობს" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "ინტერნეტ კავშირი არ მუშაობს" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron–ი" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "გაზიარება" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Share API–ის ჩართვა" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "ლინკების დაშვება" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "გადაზიარების დაშვება" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "სერვერის მისამართი" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "პორტი" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "იუზერ/პაროლი" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "ខ្វះ​ម៉ូឌុល 'fileinfo'" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "ខ្វះ​ម៉ូឌុល 'fileinfo' ។ យើង​សូម​ណែនាំ​ឲ្យ​បើក​ម៉ូឌុល​នេះ ដើម្បី​ទទួល​បាន​លទ្ធផល​ល្អ​នៃ​ការ​សម្គាល់​ប្រភេទ mime ។" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Locale មិន​ដំណើរការ" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "ការ​តភ្ជាប់​អ៊ីនធឺណិត​មិន​មាន​ដំណើរ​ការ" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "ការ​ចែក​រំលែក" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "បើក API ចែក​រំលែក" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "អនុញ្ញាត​ឲ្យ​កម្មវិធី​ប្រើ API ចែក​រំលែក" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "អនុញ្ញាត​តំណ" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ចែក​រំលែក​របស់​ទៅ​សាធារណៈ​ជាមួយ​តំណ" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "អនុញ្ញាត​ការ​ចែក​រំលែក​ម្ដង​ទៀត" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ប្រើ​ចែក​រំលែក​ជាមួយ​នរណា​ម្នាក់" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "សុវត្ថិភាព" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "បង្ខំ HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "អាសយដ្ឋាន​ម៉ាស៊ីន​បម្រើ" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "កម្រិត Log" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "ច្រើន​ទៀត" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "តិច" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "កំណែ" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,15 +52,15 @@ msgstr "이메일 발송됨" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "암호화" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -432,157 +432,173 @@ msgid "Cron" msgstr "크론" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "개별 페이지를 불러올 때마다 실행" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일에 접근합니다." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "공유" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "공유 API 사용하기" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "앱에서 공유 API를 사용할 수 있도록 허용" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "링크 허용" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "공개 업로드 허용" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "다른 사용자들이 공개된 공유 폴더에 파일 업로드 허용" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "재공유 허용" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "누구나와 공유할 수 있도록 허용" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "메일 알림 허용" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "사용자에게 공유 파일에 대한 메일 알림을 허용합니다" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "보안" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "전자우편 서버" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "보낸 이 주소" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "인증 필요함" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "서버 주소" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "포트" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "자격 정보" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP 사용자명" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP 암호" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "시험용 전자우편 설정" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "전자우편 보내기" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "로그" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "더 중요함" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "버전" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "ناونیشانی ڕاژه" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Server Adress" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Méi" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Manner" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Trūksta 'fileinfo' modulio" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokalė neveikia" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Nėra interneto ryšio" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -427,162 +427,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šis serveris neturi veikiančio ryšio. Tai reiškia, kas kai kurios funkcijos kaip išorinės saugyklos prijungimas, perspėjimai apie atnaujinimus ar trečių šalių programų įdiegimas neveikia. Failų pasiekimas iš kitur ir pranešimų siuntimas el. paštu gali taip pat neveikti. Rekomenduojame įjungti interneto ryšį šiame serveryje, jei norite naudoti visas funkcijas." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kas 15 minučių per http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kas 15 minučių." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Dalijimasis" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Įjungti Share API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Leidžia programoms naudoti Share API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Lesti nuorodas" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Leisti naudotojams viešai dalintis elementais su nuorodomis" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Leisti viešus įkėlimus" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Leisti naudotojams įgalinti kitus įkelti į savo viešai dalinamus aplankus" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Leisti dalintis" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Leisti naudotojams toliau dalintis elementais pasidalintais su jais" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Leisti naudotojams dalintis su bet kuo" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Leisti naudotojams dalintis tik su naudotojais savo grupėje" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Leisti el. pašto perspėjimą" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Reikalauti HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Verčia klientus jungtis prie %s per šifruotą ryšį." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Prašome prisijungti prie savo %s per HTTPS, kad įjungti ar išjungti SSL reikalavimą." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Serverio adresas" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Prievadas" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Daugiau" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versija" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Lūdzu kārtīgi izlasiet uzstādīšanas norādījumus." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Trūkst modulis “fileinfo”" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokāle nestrādā" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Interneta savienojums nedarbojas" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Šim serverim nav savienojums ar internetu. Tas nozīmē ka nebūs tādas iespējas kā ārējo datu nesēju montēšana, paziņojumi par atjauninājumiem vai citu izstrādātāju programmu uzstādīšana. Attālināta failu piekļuve vai paziņojumu epastu sūtīšana iespējams arī nedarbosies. Ir rekomendēts iespējot interneta savienojumu lai gūtu iespēju izmantotu visus risinājumus." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Dalīšanās" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktivēt koplietošanas API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Ļauj lietotnēm izmantot koplietošanas API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Atļaut saites" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Atļaut publisko augšupielādi" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Ļaut lietotājiem iespējot atļaut citiem augšupielādēt failus viņu publiskajās mapēs" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Atļaut atkārtotu koplietošanu" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Ļaut lietotājiem dalīties ar visiem" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Ļaut lietotājiem dalīties ar lietotājiem to grupās" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Drošība" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Uzspiest klientiem pieslēgties pie %s caur šifrētu savienojumu." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Lūdzu slēdzieties pie %s caur HTTPS lai iespējotu vai atspējotu SSL izpildīšanu" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Servera adrese" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Ports" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Akreditācijas dati" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Vairāk" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versija" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Локалето не функционира" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Споделување" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Овозможи го API-то за споделување" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Дозволете апликациите да го користат API-то за споделување" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Дозволи врски" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Дозволи јавен аплоуд" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Овозможи повторно споделување" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Овозможи корисниците да споделуваат со секого" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Овозможи корисниците да споделуваат со корисници од своите групи" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Овозможи известување по електронска пошта" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адреса на сервер" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Порта" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Записник" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Повеќе" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Помалку" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Верзија" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Alamat pelayan" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Vennligst dobbeltsjekk installasjonsveilederne." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modulen 'fileinfo' mangler" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Din PHP-versjon er udatert" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "PHP-versjonen din er utdatert. Vi anbefaler på det sterkeste at du oppdaterer til 5.3.8 eller nyere fordi eldre versjoner ikke vil virke. Det er mulig at denne installasjoner ikke fungerer korrekt." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Språk virker ikke" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Kan ikke sette systemets nasjonale innstillinger til en som støtter UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Dette betyr at det kan forekomme problemer med visse tegn i filnavn." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Vi anbefaler på det sterkeste å installere pakkene som er nødvendig for at systemet skal støtte en av følgende nasjonale innstillinger: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Ingen internettilkopling" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -426,162 +426,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne serveren har ikke en fungerende Internett-tilkobling. Dette betyr at noen av funksjonene, slik som montering av ekstern lagring, påminnelser om oppdatering eller installering av 3-parts apper ikke fungerer. Fjerntilgang til filer og utsending av påminnelser i e-post virker kanskje ikke heller. Vi anbefaler at Internett-forbindelsen for denne serveren aktiveres hvis du vil ha full funksjonalitet." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php er registrert i en webcron-tjeneste for å kalle cron.php hvert 15. minutt over http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Bruk systemets cron-tjeneste for å kalle cron.php hvert 15. minutt." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktiver API for Deling" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Tillat apps å bruke API for Deling" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Tillat lenker" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Tillat brukere å dele filer offentlig med lenker" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Tillat offentlig opplasting" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillat at brukere lar andre laste opp til deres offentlig delte mapper" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "TIllat videredeling" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Tillat brukere å dele filer som allerede har blitt delt med dem" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Tillat brukere å dele med alle" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Tillat påminnelser i e-post" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Tillat at brukere sender epost-påminnelser for delte filer" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvinger klientene til å koble til %s via en kryptert forbindelse." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Vennligst koble til din %s via HTTPS for å aktivere eller deaktivere tvungen SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Server-adresse" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Logg" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mer" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mindre" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versjon" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,15 +51,15 @@ msgstr "E-mail verzonden" msgid "You need to set your user email before being able to send test emails." msgstr "U moet uw e-mailadres instellen voordat u testberichten kunt versturen." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Verstuurmodus" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Versleuteling" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Authenticatiemethode" @@ -215,31 +215,31 @@ msgstr "Bijwerken" msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Kies een profielafbeelding" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Zeer zwak wachtwoord" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Zwak wachtwoord" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Matig wachtwoord" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Goed wachtwoord" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Sterk wachtwoord" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren." @@ -431,157 +431,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Sta publieke uploads toe" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Toestaan e-mailnotificaties" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "E-mailserver" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Dit wordt gestuurd voor het verzenden van meldingen." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Afzenderadres" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Authenticatie vereist" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Server adres" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Poort" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Inloggegevens" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP gebruikersnaam" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP wachtwoord" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Test e-mailinstellingen" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Versturen e-mail" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Meer" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Minder" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versie" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modulen «fileinfo» manglar" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Regionaldata fungerer ikkje" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Nettilkoplinga fungerer ikkje" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -425,162 +425,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Denne tenaren har ikkje ei fungerande nettilkopling. Dette vil seia at visse funksjonar, som montering av ekstern lagring, meldingar om oppdateringar eller installering av tredjepartsprogram, ikkje vil fungera. Det kan òg henda at du ikkje får tilgang til filene dine utanfrå, eller ikkje får sendt varslingsepostar. Me rår deg til å skru på nettilkoplinga for denne tenaren viss du ønskjer desse funksjonane." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Utfør éi oppgåve for kvar sidelasting" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Slå på API-et for deling" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "La app-ar bruka API-et til deling" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Tillat lenkjer" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "La brukarar dela ting offentleg med lenkjer" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Tillat offentlege opplastingar" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "La brukarar tillata andre å lasta opp i deira offentleg delte mapper" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Tillat vidaredeling" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "La brukarar vidaredela delte ting" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "La brukarar dela med kven som helst" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klientar til å kopla til %s med ei kryptert tilkopling." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Ver venleg å kopla til %s med HTTPS (eller skru av SSL-kravet)." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Tenaradresse" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Logg" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Meir" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mindre" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Executa un prètfach amb cada pagina cargada" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Al partejar" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activa API partejada" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Jornal" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "ਸਰਵਰ ਐਡਰੈਸ" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" @@ -50,15 +50,15 @@ msgstr "E-mail wysłany" msgid "You need to set your user email before being able to send test emails." msgstr "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomości testowe." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Tryb wysyłki" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Szyfrowanie" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Metoda autentykacji" @@ -430,157 +430,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Pozwól na publiczne wczytywanie" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Użytkownicy mogą włączyć dla innych wgrywanie do ich publicznych katalogów" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Pozwól na mailowe powiadomienia" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Serwer pocztowy" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "To jest używane do wysyłania powiadomień" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Z adresu" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Wymagana autoryzacja" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Adres Serwera" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Poświadczenia" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Użytkownik SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Hasło SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Ustawienia testowej wiadomości" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Wyślij email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Logi" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Więcej" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Mniej" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Wersja" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,15 +49,15 @@ msgstr "E-mail enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Você precisa configurar seu e-mail de usuário antes de ser capaz de enviar e-mails de teste." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modo enviar" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Criptografia" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Método de autenticação" @@ -213,31 +213,31 @@ msgstr "Atualizar" msgid "Updated" msgstr "Atualizado" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Selecione uma imagem para o perfil" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Senha muito fraca" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Senha fraca" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "So-so senha" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "Boa senha" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Senha forte" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo." @@ -429,157 +429,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Permitir que usuários compartilhem itens com o público usando links" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir envio público" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que usuários deem permissão a outros para enviarem arquivios para suas pastas compartilhadas publicamente" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Permitir usuários enviar notificação por email de arquivos compartilhados" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Segurança" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Obrigar os clientes que se conectem a %s através de uma conexão criptografada." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Servidor de Email" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Isto é usado para o envio de notificações." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Do Endereço" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Autenticação é requerida" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Endereço do servidor" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Porta" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nome do Usuário SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Senha SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Configurações de e-mail de teste" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Enviar email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Registro" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Mais" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versão" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,15 +54,15 @@ msgstr "E-mail enviado" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Encriptação" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -434,157 +434,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Use o serviço cron do sistema para chamar o ficheiro cron.php a cada 15 minutos." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Partilha" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activar a API de partilha" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permitir que os utilizadores usem a API de partilha" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Permitir que os utilizadores partilhem itens com o público utilizando um link." -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permitir Envios Públicos" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir aos utilizadores que possam definir outros utilizadores para carregar ficheiros para as suas pastas publicas" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permitir repartilha" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permitir que os utilizadores partilhem com todos" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Permitir notificação por email" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Segurança" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forçar os clientes a ligar a %s através de uma ligação encriptada" -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor ligue-se a %s através de uma ligação HTTPS para ligar/desligar o uso de ligação por SSL" -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Servidor de email" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Isto é utilizado para enviar notificações" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Do endereço" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Autenticação necessária" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Endereço do servidor" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Porto" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Nome de utilizador SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Password SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Testar configurações de email" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Enviar email" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Registo" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Mais" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Menos" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versão" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modulul \"Fileinfo\" lipsește" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Localizarea nu funcționează" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Conexiunea la internet nu funcționează" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Execută o sarcină la fiecare pagină încărcată" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Partajare" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Activare API partajare" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Permite aplicațiilor să folosească API-ul de partajare" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Pemite legături" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Permite utilizatorilor să partajeze fișiere în mod public prin legături" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Permite încărcări publice" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Permite repartajarea" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Securitate" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresa server-ului" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Portul" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mai mult" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' отсутствует" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Ваша версия PHP устарела" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Ваша версия PHP устарела. Мы настоятельно рекомендуем обновиться до 5.3.8 или новее, так как старые версии работают не корректно. Вполне возможно, что эта установка не работает должным образом." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Локализация не работает" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Невозможно установить системную локаль, поддерживающую UTF-8" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "Это значит, что могут быть проблемы с некоторыми символами в именах файлов." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Мы настоятельно рекомендуем установить требуемые пакеты в систему, для поддержки одной из следующих локалей: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Интернет-соединение не работает" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -437,162 +437,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Планировщик задач по расписанию" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Выполнять одно задание с каждой загруженной страницей" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php зарегестрирован в webcron и будет вызываться каждые 15 минут по http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Использовать системный cron для вызова cron.php каждые 15 минут." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Общий доступ" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Включить API общего доступа" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Позволить приложениям использовать API общего доступа" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Разрешить открытые загрузки" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Разрешить пользователям позволять другим загружать в их открытые папки" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Разрешить переоткрытие общего доступа" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Разрешить пользователя делать общий доступ любому" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Разрешить уведомление по почте" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Разрешить пользователю оповещать почтой о расшаренных файлах" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адрес сервера" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Порт" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Полномочия" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Журнал" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Уровень детализации журнала" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Больше" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Меньше" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Версия" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "හුවමාරු කිරීම" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "යොමු සලසන්න" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "යළි යළිත් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "හුවමාරු කළ හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "සේවාදායකයේ ලිපිනය" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "තොට" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "වැඩි" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "අඩු" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Skontrolujte prosím znovu inštalačnú príručku." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Chýba modul 'fileinfo'" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "Vaša PHP verzia je zastaraná" -#: templates/admin.php:103 +#: templates/admin.php:107 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 "Táto verzia PHP je zastaraná. Dôrazne vám odporúčame aktualizovať na verziu 5.3.8 alebo novšiu, lebo staršie verzie sú chybné. Je možné, že táto inštalácia nebude fungovať správne." -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Lokalizácia nefunguje" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "Nie je možné nastaviť znakovú sadu, ktorá podporuje UTF-8." -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "To znamená, že sa môžu vyskytnúť problémy s niektorými znakmi v názvoch súborov." -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s." -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Pripojenie na internet nefunguje" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -424,162 +424,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Vykonať jednu úlohu s každým načítaní stránky" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Použite systémovú službu cron, ktorá zavolá súbor cron.php každých 15 minút." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Zdieľanie" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Povoliť API zdieľania" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Povoliť aplikáciám používať API na zdieľanie" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Povoliť odkazy" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Povoliť verejné nahrávanie súborov" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Povoliť používateľom umožniť iným používateľom nahrávať do ich zdieľaného priečinka" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Povoliť zdieľanie ďalej" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Povoliť používateľom ďalej zdieľať zdieľané položky" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Povoliť používateľom zdieľať s kýmkoľvek" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Povoliť odosielať upozornenia emailom" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynúti pripájanie klientov k %s šifrovaným pripojením." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Adresa servera" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Prihlasovanie údaje" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Záznam" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Viac" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Menej" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Verzia" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,15 +49,15 @@ msgstr "Elektronska pošta je poslana" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Način pošiljanja" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Šifriranje" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Način overitve" @@ -429,157 +429,173 @@ msgid "Cron" msgstr "Periodično opravilo" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Izvedi eno nalogo z vsako naloženo stranjo." -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "Datoteka cron.php je vpisana v storitvi webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Souporaba" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Dovoli programom uporabo vmesnika API souporabe" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Dovoli javno pošiljanje datotek v oblak" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Dovoli uporabnikom, da omogočijo drugim uporabnikom, pošiljati datoteke v javno mapo." -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Dovoli obvestila preko elektronske pošte" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Varnost" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vsili povezavo odjemalca z %s preko šifrirane povezave." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Za nastavljanje šifriranja SSL je treba vzpostaviti povezavo z mestom %s preko protokola HTTPS." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "Poštni strežnik" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Zahtevana je overitev" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Naslov strežnika" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Vrata" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Poverila" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "Uporabniško ime SMTP" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "Geslo SMTP" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "Preizkus nastavitev elektronske pošte" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "Pošlji elektronsko sporočilo" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Več" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Manj" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Različica" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Mungon moduli 'fileinfo'" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Moduli PHP 'fileinfo' mungon. Ju këshillojmë me këmbngulje të aktivizoni këtë modul për të arritur rezultate më të mirame identifikimin e tipeve te ndryshme MIME." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Locale nuk është funksional" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Lidhja me internetin nuk është funksionale" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Ndarje" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktivizo API për ndarjet" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Lejoni aplikacionet të përdorin share API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Lejo lidhjet" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Lejoni përdoruesit të ndajnë elementët publikisht nëpermjet lidhjeve" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Lejo ngarkimin publik" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Lejo përdoruesit të mundësojnë të tjerët që të ngarkojnë materiale në dosjen e tyre publike" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Lejo ri-ndarjen" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Lejoni përdoruesit të ndjanë dhe ata elementë të ndarë më parë ngë të tjerë" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Lejo përdoruesit të ndajnë me cilindo" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Lejoni përdoruesit të ndajnë vetëm me përdorues të të njëjtit grup" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Siguria" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Detyro HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Porta" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Historik aktiviteti" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Niveli i Historikut" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Më tepër" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "M'pak" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Versioni" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Недостаје модул „fileinfo“" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Локализација не ради" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Веза с интернетом не ради" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Изврши један задатак са сваком учитаном страницом" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Дељење" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Омогући API Share" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Дозвољава апликацијама да користе API Share" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Дозволи везе" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Дозволи корисницима да деле ставке с другима путем веза" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Дозволи поновно дељење" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Дозволи корисницима да поновно деле ставке с другима" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Дозволи корисницима да деле са било ким" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адреса сервера" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Порт" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Бележење" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Више" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Мање" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Верзија" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "Vänligen dubbelkolla igenom installationsguiden." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Modulen \"fileinfo\" saknas" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Locale fungerar inte" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Internetförbindelsen fungerar inte" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -431,162 +431,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http." -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Använd systemets cron service att ropa på cron.php filen varje 15 minuter." -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Dela" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Tillåt offentlig uppladdning" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Tillåt användare att aktivera\nTillåt användare att göra det möjligt för andra att ladda upp till sina offentligt delade mappar" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Tillåt vidaredelning" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dem" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Tillåt e-post notifikation" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Tillåt användare att skicka e-port notifikationer för delade filer" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Serveradress" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Inloggningsuppgifter" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Logg" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Mer" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Mindre" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Version" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "சேவையக முகவரி" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "துறை " -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "சான்று ஆவணங்கள்" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "సేవకి చిరునామా" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 2d857bc195..b27ceaf4ca 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4ff20152fe..7d450a7d2e 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" "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 020f363e76..fbbe45effc 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" "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 c0c031d382..71f7f914ca 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" "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 4f56340eed..74f47ea00b 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" "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 7f48f51287..315f764576 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" "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 1f45c85d1a..5fbe1da266 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" "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 bcdb57fffb..7ef9bd01f4 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" "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 9d1388feb8..0038925b94 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:282 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:295 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:319 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -426,156 +426,172 @@ msgid "Cron" msgstr "" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems " +"wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:210 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:211 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:218 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:219 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:226 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:229 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:236 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:237 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:244 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:259 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:265 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:279 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:310 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:332 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:336 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:340 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:345 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:346 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:354 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:359 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:360 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:392 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:393 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:399 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:403 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index b7cf2ab809..ebdf862dd7 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-25 01:55-0400\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\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/settings.po b/l10n/th_TH/settings.po index 96525b8f26..050e1588f9 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-12 05:54+0000\n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" @@ -47,15 +47,15 @@ msgstr "ส่งอีเมล์แล้ว" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:280 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:293 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "การเข้ารหัส" -#: admin/controller.php:120 templates/admin.php:317 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "" @@ -211,31 +211,31 @@ msgstr "อัพเดท" msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "" @@ -332,18 +332,18 @@ msgstr "" msgid "TLS" msgstr "" -#: templates/admin.php:43 templates/admin.php:57 +#: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" msgstr "คำเตือนเกี่ยวกับความปลอดภัย" -#: templates/admin.php:46 +#: templates/admin.php:50 #, php-format msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." msgstr "" -#: templates/admin.php:60 +#: templates/admin.php:64 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file is not working. We strongly suggest that you " @@ -352,68 +352,68 @@ msgid "" "root." msgstr "" -#: templates/admin.php:71 +#: templates/admin.php:75 msgid "Setup Warning" msgstr "" -#: templates/admin.php:74 +#: templates/admin.php:78 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "การแชร์ข้อมูล" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "ที่อยู่เซิร์ฟเวอร์" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "พอร์ต" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "ข้อมูลส่วนตัวสำหรับเข้าระบบ" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "มาก" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "น้อย" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,15 +51,15 @@ msgstr "E-posta gönderildi" msgid "You need to set your user email before being able to send test emails." msgstr "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor." -#: admin/controller.php:116 templates/admin.php:284 +#: admin/controller.php:116 templates/admin.php:299 msgid "Send mode" msgstr "Gönderme kipi" -#: admin/controller.php:118 templates/admin.php:297 templates/personal.php:159 +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:159 msgid "Encryption" msgstr "Şifreleme" -#: admin/controller.php:120 templates/admin.php:321 +#: admin/controller.php:120 templates/admin.php:336 msgid "Authentication method" msgstr "Kimlik doğrulama yöntemi" @@ -215,31 +215,31 @@ msgstr "Güncelleme" msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:244 +#: js/personal.js:246 msgid "Select a profile picture" msgstr "Bir profil fotoğrafı seçin" -#: js/personal.js:274 +#: js/personal.js:277 msgid "Very weak password" msgstr "Çok güçsüz parola" -#: js/personal.js:275 +#: js/personal.js:278 msgid "Weak password" msgstr "Güçsüz parola" -#: js/personal.js:276 +#: js/personal.js:279 msgid "So-so password" msgstr "Normal parola" -#: js/personal.js:277 +#: js/personal.js:280 msgid "Good password" msgstr "İyi parola" -#: js/personal.js:278 +#: js/personal.js:281 msgid "Strong password" msgstr "Güçlü parola" -#: js/personal.js:301 +#: js/personal.js:316 msgid "Decrypting files... Please wait, this can take some time." msgstr "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir." @@ -431,157 +431,173 @@ msgid "Cron" msgstr "Cron" #: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:175 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir." -#: templates/admin.php:183 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan." -#: templates/admin.php:188 +#: templates/admin.php:205 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:194 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Paylaşım API'sini etkinleştir" -#: templates/admin.php:195 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:202 +#: templates/admin.php:219 msgid "Allow links" msgstr "Bağlantılara izin ver" -#: templates/admin.php:203 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver" -#: templates/admin.php:211 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "Herkes tarafından yüklemeye izin ver" -#: templates/admin.php:212 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver" -#: templates/admin.php:220 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:221 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver" -#: templates/admin.php:228 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Kullanıcıların her şeyi paylaşmalarına izin ver" -#: templates/admin.php:231 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" -#: templates/admin.php:238 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "Posta bilgilendirmesine izin ver" -#: templates/admin.php:239 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver" -#: templates/admin.php:246 +#: templates/admin.php:261 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:259 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:261 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:267 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s'a HTTPS ile bağlanın." -#: templates/admin.php:279 +#: templates/admin.php:294 msgid "Email Server" msgstr "E-Posta Sunucusu" -#: templates/admin.php:281 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "Bu, bildirimler gönderilirken kullanılır." -#: templates/admin.php:312 +#: templates/admin.php:327 msgid "From address" msgstr "Kimden adresi" -#: templates/admin.php:334 +#: templates/admin.php:349 msgid "Authentication required" msgstr "Kimlik doğrulama gerekli" -#: templates/admin.php:338 +#: templates/admin.php:353 msgid "Server address" msgstr "Sunucu adresi" -#: templates/admin.php:342 +#: templates/admin.php:357 msgid "Port" msgstr "Port" -#: templates/admin.php:347 +#: templates/admin.php:362 msgid "Credentials" msgstr "Kimlik Bilgileri" -#: templates/admin.php:348 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "SMTP Kullanıcı Adı" -#: templates/admin.php:351 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "SMTP Parolası" -#: templates/admin.php:355 +#: templates/admin.php:370 msgid "Test email settings" msgstr "E-posta ayarlarını sına" -#: templates/admin.php:356 +#: templates/admin.php:371 msgid "Send email" msgstr "E-posta gönder" -#: templates/admin.php:361 +#: templates/admin.php:376 msgid "Log" msgstr "Günlük" -#: templates/admin.php:362 +#: templates/admin.php:377 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:394 +#: templates/admin.php:409 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:395 +#: templates/admin.php:410 msgid "Less" msgstr "Az" -#: templates/admin.php:401 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:405 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "بۆلەك «ھۆججەت ئۇچۇرى» يوقالغان" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "ھەمبەھىر" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "مۇلازىمېتىر ئادرىسى" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "ئېغىز" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "ئاز" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' відсутній" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "Локалізація не працює" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "Інтернет-з'єднання не працює" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Виконати одне завдання для кожної завантаженої сторінки " -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Спільний доступ" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Увімкнути API спільного доступу" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Дозволити програмам використовувати API спільного доступу" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Дозволити посилання" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Дозволити перевідкривати спільний доступ" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Дозволити користувачам відкривати спільний доступ для всіх" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "Безпека" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Адреса сервера" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Порт" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Облікові дані" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Протокол" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "Більше" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "Менше" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Версія" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "Thực thi tác vụ mỗi khi trang được tải" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "Chia sẻ" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "Cho phép các ứng dụng sử dụng chia sẻ API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "Cho phép người dùng chia sẻ với bất cứ ai" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "Địa chỉ máy chủ" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "Cổng" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "Giấy chứng nhận" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "Log" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "hơn" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "ít" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "请认真检查安装指南." -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "模块'文件信息'丢失" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果." -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "您的 PHP 版本不是最新版" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "本地化无法工作" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "因特网连接无法工作" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -429,162 +429,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "每个页面加载后执行一个任务" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "使用系统 cron 服务每15分钟调用一次 cron.php 文件。" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "共享" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "启用共享API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "允许应用软件使用共享API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接公开共享项目" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "允许公开上传" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "用户可让其他人上传到他的公开共享文件夹" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "允许邮件通知" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "允许用户为共享的文件发送邮件通知" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "安全" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "强制客户端通过加密连接连接到%s。" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL." -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "服务器地址" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "端口" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "凭证" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "日志" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "更多" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "更少" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "版本" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -422,162 +422,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "連接埠" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the installation guides." msgstr "請參考安裝指南。" -#: templates/admin.php:86 +#: templates/admin.php:90 msgid "Module 'fileinfo' missing" msgstr "遺失 'fileinfo' 模組" -#: templates/admin.php:89 +#: templates/admin.php:93 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。" -#: templates/admin.php:100 +#: templates/admin.php:104 msgid "Your PHP version is outdated" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." msgstr "" -#: templates/admin.php:114 +#: templates/admin.php:118 msgid "Locale not working" msgstr "語系無法運作" -#: templates/admin.php:119 +#: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." msgstr "" -#: templates/admin.php:123 +#: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." msgstr "" -#: templates/admin.php:127 +#: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." msgstr "" -#: templates/admin.php:139 +#: templates/admin.php:143 msgid "Internet connection not working" msgstr "無網際網路存取" -#: templates/admin.php:142 +#: templates/admin.php:146 msgid "" "This server has no working internet connection. This means that some of the " "features like mounting of external storage, notifications about updates or " @@ -423,162 +423,178 @@ msgid "" "internet connection for this server if you want to have all features." msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" -#: templates/admin.php:156 +#: templates/admin.php:160 msgid "Cron" msgstr "Cron" -#: templates/admin.php:163 +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 msgid "Execute one task with each page loaded" msgstr "當頁面載入時,執行" -#: templates/admin.php:171 +#: templates/admin.php:192 msgid "" "cron.php is registered at a webcron service to call cron.php every 15 " "minutes over http." msgstr "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php" -#: templates/admin.php:179 +#: templates/admin.php:200 msgid "Use systems cron service to call the cron.php file every 15 minutes." msgstr "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次" -#: templates/admin.php:184 +#: templates/admin.php:205 msgid "Sharing" msgstr "分享" -#: templates/admin.php:190 +#: templates/admin.php:211 msgid "Enable Share API" msgstr "啟用分享 API" -#: templates/admin.php:191 +#: templates/admin.php:212 msgid "Allow apps to use the Share API" msgstr "允許 apps 使用分享 API" -#: templates/admin.php:198 +#: templates/admin.php:219 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:199 +#: templates/admin.php:220 msgid "Allow users to share items to the public with links" msgstr "允許使用者以結連公開分享檔案" -#: templates/admin.php:207 +#: templates/admin.php:227 msgid "Allow public uploads" msgstr "允許任何人上傳" -#: templates/admin.php:208 +#: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」" -#: templates/admin.php:216 +#: templates/admin.php:235 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:217 +#: templates/admin.php:236 msgid "Allow users to share items shared with them again" msgstr "允許使用者分享其他使用者分享給他的檔案" -#: templates/admin.php:224 +#: templates/admin.php:243 msgid "Allow users to share with anyone" msgstr "允許使用者與任何人分享檔案" -#: templates/admin.php:227 +#: templates/admin.php:246 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:234 +#: templates/admin.php:253 msgid "Allow mail notification" msgstr "允許郵件通知" -#: templates/admin.php:235 +#: templates/admin.php:254 msgid "Allow user to send mail notification for shared files" msgstr "允許使用者分享檔案時寄出通知郵件" -#: templates/admin.php:242 +#: templates/admin.php:261 msgid "Security" msgstr "安全性" -#: templates/admin.php:255 +#: templates/admin.php:274 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:257 +#: templates/admin.php:276 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:263 +#: templates/admin.php:282 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:275 +#: templates/admin.php:294 msgid "Email Server" msgstr "" -#: templates/admin.php:277 +#: templates/admin.php:296 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:308 +#: templates/admin.php:327 msgid "From address" msgstr "" -#: templates/admin.php:330 +#: templates/admin.php:349 msgid "Authentication required" msgstr "" -#: templates/admin.php:334 +#: templates/admin.php:353 msgid "Server address" msgstr "伺服器位址" -#: templates/admin.php:338 +#: templates/admin.php:357 msgid "Port" msgstr "連接埠" -#: templates/admin.php:343 +#: templates/admin.php:362 msgid "Credentials" msgstr "認證" -#: templates/admin.php:344 +#: templates/admin.php:363 msgid "SMTP Username" msgstr "" -#: templates/admin.php:347 +#: templates/admin.php:366 msgid "SMTP Password" msgstr "" -#: templates/admin.php:351 +#: templates/admin.php:370 msgid "Test email settings" msgstr "" -#: templates/admin.php:352 +#: templates/admin.php:371 msgid "Send email" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:376 msgid "Log" msgstr "紀錄" -#: templates/admin.php:358 +#: templates/admin.php:377 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:390 +#: templates/admin.php:409 msgid "More" msgstr "更多" -#: templates/admin.php:391 +#: templates/admin.php:410 msgid "Less" msgstr "更少" -#: templates/admin.php:397 templates/personal.php:181 +#: templates/admin.php:416 templates/personal.php:181 msgid "Version" msgstr "版本" -#: templates/admin.php:401 templates/personal.php:184 +#: templates/admin.php:420 templates/personal.php:184 msgid "" "Developed by the ownCloud community, the array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; From e76be308eb8e969b1a4b74d97c2ccb320a986937 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 09:39:09 +0100 Subject: [PATCH 295/333] Remove unused setUserVars utility method That method was moved to the external storage recently so isn't needed here any more. --- lib/private/files/filesystem.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 56bafc7e97..7e27650c55 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -350,17 +350,6 @@ class Filesystem { } } - /** - * fill in the correct values for $user - * - * @param string $user - * @param string $input - * @return string - */ - private static function setUserVars($user, $input) { - return str_replace('$user', $user, $input); - } - /** * get the default filesystem view * From 8d95c0d01335f1be5e7ffe67deabe274cf478aa1 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 11:29:04 +0100 Subject: [PATCH 296/333] Pretty print mount.json when possible --- apps/files_external/lib/config.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index ffbab7bca8..c5b091336e 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -538,7 +538,12 @@ class OC_Mount_Config { $datadir = \OC_Config::getValue('datadirectory', \OC::$SERVERROOT . '/data/'); $file = \OC_Config::getValue('mount_file', $datadir . '/mount.json'); } - $content = json_encode($data); + $options = 0; + if (defined('JSON_PRETTY_PRINT')) { + // only for PHP >= 5.4 + $options = JSON_PRETTY_PRINT; + } + $content = json_encode($data, $options); @file_put_contents($file, $content); @chmod($file, 0640); } From e002b7242cb19a0e028d325cd64b57e67dc48108 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 12:10:17 +0100 Subject: [PATCH 297/333] Fix merging of external storage configurations Merging of configurations is whenever the same config is available for multiple users/groups, in which case the config is considered as a single one by the UI, and shows multiple users/groups selected. Fixed merging logic to make sure that class, mount point and options are the same before merging them. Fixed merging to work correctly when the same mount point path is used for separate users and configs. These are now correctly shows in the UI as separate entries. --- apps/files_external/lib/config.php | 78 +++++--- apps/files_external/templates/settings.php | 14 +- apps/files_external/tests/mountconfig.php | 203 +++++++++++++++++++-- 3 files changed, 243 insertions(+), 52 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index ffbab7bca8..384ab410e9 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -304,18 +304,23 @@ class OC_Mount_Config { $mount['options'] = self::decryptPasswords($mount['options']); // Remove '/$user/files/' from mount point $mountPoint = substr($mountPoint, 13); - // Merge the mount point into the current mount points - if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { - $system[$mountPoint]['applicable']['groups'] - = array_merge($system[$mountPoint]['applicable']['groups'], array($group)); + + $config = array( + 'class' => $mount['class'], + 'mountpoint' => $mountPoint, + 'backend' => $backends[$mount['class']]['backend'], + 'options' => $mount['options'], + 'applicable' => array('groups' => array($group), 'users' => array()), + 'status' => self::getBackendStatus($mount['class'], $mount['options']) + ); + $hash = self::makeConfigHash($config); + // If an existing config exists (with same class, mountpoint and options) + if (isset($system[$hash])) { + // add the groups into that config + $system[$hash]['applicable']['groups'] + = array_merge($system[$hash]['applicable']['groups'], array($group)); } else { - $system[$mountPoint] = array( - 'class' => $mount['class'], - 'backend' => $backends[$mount['class']]['backend'], - 'configuration' => $mount['options'], - 'applicable' => array('groups' => array($group), 'users' => array()), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) - ); + $system[$hash] = $config; } } } @@ -330,23 +335,27 @@ class OC_Mount_Config { $mount['options'] = self::decryptPasswords($mount['options']); // Remove '/$user/files/' from mount point $mountPoint = substr($mountPoint, 13); - // Merge the mount point into the current mount points - if (isset($system[$mountPoint]) && $system[$mountPoint]['configuration'] == $mount['options']) { - $system[$mountPoint]['applicable']['users'] - = array_merge($system[$mountPoint]['applicable']['users'], array($user)); + $config = array( + 'class' => $mount['class'], + 'mountpoint' => $mountPoint, + 'backend' => $backends[$mount['class']]['backend'], + 'options' => $mount['options'], + 'applicable' => array('groups' => array(), 'users' => array($user)), + 'status' => self::getBackendStatus($mount['class'], $mount['options']) + ); + $hash = self::makeConfigHash($config); + // If an existing config exists (with same class, mountpoint and options) + if (isset($system[$hash])) { + // add the users into that config + $system[$hash]['applicable']['users'] + = array_merge($system[$hash]['applicable']['users'], array($user)); } else { - $system[$mountPoint] = array( - 'class' => $mount['class'], - 'backend' => $backends[$mount['class']]['backend'], - 'configuration' => $mount['options'], - 'applicable' => array('groups' => array(), 'users' => array($user)), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) - ); + $system[$hash] = $config; } } } } - return $system; + return array_values($system); } /** @@ -366,11 +375,12 @@ class OC_Mount_Config { $mount['class'] = '\OC\Files\Storage\\'.substr($mount['class'], 15); } $mount['options'] = self::decryptPasswords($mount['options']); - // Remove '/uid/files/' from mount point - $personal[substr($mountPoint, strlen($uid) + 8)] = array( + $personal[] = array( 'class' => $mount['class'], + // Remove '/uid/files/' from mount point + 'mountpoint' => substr($mountPoint, strlen($uid) + 8), 'backend' => $backends[$mount['class']]['backend'], - 'configuration' => $mount['options'], + 'options' => $mount['options'], 'status' => self::getBackendStatus($mount['class'], $mount['options']) ); } @@ -707,4 +717,20 @@ class OC_Mount_Config { $cipher->setKey(\OCP\Config::getSystemValue('passwordsalt')); return $cipher; } + + /** + * Computes a hash based on the given configuration. + * This is mostly used to find out whether configurations + * are the same. + */ + private static function makeConfigHash($config) { + $data = json_encode( + array( + 'c' => $config['class'], + 'm' => $config['mountpoint'], + 'o' => $config['options'] + ) + ); + return hash('md5', $data); + } } diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index de44d3c864..5e84fa8a25 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -16,17 +16,17 @@
- - $value): ?> + + $value): ?> @@ -108,7 +108,7 @@ class="remove" + class="remove" style="visibility:hidden;" ><?php p($l->t('Delete')); ?> array('all'), + 'groups' => array() + ) + ), + // applicable to single user + array( + OC_Mount_Config::MOUNT_TYPE_USER, + self::TEST_USER1, + array( + 'users' => array(self::TEST_USER1), + 'groups' => array() + ) + ), + // applicable to single group + array( + OC_Mount_Config::MOUNT_TYPE_GROUP, + self::TEST_GROUP1, + array( + 'users' => array(), + 'groups' => array(self::TEST_GROUP1) + ) + ), + ); + } + + /** + * Test reading and writing global config + * + * @dataProvider applicableConfigProvider + */ + public function testReadWriteGlobalConfig($mountType, $applicable, $expectApplicableArray) { + $mountType = $mountType; + $applicable = $applicable; $isPersonal = false; - $mountConfig = array( + $options = array( 'host' => 'smbhost', 'user' => 'smbuser', 'password' => 'smbpassword', @@ -231,7 +269,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { OC_Mount_Config::addMountPoint( '/ext', '\OC\Files\Storage\SMB', - $mountConfig, + $options, $mountType, $applicable, $isPersonal @@ -241,12 +279,13 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // re-read config $config = OC_Mount_Config::getSystemMountPoints(); $this->assertEquals(1, count($config)); - $this->assertTrue(isset($config['ext'])); - $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); - $savedMountConfig = $config['ext']['configuration']; - $this->assertEquals($mountConfig, $savedMountConfig); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $this->assertEquals($expectApplicableArray, $config[0]['applicable']); + $savedOptions = $config[0]['options']; + $this->assertEquals($options, $savedOptions); // key order needs to be preserved for the UI... - $this->assertEquals(array_keys($mountConfig), array_keys($savedMountConfig)); + $this->assertEquals(array_keys($options), array_keys($savedOptions)); } /** @@ -256,7 +295,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $mountType = OC_Mount_Config::MOUNT_TYPE_USER; $applicable = self::TEST_USER1; $isPersonal = true; - $mountConfig = array( + $options = array( 'host' => 'smbhost', 'user' => 'smbuser', 'password' => 'smbpassword', @@ -269,7 +308,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { OC_Mount_Config::addMountPoint( '/ext', '\OC\Files\Storage\SMB', - $mountConfig, + $options, $mountType, $applicable, $isPersonal @@ -279,12 +318,12 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // re-read config $config = OC_Mount_Config::getPersonalMountPoints(); $this->assertEquals(1, count($config)); - $this->assertTrue(isset($config['ext'])); - $this->assertEquals('\OC\Files\Storage\SMB', $config['ext']['class']); - $savedMountConfig = $config['ext']['configuration']; - $this->assertEquals($mountConfig, $savedMountConfig); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $savedOptions = $config[0]['options']; + $this->assertEquals($options, $savedOptions); // key order needs to be preserved for the UI... - $this->assertEquals(array_keys($mountConfig), array_keys($savedMountConfig)); + $this->assertEquals(array_keys($options), array_keys($savedOptions)); } /** @@ -362,7 +401,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { // re-read config, password was read correctly $config = OC_Mount_Config::getPersonalMountPoints(); - $savedMountConfig = $config['ext']['configuration']; + $savedMountConfig = $config[0]['options']; $this->assertEquals($mountConfig, $savedMountConfig); } @@ -475,4 +514,130 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $this->assertEquals(0, count($mountPoints)); } } + + /** + * Test the same config for multiple users. + * The config will be merged by getSystemMountPoints(). + */ + public function testConfigMerging() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $isPersonal = false; + $options = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_USER, + self::TEST_USER1, + $isPersonal + ) + ); + + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_USER, + self::TEST_USER2, + $isPersonal + ) + ); + + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_GROUP, + self::TEST_GROUP2, + $isPersonal + ) + ); + + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options, + OC_Mount_Config::MOUNT_TYPE_GROUP, + self::TEST_GROUP1, + $isPersonal + ) + ); + + // re-read config + $config = OC_Mount_Config::getSystemMountPoints(); + $this->assertEquals(1, count($config)); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $this->assertEquals($options, $config[0]['options']); + $this->assertEquals(array(self::TEST_USER1, self::TEST_USER2), $config[0]['applicable']['users']); + $this->assertEquals(array(self::TEST_GROUP2, self::TEST_GROUP1), $config[0]['applicable']['groups']); + } + + /** + * Create then re-read mount points configs where the mount points + * have the same path, the config must NOT be merged. + */ + public function testRereadMountpointWithSamePath() { + $mountType = OC_Mount_Config::MOUNT_TYPE_USER; + $isPersonal = false; + $options1 = array( + 'host' => 'smbhost', + 'user' => 'smbuser', + 'password' => 'smbpassword', + 'share' => 'smbshare', + 'root' => 'smbroot' + ); + + // write config + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options1, + $mountType, + self::TEST_USER1, + $isPersonal + ) + ); + + $options2 = array( + 'host' => 'anothersmbhost', + 'user' => 'anothersmbuser', + 'password' => 'anothersmbpassword', + 'share' => 'anothersmbshare', + 'root' => 'anothersmbroot' + ); + $this->assertTrue( + OC_Mount_Config::addMountPoint( + '/ext', + '\OC\Files\Storage\SMB', + $options2, + $mountType, + self::TEST_USER2, + $isPersonal + ) + ); + + // re-read config + $config = OC_Mount_Config::getSystemMountPoints(); + $this->assertEquals(2, count($config)); + $this->assertEquals('\OC\Files\Storage\SMB', $config[0]['class']); + $this->assertEquals('ext', $config[0]['mountpoint']); + $this->assertEquals($options1, $config[0]['options']); + $this->assertEquals('\OC\Files\Storage\SMB', $config[1]['class']); + $this->assertEquals('ext', $config[1]['mountpoint']); + $this->assertEquals($options2, $config[1]['options']); + } } From 9b2bb7c6abba9cdbcd982c7460e43d024b11198b Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 26 Mar 2014 13:02:11 +0100 Subject: [PATCH 298/333] fix undefined index warning in router --- lib/private/route/router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/route/router.php b/lib/private/route/router.php index bad74c925f..1f0a23ee12 100644 --- a/lib/private/route/router.php +++ b/lib/private/route/router.php @@ -114,7 +114,7 @@ class Router implements IRouter { } } foreach ($routingFiles as $app => $file) { - if (!$this->loadedApps[$app]) { + if (!isset($this->loadedApps[$app])) { $this->loadedApps[$app] = true; $this->useCollection($app); require_once $file; From ba63e46b5e11bddc1bc5a636ef6622b60da579f1 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Fri, 21 Mar 2014 14:22:48 +0000 Subject: [PATCH 299/333] SMB/CIFS mount using OwnCloud logon credentials Selecting 'SMB/CIFS Auto' in the mounts configuration allows an SMB/CIFS mount to be configured that uses the credentials of the user logging in to authenticate to the server. Optionally, the username can be used as the share name, permitting home shares to be dynamically mounted. --- apps/files_external/appinfo/app.php | 3 ++ apps/files_external/lib/config.php | 14 +++++++-- apps/files_external/lib/smb_auto.php | 46 ++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 3 deletions(-) create mode 100644 apps/files_external/lib/smb_auto.php diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index 0e83660f84..f98d000b98 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -1,6 +1,7 @@ + * Copyright (c) 2014 Robin McCorkell * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. @@ -13,6 +14,7 @@ OC::$CLASSPATH['OC\Files\Storage\OwnCloud'] = 'files_external/lib/owncloud.php'; OC::$CLASSPATH['OC\Files\Storage\Google'] = 'files_external/lib/google.php'; OC::$CLASSPATH['OC\Files\Storage\Swift'] = 'files_external/lib/swift.php'; OC::$CLASSPATH['OC\Files\Storage\SMB'] = 'files_external/lib/smb.php'; +OC::$CLASSPATH['OC\Files\Storage\SMB_Auto'] = 'files_external/lib/smb_auto.php'; OC::$CLASSPATH['OC\Files\Storage\AmazonS3'] = 'files_external/lib/amazons3.php'; OC::$CLASSPATH['OC\Files\Storage\Dropbox'] = 'files_external/lib/dropbox.php'; OC::$CLASSPATH['OC\Files\Storage\SFTP'] = 'files_external/lib/sftp.php'; @@ -27,4 +29,5 @@ if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == ' // connecting hooks OCP\Util::connectHook('OC_Filesystem', 'post_initMountPoints', '\OC_Mount_Config', 'initMountPointsHook'); OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\iRODS', 'login'); +OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\SMB_Auto', 'login'); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index f7caafb74a..3512071aeb 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -5,6 +5,7 @@ * @author Michael Gapczynski * @copyright 2012 Michael Gapczynski mtgap@owncloud.com * @copyright 2014 Vincent Petry +* @copyright 2014 Robin McCorkell * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -122,11 +123,18 @@ class OC_Mount_Config { 'password' => '*Password', 'share' => 'Share', 'root' => '&Root')); + $backends['\OC\Files\Storage\SMB_Auto'] = array( + 'backend' => 'SMB / CIFS Auto', + 'configuration' => array( + 'host' => 'URL', + 'username_as_share' => '!Username as share', + 'share' => '&Share', + 'root' => '&Root')); } } if(OC_Mount_Config::checkcurl()){ - $backends['\OC\Files\Storage\DAV']=array( + $backends['\OC\Files\Storage\DAV']=array( 'backend' => 'WebDAV', 'configuration' => array( 'host' => 'URL', @@ -134,7 +142,7 @@ class OC_Mount_Config { 'password' => '*Password', 'root' => '&Root', 'secure' => '!Secure https://')); - $backends['\OC\Files\Storage\OwnCloud']=array( + $backends['\OC\Files\Storage\OwnCloud']=array( 'backend' => 'ownCloud', 'configuration' => array( 'host' => 'URL', @@ -185,7 +193,7 @@ class OC_Mount_Config { * @return array of mount point string as key, mountpoint config as value */ public static function getAbsoluteMountPoints($user) { - $mountPoints = array(); + $mountPoints = array(); $datadir = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data"); $mount_file = \OC_Config::getValue("mount_file", $datadir . "/mount.json"); diff --git a/apps/files_external/lib/smb_auto.php b/apps/files_external/lib/smb_auto.php new file mode 100644 index 0000000000..52fceea64f --- /dev/null +++ b/apps/files_external/lib/smb_auto.php @@ -0,0 +1,46 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Storage; + +class SMB_Auto extends \OC\Files\Storage\SMB{ + public function __construct($params) { + if (isset($params['host']) && \OC::$session->exists('smb-credentials')) { + $host=$params['host']; + $username_as_share = ($params['username_as_share'] === 'true'); + + $params_auth = \OC::$session->get('smb-credentials'); + $user = \OC_User::getDisplayName($params_auth['uid']); + $password = $params_auth['password']; + + $root=isset($params['root'])?$params['root']:'/'; + $share = ''; + + if ($username_as_share) { + $share = '/'.$user; + } elseif (isset($params['share'])) { + $share = $params['share']; + } else { + throw new \Exception(); + } + parent::__construct(array( + "user" => $user, + "password" => $password, + "host" => $host, + "share" => $share, + "root" => $root + )); + } else { + throw new \Exception(); + } + } + + public static function login( $params ) { + \OC::$session->set('smb-credentials', $params); + } +} From 3445c062ecf188134c3ef236aa911a074ff29cff Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 24 Mar 2014 15:05:14 +0000 Subject: [PATCH 300/333] Use loginname instead of display name getDisplayName would return the display name of the user, not great if it is a canonical string. The uid passed back from 'login' is the UUID of the user, so also not suitable. The login name from the session is the username the user used to log in to ownCloud in the first place, which is what is needed. --- apps/files_external/lib/smb_auto.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/smb_auto.php b/apps/files_external/lib/smb_auto.php index 52fceea64f..f2ebdca9cd 100644 --- a/apps/files_external/lib/smb_auto.php +++ b/apps/files_external/lib/smb_auto.php @@ -15,7 +15,7 @@ class SMB_Auto extends \OC\Files\Storage\SMB{ $username_as_share = ($params['username_as_share'] === 'true'); $params_auth = \OC::$session->get('smb-credentials'); - $user = \OC_User::getDisplayName($params_auth['uid']); + $user = \OC::$session->get('loginname'); $password = $params_auth['password']; $root=isset($params['root'])?$params['root']:'/'; From 86aa6104e690f8647c800f49b61bb95e2a625f97 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 24 Mar 2014 15:15:15 +0000 Subject: [PATCH 301/333] Revoke sharable permission on automatic SMB shares Shares authenticated with user credentials (aka not hard coded) cannot be accessed by other users, breaking sharing. This change completely revokes sharing for such shares --- apps/files_external/lib/smb_auto.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files_external/lib/smb_auto.php b/apps/files_external/lib/smb_auto.php index f2ebdca9cd..0556aa6484 100644 --- a/apps/files_external/lib/smb_auto.php +++ b/apps/files_external/lib/smb_auto.php @@ -43,4 +43,8 @@ class SMB_Auto extends \OC\Files\Storage\SMB{ public static function login( $params ) { \OC::$session->set('smb-credentials', $params); } + + public function isSharable($path) { + return false; + } } From cac4aaa8c4dab1b59ab3ba3f155439473ae28250 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Tue, 25 Mar 2014 13:54:54 +0000 Subject: [PATCH 302/333] Rename SMB_Auto to SMB_OC and change visible name SMB_Auto is now SMB_OC, and the name has been changed from "SMB / CIFS Auto" to "SMB / CIFS using OC login" --- apps/files_external/appinfo/app.php | 4 ++-- apps/files_external/lib/config.php | 4 ++-- apps/files_external/lib/{smb_auto.php => smb_oc.php} | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename apps/files_external/lib/{smb_auto.php => smb_oc.php} (96%) diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php index f98d000b98..aeb7a2cb23 100644 --- a/apps/files_external/appinfo/app.php +++ b/apps/files_external/appinfo/app.php @@ -14,7 +14,7 @@ OC::$CLASSPATH['OC\Files\Storage\OwnCloud'] = 'files_external/lib/owncloud.php'; OC::$CLASSPATH['OC\Files\Storage\Google'] = 'files_external/lib/google.php'; OC::$CLASSPATH['OC\Files\Storage\Swift'] = 'files_external/lib/swift.php'; OC::$CLASSPATH['OC\Files\Storage\SMB'] = 'files_external/lib/smb.php'; -OC::$CLASSPATH['OC\Files\Storage\SMB_Auto'] = 'files_external/lib/smb_auto.php'; +OC::$CLASSPATH['OC\Files\Storage\SMB_OC'] = 'files_external/lib/smb_oc.php'; OC::$CLASSPATH['OC\Files\Storage\AmazonS3'] = 'files_external/lib/amazons3.php'; OC::$CLASSPATH['OC\Files\Storage\Dropbox'] = 'files_external/lib/dropbox.php'; OC::$CLASSPATH['OC\Files\Storage\SFTP'] = 'files_external/lib/sftp.php'; @@ -29,5 +29,5 @@ if (OCP\Config::getAppValue('files_external', 'allow_user_mounting', 'yes') == ' // connecting hooks OCP\Util::connectHook('OC_Filesystem', 'post_initMountPoints', '\OC_Mount_Config', 'initMountPointsHook'); OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\iRODS', 'login'); -OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\SMB_Auto', 'login'); +OCP\Util::connectHook('OC_User', 'post_login', 'OC\Files\Storage\SMB_OC', 'login'); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 3512071aeb..af37a05cae 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -123,8 +123,8 @@ class OC_Mount_Config { 'password' => '*Password', 'share' => 'Share', 'root' => '&Root')); - $backends['\OC\Files\Storage\SMB_Auto'] = array( - 'backend' => 'SMB / CIFS Auto', + $backends['\OC\Files\Storage\SMB_OC'] = array( + 'backend' => 'SMB / CIFS using OC login', 'configuration' => array( 'host' => 'URL', 'username_as_share' => '!Username as share', diff --git a/apps/files_external/lib/smb_auto.php b/apps/files_external/lib/smb_oc.php similarity index 96% rename from apps/files_external/lib/smb_auto.php rename to apps/files_external/lib/smb_oc.php index 0556aa6484..a62a2c0153 100644 --- a/apps/files_external/lib/smb_auto.php +++ b/apps/files_external/lib/smb_oc.php @@ -8,7 +8,7 @@ namespace OC\Files\Storage; -class SMB_Auto extends \OC\Files\Storage\SMB{ +class SMB_OC extends \OC\Files\Storage\SMB { public function __construct($params) { if (isset($params['host']) && \OC::$session->exists('smb-credentials')) { $host=$params['host']; From b077528087fba76add6913563b4c8221ca99aa3f Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 26 Mar 2014 11:04:13 +0000 Subject: [PATCH 303/333] Perform proper checking for share availability To check for shares, the code attempts to connect anonymously to the share. In most cases this will fail with NT_STATUS_ACCESS_DENIED, so the regex array used for parsing the output of smbclient in smb4php has been overridden to treat such output as success. The 'test' method for storage classes can now take a single parameter, $isPersonal, which allows the storage to adjust the tests performed based on if they are being configured as personal shares or as system shares. --- apps/files_external/3rdparty/smb4php/smb.php | 78 +++++++++++--------- apps/files_external/lib/config.php | 12 +-- apps/files_external/lib/smb_oc.php | 43 ++++++++++- 3 files changed, 89 insertions(+), 44 deletions(-) diff --git a/apps/files_external/3rdparty/smb4php/smb.php b/apps/files_external/3rdparty/smb4php/smb.php index 656930514f..e325506fa1 100644 --- a/apps/files_external/3rdparty/smb4php/smb.php +++ b/apps/files_external/3rdparty/smb4php/smb.php @@ -8,6 +8,8 @@ # Homepage: http://www.phpclasses.org/smb4php # # Copyright (c) 2007 Victor M. Varela +# Copyright (c) 2012 Frank Karlitschek +# Copyright (c) 2014 Robin McCorkell # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -19,8 +21,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# Addition 17/12/2012 Frank Karlitschek (frank@owncloud.org) -# Addition 17/03/2014 Robin McCorkell (rmccorkell@karoshi.org.uk) # On the official website http://www.phpclasses.org/smb4php the # license is listed as LGPL so we assume that this is # dual-licensed GPL/LGPL @@ -44,6 +44,42 @@ $GLOBALS['__smb_cache'] = array ('stat' => array (), 'dir' => array ()); class smb { + private static $regexp = array ( + '^added interface ip=(.*) bcast=(.*) nmask=(.*)$' => 'skip', + 'Anonymous login successful' => 'skip', + '^Domain=\[(.*)\] OS=\[(.*)\] Server=\[(.*)\]$' => 'skip', + '^\tSharename[ ]+Type[ ]+Comment$' => 'shares', + '^\t---------[ ]+----[ ]+-------$' => 'skip', + '^\tServer [ ]+Comment$' => 'servers', + '^\t---------[ ]+-------$' => 'skip', + '^\tWorkgroup[ ]+Master$' => 'workg', + '^\t(.*)[ ]+(Disk|IPC)[ ]+IPC.*$' => 'skip', + '^\tIPC\\\$(.*)[ ]+IPC' => 'skip', + '^\t(.*)[ ]+(Disk)[ ]+(.*)$' => 'share', + '^\t(.*)[ ]+(Printer)[ ]+(.*)$' => 'skip', + '([0-9]+) blocks of size ([0-9]+)\. ([0-9]+) blocks available' => 'skip', + 'Got a positive name query response from ' => 'skip', + '^(session setup failed): (.*)$' => 'error', + '^(.*): ERRSRV - ERRbadpw' => 'error', + '^Error returning browse list: (.*)$' => 'error', + '^tree connect failed: (.*)$' => 'error', + '^(Connection to .* failed)(.*)$' => 'error-connect', + '^NT_STATUS_(.*) ' => 'error', + '^NT_STATUS_(.*)\$' => 'error', + 'ERRDOS - ERRbadpath \((.*).\)' => 'error', + 'cd (.*): (.*)$' => 'error', + '^cd (.*): NT_STATUS_(.*)' => 'error', + '^\t(.*)$' => 'srvorwg', + '^([0-9]+)[ ]+([0-9]+)[ ]+(.*)$' => 'skip', + '^Job ([0-9]+) cancelled' => 'skip', + '^[ ]+(.*)[ ]+([0-9]+)[ ]+(Mon|Tue|Wed|Thu|Fri|Sat|Sun)[ ](Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[ ]+([0-9]+)[ ]+([0-9]{2}:[0-9]{2}:[0-9]{2})[ ]([0-9]{4})$' => 'files', + '^message start: ERRSRV - (ERRmsgoff)' => 'error' + ); + + function getRegexp() { + return self::$regexp; + } + function parse_url ($url) { $pu = parse_url (trim($url)); foreach (array ('domain', 'user', 'pass', 'host', 'port', 'path') as $i) { @@ -75,46 +111,16 @@ class smb { } - function execute ($command, $purl) { + function execute ($command, $purl, $regexp = NULL) { return smb::client ('-d 0 ' . escapeshellarg ('//' . $purl['host'] . '/' . $purl['share']) - . ' -c ' . escapeshellarg ($command), $purl + . ' -c ' . escapeshellarg ($command), $purl, $regexp ); } - function client ($params, $purl) { + function client ($params, $purl, $regexp = NULL) { - static $regexp = array ( - '^added interface ip=(.*) bcast=(.*) nmask=(.*)$' => 'skip', - 'Anonymous login successful' => 'skip', - '^Domain=\[(.*)\] OS=\[(.*)\] Server=\[(.*)\]$' => 'skip', - '^\tSharename[ ]+Type[ ]+Comment$' => 'shares', - '^\t---------[ ]+----[ ]+-------$' => 'skip', - '^\tServer [ ]+Comment$' => 'servers', - '^\t---------[ ]+-------$' => 'skip', - '^\tWorkgroup[ ]+Master$' => 'workg', - '^\t(.*)[ ]+(Disk|IPC)[ ]+IPC.*$' => 'skip', - '^\tIPC\\\$(.*)[ ]+IPC' => 'skip', - '^\t(.*)[ ]+(Disk)[ ]+(.*)$' => 'share', - '^\t(.*)[ ]+(Printer)[ ]+(.*)$' => 'skip', - '([0-9]+) blocks of size ([0-9]+)\. ([0-9]+) blocks available' => 'skip', - 'Got a positive name query response from ' => 'skip', - '^(session setup failed): (.*)$' => 'error', - '^(.*): ERRSRV - ERRbadpw' => 'error', - '^Error returning browse list: (.*)$' => 'error', - '^tree connect failed: (.*)$' => 'error', - '^(Connection to .* failed)(.*)$' => 'error-connect', - '^NT_STATUS_(.*) ' => 'error', - '^NT_STATUS_(.*)\$' => 'error', - 'ERRDOS - ERRbadpath \((.*).\)' => 'error', - 'cd (.*): (.*)$' => 'error', - '^cd (.*): NT_STATUS_(.*)' => 'error', - '^\t(.*)$' => 'srvorwg', - '^([0-9]+)[ ]+([0-9]+)[ ]+(.*)$' => 'skip', - '^Job ([0-9]+) cancelled' => 'skip', - '^[ ]+(.*)[ ]+([0-9]+)[ ]+(Mon|Tue|Wed|Thu|Fri|Sat|Sun)[ ](Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[ ]+([0-9]+)[ ]+([0-9]{2}:[0-9]{2}:[0-9]{2})[ ]([0-9]{4})$' => 'files', - '^message start: ERRSRV - (ERRmsgoff)' => 'error' - ); + if ($regexp === NULL) $regexp = smb::$regexp; if (SMB4PHP_AUTHMODE == 'env') { putenv("USER={$purl['user']}%{$purl['pass']}"); diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index af37a05cae..043265d898 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -319,7 +319,7 @@ class OC_Mount_Config { 'backend' => $backends[$mount['class']]['backend'], 'options' => $mount['options'], 'applicable' => array('groups' => array($group), 'users' => array()), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) + 'status' => self::getBackendStatus($mount['class'], $mount['options'], false) ); $hash = self::makeConfigHash($config); // If an existing config exists (with same class, mountpoint and options) @@ -349,7 +349,7 @@ class OC_Mount_Config { 'backend' => $backends[$mount['class']]['backend'], 'options' => $mount['options'], 'applicable' => array('groups' => array(), 'users' => array($user)), - 'status' => self::getBackendStatus($mount['class'], $mount['options']) + 'status' => self::getBackendStatus($mount['class'], $mount['options'], true) ); $hash = self::makeConfigHash($config); // If an existing config exists (with same class, mountpoint and options) @@ -389,7 +389,7 @@ class OC_Mount_Config { 'mountpoint' => substr($mountPoint, strlen($uid) + 8), 'backend' => $backends[$mount['class']]['backend'], 'options' => $mount['options'], - 'status' => self::getBackendStatus($mount['class'], $mount['options']) + 'status' => self::getBackendStatus($mount['class'], $mount['options'], true) ); } } @@ -402,7 +402,7 @@ class OC_Mount_Config { * @param array $options backend configuration options * @return bool true if the connection succeeded, false otherwise */ - private static function getBackendStatus($class, $options) { + private static function getBackendStatus($class, $options, $isPersonal) { if (self::$skipTest) { return true; } @@ -412,7 +412,7 @@ class OC_Mount_Config { if (class_exists($class)) { try { $storage = new $class($options); - return $storage->test(); + return $storage->test($isPersonal); } catch (Exception $exception) { \OCP\Util::logException('files_external', $exception); return false; @@ -479,7 +479,7 @@ class OC_Mount_Config { $mountPoints[$mountType] = $mount; } self::writeData($isPersonal, $mountPoints); - return self::getBackendStatus($class, $classOptions); + return self::getBackendStatus($class, $classOptions, $isPersonal); } /** diff --git a/apps/files_external/lib/smb_oc.php b/apps/files_external/lib/smb_oc.php index a62a2c0153..ac325cd4fb 100644 --- a/apps/files_external/lib/smb_oc.php +++ b/apps/files_external/lib/smb_oc.php @@ -8,11 +8,15 @@ namespace OC\Files\Storage; +require_once __DIR__ . '/../3rdparty/smb4php/smb.php'; + class SMB_OC extends \OC\Files\Storage\SMB { + private $username_as_share; + public function __construct($params) { if (isset($params['host']) && \OC::$session->exists('smb-credentials')) { $host=$params['host']; - $username_as_share = ($params['username_as_share'] === 'true'); + $this->username_as_share = ($params['username_as_share'] === 'true'); $params_auth = \OC::$session->get('smb-credentials'); $user = \OC::$session->get('loginname'); @@ -21,7 +25,7 @@ class SMB_OC extends \OC\Files\Storage\SMB { $root=isset($params['root'])?$params['root']:'/'; $share = ''; - if ($username_as_share) { + if ($this->username_as_share) { $share = '/'.$user; } elseif (isset($params['share'])) { $share = $params['share']; @@ -47,4 +51,39 @@ class SMB_OC extends \OC\Files\Storage\SMB { public function isSharable($path) { return false; } + + public function test($isPersonal = true) { + if ($isPersonal) { + if ($this->stat('')) + return true; + return false; + } else { + $smb = new \smb(); + $pu = $smb->parse_url($this->constructUrl('')); + + // Attempt to connect anonymously + $pu['user'] = ''; + $pu['pass'] = ''; + + // Share cannot be checked if dynamic + if ($this->username_as_share) { + if ($smb->look($pu)) + return true; + else + return false; + } + if (!$pu['share']) + return false; + + // The following error messages are expected due to anonymous login + $regexp = array( + '(NT_STATUS_ACCESS_DENIED)' => 'skip' + ) + $smb->getRegexp(); + + if ($smb->client("-d 0 " . escapeshellarg('//' . $pu['host'] . '/' . $pu['share']) . " -c exit", $pu, $regexp)) + return true; + else + return false; + } + } } From 93b984ecf8da4148fa10a72a35ce5cba371c7a87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 26 Mar 2014 15:36:55 +0100 Subject: [PATCH 304/333] css files are not to be routed through index.php anymore --- lib/private/urlgenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/urlgenerator.php b/lib/private/urlgenerator.php index 44b46ef670..b7ae8dd0f6 100644 --- a/lib/private/urlgenerator.php +++ b/lib/private/urlgenerator.php @@ -60,7 +60,7 @@ class URLGenerator implements IURLGenerator { $app_path = \OC_App::getAppPath($app); // Check if the app is in the app folder if ($app_path && file_exists($app_path . '/' . $file)) { - if (substr($file, -3) == 'php' || substr($file, -3) == 'css') { + if (substr($file, -3) == 'php') { $urlLinkTo = \OC::$WEBROOT . '/index.php/apps/' . $app; if ($frontControllerActive) { From cd5ebac7c40ad045828ea44c533b57fa25f01177 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 26 Mar 2014 11:22:47 +0000 Subject: [PATCH 305/333] Fix error in $isPersonal setting --- apps/files_external/lib/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 043265d898..472c3963d5 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -349,7 +349,7 @@ class OC_Mount_Config { 'backend' => $backends[$mount['class']]['backend'], 'options' => $mount['options'], 'applicable' => array('groups' => array(), 'users' => array($user)), - 'status' => self::getBackendStatus($mount['class'], $mount['options'], true) + 'status' => self::getBackendStatus($mount['class'], $mount['options'], false) ); $hash = self::makeConfigHash($config); // If an existing config exists (with same class, mountpoint and options) From a1dca821f9c2cf770b6884e943a0841c0ab6171d Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 26 Mar 2014 15:11:09 +0000 Subject: [PATCH 306/333] Use braces on single line if statements --- apps/files_external/lib/smb_oc.php | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/apps/files_external/lib/smb_oc.php b/apps/files_external/lib/smb_oc.php index ac325cd4fb..0c79c06c5d 100644 --- a/apps/files_external/lib/smb_oc.php +++ b/apps/files_external/lib/smb_oc.php @@ -54,8 +54,9 @@ class SMB_OC extends \OC\Files\Storage\SMB { public function test($isPersonal = true) { if ($isPersonal) { - if ($this->stat('')) + if ($this->stat('')) { return true; + } return false; } else { $smb = new \smb(); @@ -67,23 +68,26 @@ class SMB_OC extends \OC\Files\Storage\SMB { // Share cannot be checked if dynamic if ($this->username_as_share) { - if ($smb->look($pu)) + if ($smb->look($pu)) { return true; - else + } else { return false; + } } - if (!$pu['share']) + if (!$pu['share']) { return false; + } // The following error messages are expected due to anonymous login $regexp = array( '(NT_STATUS_ACCESS_DENIED)' => 'skip' ) + $smb->getRegexp(); - if ($smb->client("-d 0 " . escapeshellarg('//' . $pu['host'] . '/' . $pu['share']) . " -c exit", $pu, $regexp)) + if ($smb->client("-d 0 " . escapeshellarg('//' . $pu['host'] . '/' . $pu['share']) . " -c exit", $pu, $regexp)) { return true; - else + } else { return false; + } } } } From eeaefd84c3911a166920084947ad1018c744e6a6 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 26 Mar 2014 16:32:09 +0100 Subject: [PATCH 307/333] change mobile breakpoint for shared view to 768px as well --- apps/files_sharing/css/mobile.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/css/mobile.css b/apps/files_sharing/css/mobile.css index 988ae862ef..333c4c77fc 100644 --- a/apps/files_sharing/css/mobile.css +++ b/apps/files_sharing/css/mobile.css @@ -1,4 +1,4 @@ -@media only screen and (max-width: 600px) { +@media only screen and (max-width: 768px) { /* make header scroll up for single shares, more view of content on small screens */ #header.share-file { From 50dba97bdecbb48cdc5c721973c812421a717283 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Wed, 26 Mar 2014 15:43:03 +0000 Subject: [PATCH 308/333] Miscellaneous text fixes for core apps --- apps/files_encryption/appinfo/info.xml | 2 +- apps/files_versions/appinfo/info.xml | 2 +- apps/user_ldap/appinfo/info.xml | 4 ++-- apps/user_webdavauth/appinfo/info.xml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index ab47de828b..15a09a29f5 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -2,7 +2,7 @@ files_encryption Encryption - The ownCloud files encryption system provides server side-encryption. After the app was enabled you need to re-login to initialize your encryption keys. Please note that server side encryption requires that the ownCloud server admin can be trusted. The main purpose of this app is the encryption of files that are stored on externally mounted storages. + The ownCloud files encryption system provides server side-encryption. After the app is enabled you need to re-login to initialize your encryption keys. Please note that server side encryption requires that the ownCloud server admin can be trusted. The main purpose of this app is the encryption of files that are stored on externally mounted storages. AGPL Sam Tuke, Bjoern Schiessle, Florin Peter 4 diff --git a/apps/files_versions/appinfo/info.xml b/apps/files_versions/appinfo/info.xml index 661d64aa97..a735caee94 100644 --- a/apps/files_versions/appinfo/info.xml +++ b/apps/files_versions/appinfo/info.xml @@ -9,7 +9,7 @@ ownCloud supports simple version control for files. The versioning app expires old versions automatically to make sure that - the user doesn't run out of space. Following pattern is used to delete + the user doesn't run out of space. The following pattern is used to delete old versions: For the first 10 seconds ownCloud keeps one version every 2 seconds; For the first hour ownCloud keeps one version every minute; diff --git a/apps/user_ldap/appinfo/info.xml b/apps/user_ldap/appinfo/info.xml index 9cc908e852..e4a4375a73 100644 --- a/apps/user_ldap/appinfo/info.xml +++ b/apps/user_ldap/appinfo/info.xml @@ -2,8 +2,8 @@ user_ldap LDAP user and group backend - Authenticate users and groups by LDAP respectively Active - Directory. + Authenticate users and groups through LDAP, such as OpenLDAP + or Active Directory. This app is not compatible with the WebDAV user backend. diff --git a/apps/user_webdavauth/appinfo/info.xml b/apps/user_webdavauth/appinfo/info.xml index 76b314e48a..20c5909cc1 100755 --- a/apps/user_webdavauth/appinfo/info.xml +++ b/apps/user_webdavauth/appinfo/info.xml @@ -4,7 +4,7 @@ WebDAV user backend Authenticate users by a WebDAV call. You can use any WebDAV server, ownCloud server or other webserver to authenticate. It should return http 200 for right credentials and http 401 for wrong ones. - This app is not compatible to the LDAP user and group backend. + This app is not compatible with the LDAP user and group backend. AGPL Frank Karlitschek 4.93 From fa00a18677e0b95784fdb433aa3616dc74da1154 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 17:20:40 +0100 Subject: [PATCH 309/333] Fixed mtime reading from OpenStack API The API seems to return floating point values, which prevents the hasUpdated() check to work and causes the scanner to rescan everything every time. --- apps/files_external/lib/swift.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 7a56fcfc8b..a6955d400f 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -251,6 +251,10 @@ class Swift extends \OC\Files\Storage\Common { $mtime = $object->extra_headers['X-Object-Meta-Timestamp']; } + if (!empty($mtime)) { + $mtime = floor($mtime); + } + $stat = array(); $stat['size'] = $object->content_length; $stat['mtime'] = $mtime; From b48510c978810a485f3ab72b28ec1c32350a6332 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 26 Mar 2014 18:14:35 +0100 Subject: [PATCH 310/333] Use the correct resolve method to resolve file storage When detecting whether the file to be downloaded is on external storage, the correct path needs to be used. It turns out that \OC\Files\View is needed to resolve the path correctly relative to the user's home. --- lib/private/files.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/private/files.php b/lib/private/files.php index 7e7a27f48d..bfe6d3c02d 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -148,8 +148,9 @@ class OC_Files { set_time_limit($executionTime); } else { if ($xsendfile) { + $view = \OC\Files\Filesystem::getView(); /** @var $storage \OC\Files\Storage\Storage */ - list($storage) = \OC\Files\Filesystem::resolvePath($filename); + list($storage) = $view->resolvePath($filename); if ($storage->isLocal()) { self::addSendfileHeader(\OC\Files\Filesystem::getLocalFile($filename)); } else { From ed0cba0ff4f84c9bae83ecfe7b7b6bdcb2169413 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 27 Mar 2014 01:56:30 -0400 Subject: [PATCH 311/333] [tx-robot] updated from transifex --- apps/files_trashbin/l10n/ar.php | 1 + l10n/ar/files.po | 30 ++++++------ l10n/ar/files_trashbin.po | 11 +++-- l10n/ar/user_ldap.po | 4 +- l10n/bg_BG/files.po | 72 ++++++++++++++--------------- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/files.po | 72 ++++++++++++++--------------- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/files.po | 72 ++++++++++++++--------------- l10n/bs/user_ldap.po | 4 +- l10n/ca/files.po | 30 ++++++------ l10n/ca/settings.po | 9 ++-- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/files.po | 30 ++++++------ l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/files.po | 30 ++++++------ l10n/cy_GB/user_ldap.po | 4 +- l10n/da/files.po | 30 ++++++------ l10n/da/settings.po | 32 ++++++------- l10n/da/user_ldap.po | 4 +- l10n/de/files.po | 30 ++++++------ l10n/de/settings.po | 12 ++--- l10n/de/user_ldap.po | 4 +- l10n/de_AT/files.po | 72 ++++++++++++++--------------- l10n/de_AT/user_ldap.po | 4 +- l10n/de_CH/files.po | 30 ++++++------ l10n/de_CH/user_ldap.po | 6 +-- l10n/de_DE/files.po | 30 ++++++------ l10n/de_DE/settings.po | 12 ++--- l10n/de_DE/user_ldap.po | 6 +-- l10n/el/files.po | 30 ++++++------ l10n/el/user_ldap.po | 4 +- l10n/en_GB/files.po | 30 ++++++------ l10n/en_GB/settings.po | 12 ++--- l10n/en_GB/user_ldap.po | 4 +- l10n/eo/files.po | 30 ++++++------ l10n/eo/user_ldap.po | 4 +- l10n/es/files.po | 30 ++++++------ l10n/es/settings.po | 12 ++--- l10n/es/user_ldap.po | 8 ++-- l10n/es_AR/files.po | 30 ++++++------ l10n/es_AR/user_ldap.po | 4 +- l10n/es_MX/files.po | 30 ++++++------ l10n/es_MX/user_ldap.po | 4 +- l10n/et_EE/files.po | 30 ++++++------ l10n/et_EE/user_ldap.po | 4 +- l10n/eu/files.po | 30 ++++++------ l10n/eu/user_ldap.po | 4 +- l10n/eu_ES/files.po | 72 ++++++++++++++--------------- l10n/eu_ES/user_ldap.po | 4 +- l10n/fa/files.po | 30 ++++++------ l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/files.po | 30 ++++++------ l10n/fi_FI/settings.po | 12 ++--- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/files.po | 30 ++++++------ l10n/fr/user_ldap.po | 4 +- l10n/gl/files.po | 30 ++++++------ l10n/gl/user_ldap.po | 4 +- l10n/he/files.po | 30 ++++++------ l10n/he/user_ldap.po | 4 +- l10n/hi/files.po | 72 ++++++++++++++--------------- l10n/hi/user_ldap.po | 4 +- l10n/hr/files.po | 72 ++++++++++++++--------------- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/files.po | 30 ++++++------ l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 72 ++++++++++++++--------------- l10n/hy/user_ldap.po | 4 +- l10n/ia/files.po | 72 ++++++++++++++--------------- l10n/ia/user_ldap.po | 4 +- l10n/id/files.po | 30 ++++++------ l10n/id/user_ldap.po | 4 +- l10n/is/files.po | 72 ++++++++++++++--------------- l10n/is/user_ldap.po | 4 +- l10n/it/files.po | 30 ++++++------ l10n/it/settings.po | 12 ++--- l10n/it/user_ldap.po | 4 +- l10n/ja/files.po | 30 ++++++------ l10n/ja/user_ldap.po | 4 +- l10n/ka_GE/files.po | 30 ++++++------ l10n/ka_GE/user_ldap.po | 4 +- l10n/km/files.po | 72 ++++++++++++++--------------- l10n/km/user_ldap.po | 4 +- l10n/ko/files.po | 30 ++++++------ l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/files.po | 72 ++++++++++++++--------------- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/files.po | 72 ++++++++++++++--------------- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/files.po | 30 ++++++------ l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/files.po | 30 ++++++------ l10n/lv/user_ldap.po | 4 +- l10n/mk/files.po | 30 ++++++------ l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/files.po | 72 ++++++++++++++--------------- l10n/ms_MY/user_ldap.po | 4 +- l10n/nb_NO/files.po | 30 ++++++------ l10n/nb_NO/user_ldap.po | 4 +- l10n/nl/files.po | 30 ++++++------ l10n/nl/settings.po | 12 ++--- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/files.po | 30 ++++++------ l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/files.po | 72 ++++++++++++++--------------- l10n/oc/user_ldap.po | 4 +- l10n/pl/files.po | 30 ++++++------ l10n/pl/settings.po | 12 ++--- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/files.po | 30 ++++++------ l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/files.po | 30 ++++++------ l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/files.po | 30 ++++++------ l10n/ro/user_ldap.po | 4 +- l10n/ru/files.po | 30 ++++++------ l10n/ru/user_ldap.po | 4 +- l10n/si_LK/files.po | 72 ++++++++++++++--------------- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/files.po | 72 ++++++++++++++--------------- l10n/sk/user_ldap.po | 4 +- l10n/sk_SK/files.po | 30 ++++++------ l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/files.po | 30 ++++++------ l10n/sl/user_ldap.po | 4 +- l10n/sq/files.po | 30 ++++++------ l10n/sq/user_ldap.po | 4 +- l10n/sr/files.po | 30 ++++++------ l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/files.po | 72 ++++++++++++++--------------- l10n/sr@latin/user_ldap.po | 4 +- l10n/sv/files.po | 30 ++++++------ l10n/sv/user_ldap.po | 4 +- l10n/ta_LK/files.po | 72 ++++++++++++++--------------- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/files.po | 72 ++++++++++++++--------------- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 8 ++-- 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 | 30 ++++++------ l10n/th_TH/user_ldap.po | 4 +- l10n/tr/files.po | 30 ++++++------ l10n/tr/user_ldap.po | 4 +- l10n/ug/files.po | 30 ++++++------ l10n/ug/user_ldap.po | 4 +- l10n/uk/files.po | 30 ++++++------ l10n/uk/user_ldap.po | 4 +- l10n/vi/files.po | 30 ++++++------ l10n/vi/user_ldap.po | 4 +- l10n/zh_CN/files.po | 30 ++++++------ l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/files.po | 72 ++++++++++++++--------------- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/files.po | 30 ++++++------ l10n/zh_TW/user_ldap.po | 4 +- settings/l10n/ca.php | 1 + settings/l10n/da.php | 13 ++++++ settings/l10n/de.php | 3 ++ settings/l10n/de_DE.php | 3 ++ settings/l10n/en_GB.php | 3 ++ settings/l10n/es.php | 3 ++ settings/l10n/fi_FI.php | 3 ++ settings/l10n/it.php | 3 ++ settings/l10n/nl.php | 3 ++ settings/l10n/pl.php | 3 ++ 176 files changed, 1781 insertions(+), 1740 deletions(-) diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index 68c51d1cc7..4084daa127 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -4,6 +4,7 @@ $TRANSLATIONS = array( "Couldn't restore %s" => "تعذّر استرجاع %s ", "Deleted files" => "حذف الملفات", "Error" => "خطأ", +"restored" => "تمت الاستعادة", "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", "Name" => "اسم", "Restore" => "استعيد", diff --git a/l10n/ar/files.po b/l10n/ar/files.po index bade00bb3f..03c7ac1650 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "غير قادر على تحميل المجلد" msgid "Invalid Token" msgstr "علامة غير صالحة" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "فشلت عملية الرفع. تعذر الحصول على معلومات الملف." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "مسار غير صحيح." diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 4eef8c3432..e354e3194c 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Abderraouf Mehdi Bouhali , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-19 06:40+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:10+0000\n" +"Last-Translator: Abderraouf Mehdi Bouhali \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,9 +36,9 @@ msgstr "حذف الملفات" msgid "Error" msgstr "خطأ" -#: lib/trashbin.php:853 lib/trashbin.php:855 +#: lib/trashbin.php:859 lib/trashbin.php:861 msgid "restored" -msgstr "" +msgstr "تمت الاستعادة" #: templates/index.php:7 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 7b68c2ffef..a4e3832904 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-21 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 11:40+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: m.shehab \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index bb8c6f450f..6d6412edee 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Възникна проблем при запис в диска" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Невалидна директория." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 658e5fef62..78f3b6a114 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 199301ae11..43c3d26d9a 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "ফাইলের নামটি ফাঁকা রাখা যাবে না।" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে " -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 5e7729e1d4..a7caeb4019 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 0bd442a17a..09ae4d496d 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/bs/user_ldap.po b/l10n/bs/user_ldap.po index 3ec9651aca..268fdc806b 100644 --- a/l10n/bs/user_ldap.po +++ b/l10n/bs/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index d3df8a0bd1..f504332b2d 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta de destí s'ha mogut o eliminat." @@ -92,54 +92,54 @@ msgstr "No es pot establir la carpeta de pujada." msgid "Invalid Token" msgstr "Testimoni no vàlid" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El fitxer carregat supera la directiva MAX_FILE_SIZE especificada al formulari HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "La pujada ha fallat. El fitxer pujat no s'ha trobat." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "La pujada ha fallat. No s'ha pogut obtenir informació del fitxer." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directori no vàlid." diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index cb43c90769..9368907aeb 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -4,14 +4,15 @@ # # Translators: # rogerc, 2013-2014 +# Josep Torné , 2014 # rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 13:43+0000\n" +"Last-Translator: Josep Torné \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -431,7 +432,7 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "L'últim cron s'ha executat el %s" #: templates/admin.php:170 #, php-format diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index ce1cd4df02..90f2c187f2 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-19 01:55-0400\n" -"PO-Revision-Date: 2014-03-18 08:52+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index aae75b1c0b..cdc38895bf 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Cílová složka byla přesunuta nebo smazána." @@ -96,54 +96,54 @@ msgstr "Nelze nastavit adresář pro nahrané soubory." msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávání selhalo. Nepodařilo se nalézt nahraný soubor." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Nahrávání selhalo. Nepodařilo se získat informace o souboru." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neplatný adresář" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index e9fd629b0b..f20b90fcd2 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-23 22:50+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: pstast \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index 4af8ab8a90..f9ca4e1117 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index d0c43b131c..cc9dff4f5d 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files.po b/l10n/da/files.po index 74ad1a5d02..16d923ac96 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Mappen er blevet slettet eller fjernet." @@ -93,54 +93,54 @@ msgstr "Ude af stand til at vælge upload mappe." msgid "Invalid Token" msgstr "Ugyldig Token " -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Upload fejlede. Kunne ikke finde den uploadede fil." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Upload fejlede. Kunne ikke hente filinformation." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ugyldig mappe." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 9a4cdd0e91..ecc1285414 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 09:30+0000\n" +"Last-Translator: Sappe\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "Gemt" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "test email indstillinger" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." @@ -326,15 +326,15 @@ msgstr "" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "NT LAN Manager" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -535,7 +535,7 @@ msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere S #: templates/admin.php:294 msgid "Email Server" -msgstr "" +msgstr "Email Server" #: templates/admin.php:296 msgid "This is used for sending out notifications." @@ -543,11 +543,11 @@ msgstr "" #: templates/admin.php:327 msgid "From address" -msgstr "" +msgstr "Fra adresse" #: templates/admin.php:349 msgid "Authentication required" -msgstr "" +msgstr "Godkendelse påkrævet" #: templates/admin.php:353 msgid "Server address" @@ -559,23 +559,23 @@ msgstr "Port" #: templates/admin.php:362 msgid "Credentials" -msgstr "" +msgstr "Brugeroplysninger" #: templates/admin.php:363 msgid "SMTP Username" -msgstr "" +msgstr "SMTP Brugernavn" #: templates/admin.php:366 msgid "SMTP Password" -msgstr "" +msgstr "SMTP Kodeord" #: templates/admin.php:370 msgid "Test email settings" -msgstr "" +msgstr "Test email indstillinger" #: templates/admin.php:371 msgid "Send email" -msgstr "" +msgstr "Send email" #: templates/admin.php:376 msgid "Log" @@ -621,7 +621,7 @@ msgstr "Vælg en App" #: templates/apps.php:42 msgid "Documentation:" -msgstr "" +msgstr "Dokumentation:" #: templates/apps.php:48 msgid "See application page at apps.owncloud.com" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 67ac87e364..91bc2bece8 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 1b89a09ee3..d6ab1aa210 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Zielordner wurde verschoben oder gelöscht." @@ -96,54 +96,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index cb821401a7..b120125988 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 11:50+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -438,18 +438,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Letzter Cron wurde um %s ausgeführt." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron wurde bis jetzt noch nicht ausgeführt!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index b41d11b2bd..61ce5eaac6 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 8c9106e7e2..1cff24b0de 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/de_AT/user_ldap.po b/l10n/de_AT/user_ldap.po index 8fe6722c36..1e86832a9e 100644 --- a/l10n/de_AT/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index a5326b44b9..223375e7fa 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -51,7 +51,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -97,54 +97,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po index c71f7f5776..14344bc7b1 100644 --- a/l10n/de_CH/user_ldap.po +++ b/l10n/de_CH/user_ldap.po @@ -10,13 +10,13 @@ # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # multimill , 2012 -# traductor , 2012-2013 +# traductor, 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 46cc403bb2..5e50b0b468 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -53,7 +53,7 @@ msgid "" "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Der Ziel-Ordner wurde verschoben oder gelöscht." @@ -99,54 +99,54 @@ msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Hochladen fehlgeschlagen. Die hochgeladene Datei konnte nicht gefunden werden." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Hochladen fehlgeschlagen. Die Dateiinformationen konnten nicht abgerufen werden." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 9143ffdf82..2af9442140 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 11:50+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -438,18 +438,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Letzter Cron wurde um %s ausgeführt." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron wurde bis jetzt noch nicht ausgeführt!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index c96d99dfa1..721016886e 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -7,14 +7,14 @@ # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013-2014 # JamFX , 2013 -# traductor , 2013 +# traductor, 2013 # noxin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files.po b/l10n/el/files.po index 48163996d3..fc989942bb 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -93,54 +93,54 @@ msgstr "Αδυναμία ορισμού καταλόγου αποστολής." msgid "Invalid Token" msgstr "Μη έγκυρο Token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Η φόρτωση απέτυχε. Αδυναμία εύρεσης αρχείου προς φόρτωση." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Η φόρτωση απέτυχε. Αδυναμία λήψης πληροφοριών αρχείων." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 5f0073e1a0..f9c9174c55 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index fcaa77bb69..182341b8a2 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "The target folder has been moved or deleted." @@ -89,54 +89,54 @@ msgstr "Unable to set upload directory." msgid "Invalid Token" msgstr "Invalid Token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No file was uploaded. Unknown error" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "There is no error, the file uploaded successfully" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "The uploaded file was only partially uploaded" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No file was uploaded" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Missing a temporary folder" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Failed to write to disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Not enough storage available" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Upload failed. Could not find uploaded file" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Upload failed. Could not get file info." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Invalid directory." diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index c88871fc4f..f04a916b0c 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 12:20+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -430,18 +430,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Last cron was executed at %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Last cron was executed at %s. This is more than an hour ago, something seems wrong." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron was not executed yet!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index a2648a790d..334316ca9e 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 12:10+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 7d8eee4479..7518719c1a 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Ne povis agordiĝi la alŝuta dosierujo." msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "la alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Nevalida dosierujo." diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 6f353ffd28..1f0d5fdcec 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files.po b/l10n/es/files.po index a88b0ed95e..b9d0e700b3 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -52,7 +52,7 @@ msgid "" "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La carpeta destino fue movida o eliminada." @@ -98,54 +98,54 @@ msgstr "Incapaz de crear directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directorio inválido." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 6884769d8a..0a625464a1 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 22:10+0000\n" +"Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -443,18 +443,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Cron fue ejecutado por última vez a las %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Cron fue ejecutado por última vez a las %s. Esto fue hace más de una hora, algo anda mal." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "¡Cron aún no ha sido ejecutado!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 9058d328ef..81a43116f9 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -4,7 +4,7 @@ # # Translators: # Agustin Ferrario , 2013 -# txelu , 2014 +# Jose Luis Tirado , 2014 # Maenso , 2013 # Raul Fernandez Garcia , 2013 # ordenet , 2013 @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 21:20+0000\n" -"Last-Translator: txelu \n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" +"Last-Translator: Jose Luis Tirado \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 51663cf577..02f0efea9b 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "No fue posible crear el directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hay errores, el archivo fue subido con éxito" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El archivo fue subido parcialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No se subió ningún archivo " -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta un directorio temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hay suficiente almacenamiento" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Falló la carga. No se pudo encontrar el archivo subido." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Falló la carga. No se pudo obtener la información del archivo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directorio inválido." diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index d3976c28d2..bbccd0908e 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index 5d13dd51a3..e35ebde5b1 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "Incapaz de crear directorio de subida." msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "No hubo ningún problema, el archivo se subió con éxito" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva 'upload_max_filesize' en php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa la directiva 'MAX_FILE_SIZE' especificada en el formulario HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Actualización fallida. No se pudo encontrar el archivo subido" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Actualización fallida. No se pudo obtener información del archivo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directorio inválido." diff --git a/l10n/es_MX/user_ldap.po b/l10n/es_MX/user_ldap.po index a2926c98e4..78711d7f98 100644 --- a/l10n/es_MX/user_ldap.po +++ b/l10n/es_MX/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 33c13f4b24..780aa687c9 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "Üleslaadimiste kausta määramine ebaõnnestus." msgid "Invalid Token" msgstr "Vigane kontrollkood" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi tõrget polnud, fail on üles laetud" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Üleslaetud fail ületab MAX_FILE_SIZE suuruse, mis on HTML vormi jaoks määratud" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Üleslaadimine ebaõnnestus. Üleslaetud faili ei leitud" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Üleslaadimine ebaõnnestus. Faili info hankimine ebaõnnestus." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Vigane kaust." diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index a05bf02b3f..6843303969 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 9904b91c21..8245bccc02 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "Ezin da igoera direktorioa ezarri." msgid "Invalid Token" msgstr "Lekuko baliogabea" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ez da errorerik egon, fitxategia ongi igo da" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Igotako fitxategia HTML formularioan zehaztutako MAX_FILE_SIZE direktiba baino handidagoa da." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Igoerak huts egin du. Ezin izan da igotako fitxategia aurkitu" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Igoerak huts egin du. Ezin izan da fitxategiaren informazioa eskuratu." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Baliogabeko karpeta." diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 0a00e89e64..502322ad15 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index 08dee84c9e..f57a7040ac 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/eu_ES/user_ldap.po b/l10n/eu_ES/user_ldap.po index 20c3e494db..bbc3027bfc 100644 --- a/l10n/eu_ES/user_ldap.po +++ b/l10n/eu_ES/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index fead8e85df..83011111fe 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "قادر به تنظیم پوشه آپلود نمی باشد." msgid "Invalid Token" msgstr "رمز نامعتبر" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 8311efcf66..978827d9d5 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 6acc4fff64..8306890140 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Kohdekansio on siirretty tai poistettu." @@ -91,54 +91,54 @@ msgstr "Lähetyskansion asettaminen epäonnistui." msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Lähetys epäonnistui. Lähettävää tiedostoa ei löydetty." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Virheellinen kansio." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 65fc5864d4..820800fa81 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 07:01+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -430,18 +430,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Viimeisin cron suoritettiin %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Viimeisin cron suoritettiin %s. Siitä on yli tunti aikaa, joten jokin näyttää olevan pielessä." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cronia ei suoritettu vielä!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 750a7b5853..83464ec111 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 379cd86cc1..9e3b0bca46 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -47,7 +47,7 @@ msgid "" "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Le dossier cible a été déplacé ou supprimé." @@ -93,54 +93,54 @@ msgstr "Impossible de définir le dossier pour l'upload, charger." msgid "Invalid Token" msgstr "Jeton non valide" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été envoyé avec succès." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse l'instruction upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Le fichier envoyé dépasse l'instruction MAX_FILE_SIZE qui est spécifiée dans le formulaire HTML." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "L'envoi a échoué. Impossible de trouver le fichier envoyé." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "L'envoi a échoué. Impossible d'obtenir les informations du fichier." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Dossier invalide." diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 44203b8b95..09a7f945ab 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 16:21+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index b71b62fd9b..5d5e1a7178 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "O cartafol de destino foi movido ou eliminado." @@ -90,54 +90,54 @@ msgstr "Non é posíbel configurar o directorio de envíos." msgid "Invalid Token" msgstr "Marca incorrecta" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Non houbo erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede da directiva MAX_FILE_SIZE especificada no formulario HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "O envío fracasou. Non foi posíbel atopar o ficheiro enviado" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "O envío fracasou. Non foi posíbel obter información do ficheiro." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "O directorio é incorrecto." diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 56d17fa56b..2070e8c715 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-15 02:13-0400\n" -"PO-Revision-Date: 2014-03-14 09:10+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files.po b/l10n/he/files.po index 4273d42e1f..fe83688b06 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "תיקייה שגויה." diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index e43dba49a7..5a7b24997c 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 6405316b8b..571ff8efa4 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index f001017d01..1c1bdbf62b 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 1f5a7f6813..6670ab986c 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nema pogreške, datoteka je poslana uspješno." -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Poslana datoteka je parcijalno poslana" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Datoteka nije poslana" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Nedostaje privremeni direktorij" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index c5facc60a2..0d0c691cf7 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 3532ba7040..6e63b3157d 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "Nem található a mappa, ahova feltölteni szeretne." msgid "Invalid Token" msgstr "Hibás mappacím" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "A feltöltés nem sikerült. Nem található a feltöltendő állomány." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "A feltöltés nem sikerült. Az állományt leíró információk nem érhetők el." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Érvénytelen mappa." diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index a199ced0ec..37aa013a6f 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 86f00de0be..b8176dd374 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/hy/user_ldap.po b/l10n/hy/user_ldap.po index eeb3690022..1acfafd169 100644 --- a/l10n/hy/user_ldap.po +++ b/l10n/hy/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 7f1089dd46..5b6b0d6076 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nulle file esseva incargate." -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 593db01cf1..8cf13b0b0d 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files.po b/l10n/id/files.po index d2ec10037f..1f2f31785c 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Tidak dapat mengatur folder unggah" msgid "Invalid Token" msgstr "Token tidak sah" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Unggah gagal. Tidak menemukan berkas yang akan diunggah" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Unggah gagal. Tidak mendapatkan informasi berkas." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Direktori tidak valid." diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index a8e38b76de..fcf502a7a8 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files.po b/l10n/is/files.po index 6195518730..82f83fd1b1 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "Gat ekki fært %s" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "Nafn skráar má ekki vera tómt" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ógild mappa." @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index e0cccdc882..df6247cd5d 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files.po b/l10n/it/files.po index c1dcdc79c2..2b729d5096 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "La cartella di destinazione è stata spostata o eliminata." @@ -90,54 +90,54 @@ msgstr "Impossibile impostare una cartella di caricamento." msgid "Invalid Token" msgstr "Token non valido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato caricato correttamente" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Il file inviato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Caricamento non riuscito. Impossibile trovare il file caricato." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Caricamento non riuscito. Impossibile ottenere informazioni sul file." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Cartella non valida." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index d3f2015ed5..2edd7721bc 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 12:01+0000\n" +"Last-Translator: Paolo Velati \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -433,18 +433,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "L'ultimo cron è stato eseguito alle %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "L'ultimo cron è stato eseguito alle %s. È più di un ora fa, qualcosa sembra sbagliato." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron non è ancora stato eseguito!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 0f6dbc2155..da54354cf9 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 22:50+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 53eda26032..02c744dddc 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -49,7 +49,7 @@ msgid "" "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "目標のフォルダは移動されたか、削除されました。" @@ -95,54 +95,54 @@ msgstr "アップロードディレクトリを設定できません。" msgid "Invalid Token" msgstr "無効なトークン" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "アップロードファイルは一部分だけアップロードされました" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "一時保存フォルダーが見つかりません" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "アップロードに失敗。アップロード済みのファイルを見つけることができませんでした。" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "アップロードに失敗。ファイル情報を取得できませんでした。" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "無効なディレクトリです。" diff --git a/l10n/ja/user_ldap.po b/l10n/ja/user_ldap.po index 879766d023..e670589dd7 100644 --- a/l10n/ja/user_ldap.po +++ b/l10n/ja/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-11 13:31+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index edcf2c7331..227a54b6dd 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 848926c0e6..ea64bec0b7 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/km/files.po b/l10n/km/files.po index becad9cf51..828078ceda 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/km/user_ldap.po b/l10n/km/user_ldap.po index 9a3c86b8c5..5f8d728426 100644 --- a/l10n/km/user_ldap.po +++ b/l10n/km/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 056ec25847..45ee79b1c1 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -94,54 +94,54 @@ msgstr "업로드 디렉터리를 설정할 수 없습니다." msgid "Invalid Token" msgstr "잘못된 토큰" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드 되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "업로드에 실패했습니다. 업로드할 파일을 찾을 수 없습니다" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "업로드에 실패했습니다. 파일 정보를 가져올 수 없습니다." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index c8074d818e..06500e88a3 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 64de8738b2..36645752f1 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 1305adc5d8..4635426b59 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 5250863214..9f74628eee 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Et ass kee Fichier ropgeluede ginn" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index fe03047f21..4edf0855c4 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 8c931cc06c..7d18340212 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -91,54 +91,54 @@ msgstr "Nepavyksta nustatyti įkėlimų katalogo." msgid "Invalid Token" msgstr "Netinkamas ženklas" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Įkeliamas failas yra didesnis nei leidžia upload_max_filesize php.ini faile:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Įkeliamo failo dydis viršija MAX_FILE_SIZE nustatymą, kuris naudojamas HTML formoje." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Įkėlimas nepavyko. Nepavyko rasti įkelto failo" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Įkėlimas nepavyko. Nepavyko gauti failo informacijos." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neteisingas aplankas" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index a67be7dfd9..074b556700 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index cb6b1128af..23f5f3998b 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Nevar uzstādīt augšupielādes mapi." msgid "Invalid Token" msgstr "Nepareiza pilnvara" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, datne augšupielādēta veiksmīga" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Augšupielādētā datne ir tikai daļēji augšupielādēta" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Nederīga direktorija." diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index db3bc0393e..90f2e4597e 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index a397c54f04..7f907ff611 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Не може да се постави папката за префрл msgid "Invalid Token" msgstr "Грешен токен" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Големината на датотеката ја надминува MAX_FILE_SIZE директивата која беше специфицирана во HTML формата" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Нема доволно слободен сториџ" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Префрлањето е неуспешно. Не можам да го најдам префрлената датотека." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Погрешна папка." diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 2b41dae61b..9fbc64a840 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 2162290bb8..ceca8d5e29 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fail yang dimuatnaik tidak lengkap" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Tiada fail dimuatnaik" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Direktori sementara hilang" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 703f27af48..ffaf5f23ca 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 1988ef019c..d81379a26d 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "Kunne ikke sette opplastingskatalog." msgid "Invalid Token" msgstr "Ugyldig nøkkel" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Filen du prøvde å laste opp var større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen filer ble lastet opp" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Mangler midlertidig mappe" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Opplasting feilet. Fant ikke opplastet fil." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Opplasting feilet. Klarte ikke å finne informasjon om fil." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ugyldig katalog." diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index ae84487d1b..8de5b111cf 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index efbd44ed5b..d478170f83 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "De doelmap is verplaatst of verwijderd." @@ -90,54 +90,54 @@ msgstr "Kan upload map niet instellen." msgid "Invalid Token" msgstr "Ongeldig Token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "De upload van het bestand is goedgegaan." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Het bestand overschrijdt de MAX_FILE_SIZE instelling dat is opgegeven in het HTML formulier" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Upload mislukt. Kon ge-uploade bestand niet vinden" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Upload mislukt, Kon geen bestandsinfo krijgen." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ongeldige directory." diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 821671a92f..8113608307 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 19:01+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -433,18 +433,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Laatst uitgevoerde cron op %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Laatst uitgevoerde cron op %s. Dat is langer dan een uur geleden, er is iets fout gegaan." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron is nog niet uitgevoerd!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index d3f5eb8d77..a4759a0e92 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 18:30+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index e9994a268c..9f4fa5869f 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -91,54 +91,54 @@ msgstr "Klarte ikkje å endra opplastingsmappa." msgid "Invalid Token" msgstr "Ugyldig token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Feil ved opplasting. Klarte ikkje å finna opplasta fil." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Feil ved opplasting. Klarte ikkje å henta filinfo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Ugyldig mappe." diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 480d38d38d..37d6774cb7 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index f8210485c0..7f609bb3b0 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 40d6de703c..1c69513cbd 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index d00c7fd8d5..9473672b26 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -48,7 +48,7 @@ msgid "" "allowed." msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Folder docelowy został przeniesiony lub usunięty" @@ -94,54 +94,54 @@ msgstr "Nie można ustawić katalog wczytywania." msgid "Invalid Token" msgstr "Nieprawidłowy Token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nie było błędów, plik wysłano poprawnie." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Załadowany plik został wysłany tylko częściowo." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Nieudane przesłanie. Nie można znaleźć przesyłanego pliku" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Nieudane przesłanie. Nie można pobrać informacji o pliku." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Zła ścieżka." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 1bd3e4c2da..d1e47d0889 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" -"PO-Revision-Date: 2014-03-26 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 10:42+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -432,18 +432,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Ostatni cron był uruchomiony %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Ostatni cron był uruchomiony %s. To jest więcej niż godzinę temu, wygląda na to, że coś jest nie tak." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Cron nie został jeszcze uruchomiony!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index c0c5d20885..25da5a7a43 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 17:12-0400\n" -"PO-Revision-Date: 2014-03-13 07:30+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: maxxx \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 897f8011e4..127cadb9b9 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -45,7 +45,7 @@ msgid "" "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "A pasta de destino foi movida ou excluída." @@ -91,54 +91,54 @@ msgstr "Impossível configurar o diretório de upload" msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Sem erros, o arquivo foi enviado com sucesso" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O arquivo carregado excede o argumento MAX_FILE_SIZE especificado no formulário HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi parcialmente enviado" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nenhum arquivo enviado" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Falha no envio. Não foi possível encontrar o arquivo enviado" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Falha no envio. Não foi possível obter informações do arquivo." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Diretório inválido." diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 7835f9b48a..f8940d0e55 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 13:11+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 0bfb106107..5d3d9a8a8d 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "Não foi possível criar o diretório de upload" msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O tamanho do ficheiro carregado ultrapassa o valor MAX_FILE_SIZE definido no formulário HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nenhum ficheiro foi submetido" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Está a faltar a pasta temporária" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Falhou o envio. Não conseguiu encontrar o ficheiro enviado" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "O carregamento falhou. Não foi possível obter a informação do ficheiro." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Directório Inválido" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index db90a11684..98b0514191 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-22 01:55-0400\n" -"PO-Revision-Date: 2014-03-21 11:41+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 13be40a731..f4def01082 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -49,7 +49,7 @@ msgid "" "allowed." msgstr "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -95,54 +95,54 @@ msgstr "Imposibil de a seta directorul pentru incărcare." msgid "Invalid Token" msgstr "Jeton Invalid" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Niciun fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fișierul încărcat depășește directiva upload_max_filesize din php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nu a fost încărcat niciun fișier" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Lipsește un dosar temporar" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Eroare la scrierea pe disc" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nu este disponibil suficient spațiu" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Încărcare eșuată. Nu se poate găsi fișierul încărcat" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Încărcare eșuată. Nu se pot obține informații despre fișier." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Dosar nevalid." diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index b81ac78557..a209336d3d 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 07e65a448d..8e80384b7c 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -53,7 +53,7 @@ msgid "" "allowed." msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -99,54 +99,54 @@ msgstr "Не удалось установить каталог загрузки msgid "Invalid Token" msgstr "Недопустимый маркер" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер, установленный параметром upload_max_filesize в php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Загруженный файл превышает размер, установленный параметром MAX_FILE_SIZE в HTML-форме" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Файл загружен лишь частично" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ни одного файла загружено не было" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Отсутствует временный каталог" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Загрузка не удалась. Невозможно найти загружаемый файл" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Загрузка не удалась. Невозможно получить информацию о файле" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Неверный каталог." diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index d6ca8bbef1..449f689dc9 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 1bdecb0628..4d19ae87f3 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ගොනුවක් උඩුගත නොවුණි" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් අතුරුදහන්" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 175aba8b81..e6f39fc39d 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index bc16f5e101..d705cf64c2 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -17,66 +17,66 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index 2e3098a1e2..6caf66c53b 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index b3eb40dfbc..8694064b15 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Nemožno nastaviť priečinok pre nahrané súbory." msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol nahraný. Neznáma chyba" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Nahrávanie zlyhalo. Nepodarilo sa nájsť nahrávaný súbor" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Nahrávanie zlyhalo. Nepodarilo sa získať informácie o súbore." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neplatný priečinok." diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 09793a0baf..2359384c65 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 00b2b25a51..9966a2785b 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Ciljna mapa je premaknjena ali izbrisana." @@ -90,54 +90,54 @@ msgstr "Mapo, v katero boste prenašali dokumente, ni mogoče določiti" msgid "Invalid Token" msgstr "Neveljaven žeton" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML." -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Pošiljanje je spodletelo. Ni mogoče najti poslane datoteke." -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Pošiljanje je spodletelo. Ni mogoče pridobiti podrobnosti datoteke." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Neveljavna mapa." diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index b5478c054e..5a24ba9ffa 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 8068ca9368..10f0a0a3fc 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "E pa mundur të vendoset dosja e ngarkimit" msgid "Invalid Token" msgstr "Shenjë e gabuar" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Asnjë skedar nuk u dërgua. Gabim i pa njohur" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Skedari u ngarkua me sukses" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Skedari i ngarkuar tejkalon limitin hapsirës së lejuar në php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Skedari i ngarkuar tejlakon vlerën MAX_FILE_SIZE të përcaktuar në formën HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Skedari është ngakruar vetëm pjesërisht" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Asnjë skedar nuk është ngarkuar" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Mungon dosja e përkohshme" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Dështoi shkrimi në disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Hapsira e arkivimit e pamjaftueshme" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Dosje e pavlefshme" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 82db1279b9..b8ed2aa551 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 6953dc1242..eb157cd5a7 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "неисправна фасцикла." diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index 03929445d0..d39190908f 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index ba91a498ad..04923e4804 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 91af033379..bfe386afdc 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 4ac3ca06a7..337141babf 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -50,7 +50,7 @@ msgid "" "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -96,54 +96,54 @@ msgstr "Kan inte sätta mapp för uppladdning." msgid "Invalid Token" msgstr "Ogiltig token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den uppladdade filen överskrider MAX_FILE_SIZE direktivet som har angetts i HTML formuläret" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Uppladdning misslyckades. Kunde inte hitta den uppladdade filen" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Uppladdning misslyckades. Gick inte att hämta filinformation." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Felaktig mapp." diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index d06794d6ee..1b9e5d7a42 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 325aee00ea..0dacc83010 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 8ff5e0b32a..7095ac9958 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files.po b/l10n/te/files.po index 962db4331a..23e4494a55 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index e728d77914..d7bc4f0318 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index db622dadab..8f14123eed 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b27ceaf4ca..f2639f9303 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7d450a7d2e..1ef7c2cab9 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "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 fbbe45effc..965c851209 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,20 +41,20 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:631 +#: lib/config.php:646 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:635 +#: lib/config.php:650 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " "install it." msgstr "" -#: lib/config.php:638 +#: lib/config.php:653 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/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 71f7f914ca..2f8678ef6e 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "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 74f47ea00b..d4dcc61a85 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "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 315f764576..5bae82bfe6 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "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 5fbe1da266..90e076435a 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "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 7ef9bd01f4..2925d3cdfd 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "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 0038925b94..2c810d328e 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "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 d28d8dc907..73d07c3e4d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" "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 ebdf862dd7..a01f6858bc 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-26 01:55-0400\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\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 5969ccf253..7cb40f38e7 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในรูปแบบของ HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 9b08c612be..1e29595c3f 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index e44d0c628f..3894fb0ad4 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "Hedef klasör taşındı veya silindi." @@ -92,54 +92,54 @@ msgstr "Yükleme dizini tanımlanamadı." msgid "Invalid Token" msgstr "Geçersiz Simge" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Dosya başarıyla yüklendi, hata oluşmadı" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Yüklenecek dosyanın boyutu HTML formunda belirtilen MAX_FILE_SIZE limitini aşıyor" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Yükleme başarısız. Yüklenen dosya bulunamadı" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Yükleme başarısız. Dosya bilgisi alınamadı." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Geçersiz dizin." diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 29c83ca6b7..33a02856eb 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-13 01:55-0400\n" -"PO-Revision-Date: 2014-03-12 10:51+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 506c14df31..99023de9b6 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index a2672c92aa..4ac58f5836 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 87f0b69253..310553d948 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -43,7 +43,7 @@ msgid "" "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -89,54 +89,54 @@ msgstr "Не вдалося встановити каталог завантаж msgid "Invalid Token" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Невірний каталог." diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 5aa076e5cb..0e0f846c7f 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 1040f0a0b1..b049eef635 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "Không thể thiết lập thư mục tải lên." msgid "Invalid Token" msgstr "Xác thực không hợp lệ" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "Các tập tin được tải lên chỉ tải lên được một phần" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "Chưa có file nào được tải lên" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "Tải lên thất bại. Không thể tìm thấy tập tin được tải lên" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "Tải lên thất bại. Không thể có được thông tin tập tin." -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 6d8ab5dafc..0874d51ffb 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 40428237a0..79cc25eb3e 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -46,7 +46,7 @@ msgid "" "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -92,54 +92,54 @@ msgstr "无法设置上传文件夹。" msgid "Invalid Token" msgstr "无效密匙" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功,没有错误发生" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "已上传文件只上传了部分(不完整)" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "没有文件被上传" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "上传失败。不能发现上传的文件" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "上传失败。不能获取文件信息。" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "无效文件夹。" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 723367bdbe..79cecd9f5e 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 76b4c3ff60..af3a338f96 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: 2014-03-20 01:55-0400\n" -"PO-Revision-Date: 2014-03-20 05:55+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,66 +17,66 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/move.php:17 +#: ajax/move.php:15 #, php-format msgid "Could not move %s - File with this name already exists" msgstr "" -#: ajax/move.php:27 ajax/move.php:30 +#: ajax/move.php:25 ajax/move.php:28 #, php-format msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:57 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:98 msgid "File name cannot be empty." msgstr "" -#: ajax/newfile.php:62 +#: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:68 ajax/newfolder.php:27 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" -#: ajax/newfile.php:75 ajax/newfolder.php:34 ajax/upload.php:137 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:87 ajax/newfolder.php:46 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " "name." msgstr "" -#: ajax/newfile.php:96 +#: ajax/newfile.php:97 msgid "Not a valid source" msgstr "" -#: ajax/newfile.php:101 +#: ajax/newfile.php:102 msgid "" "Server is not allowed to open URLs, please check the server configuration" msgstr "" -#: ajax/newfile.php:118 +#: ajax/newfile.php:119 #, php-format msgid "Error while downloading %s to %s" msgstr "" -#: ajax/newfile.php:155 +#: ajax/newfile.php:156 msgid "Error when creating the file" msgstr "" -#: ajax/newfolder.php:21 +#: ajax/newfolder.php:22 msgid "Folder name cannot be empty." msgstr "" -#: ajax/newfolder.php:65 +#: ajax/newfolder.php:66 msgid "Error when creating the folder" msgstr "" @@ -88,54 +88,54 @@ msgstr "" msgid "Invalid Token" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:74 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:75 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:77 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:78 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:79 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:80 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:81 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:99 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:156 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:166 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:185 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "" @@ -156,40 +156,40 @@ msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:338 +#: js/file-upload.js:340 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:383 +#: js/file-upload.js:385 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:475 +#: js/file-upload.js:477 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:562 +#: js/file-upload.js:564 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:566 +#: js/file-upload.js:568 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:568 js/filelist.js:430 +#: js/file-upload.js:570 js/filelist.js:430 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:634 +#: js/file-upload.js:636 msgid "Could not create file" msgstr "" -#: js/file-upload.js:650 +#: js/file-upload.js:652 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:700 +#: js/file-upload.js:702 msgid "Error fetching URL" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 690f08e838..67182c3f7e 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 71dc6a0a86..a83f1fff46 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: 2014-03-24 01:55-0400\n" -"PO-Revision-Date: 2014-03-24 05:00+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+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" @@ -44,7 +44,7 @@ msgid "" "allowed." msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:138 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:141 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -90,54 +90,54 @@ msgstr "無法設定上傳目錄" msgid "Invalid Token" msgstr "無效的 token" -#: ajax/upload.php:68 +#: ajax/upload.php:71 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳,原因未知" -#: ajax/upload.php:75 +#: ajax/upload.php:78 msgid "There is no error, the file uploaded with success" msgstr "一切都順利,檔案上傳成功" -#: ajax/upload.php:76 +#: ajax/upload.php:79 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:78 +#: ajax/upload.php:81 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:79 +#: ajax/upload.php:82 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:80 +#: ajax/upload.php:83 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:81 +#: ajax/upload.php:84 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:82 +#: ajax/upload.php:85 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:100 +#: ajax/upload.php:103 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:157 +#: ajax/upload.php:160 msgid "Upload failed. Could not find uploaded file" msgstr "上傳失敗,找不到上傳的檔案" -#: ajax/upload.php:167 +#: ajax/upload.php:170 msgid "Upload failed. Could not get file info." msgstr "上傳失敗,無法取得檔案資訊" -#: ajax/upload.php:186 +#: ajax/upload.php:189 msgid "Invalid directory." msgstr "無效的資料夾" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 47eae57c80..f025e58cce 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-12 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 06:12+0000\n" +"POT-Creation-Date: 2014-03-27 01:55-0400\n" +"PO-Revision-Date: 2014-03-26 06:01+0000\n" "Last-Translator: I Robot\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 92c5450b7d..54fe0bbcf3 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -93,6 +93,7 @@ $TRANSLATIONS = array( "Internet connection not working" => "La connexió a internet no funciona", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques.", "Cron" => "Cron", +"Last cron was executed at %s." => "L'últim cron s'ha executat el %s", "Execute one task with each page loaded" => "Executa una tasca per cada paquet carregat", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utilitza el servei cron del sistema per fer una crida al fitxer cron.php cada 15 minuts.", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 42c99b2fc2..df8d2c419b 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,6 +1,7 @@ "Gemt", +"test email settings" => "test email indstillinger", "Email sent" => "E-mail afsendt", "Encryption" => "Kryptering", "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", @@ -65,6 +66,9 @@ $TRANSLATIONS = array( "Fatal issues only" => "Kun alvorlige fejl", "None" => "Ingen", "Login" => "Login", +"NT LAN Manager" => "NT LAN Manager", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Sikkerhedsadvarsel", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Du tilgår %s via HTTP. Vi anbefaler at du konfigurerer din server til i stedet at kræve HTTPS.", "Your data directory and your files are probably accessible from the internet. The .htaccess file is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. ", @@ -102,8 +106,16 @@ $TRANSLATIONS = array( "Enforce HTTPS" => "Gennemtving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang.", +"Email Server" => "Email Server", +"From address" => "Fra adresse", +"Authentication required" => "Godkendelse påkrævet", "Server address" => "Serveradresse", "Port" => "Port", +"Credentials" => "Brugeroplysninger", +"SMTP Username" => "SMTP Brugernavn", +"SMTP Password" => "SMTP Kodeord", +"Test email settings" => "Test email indstillinger", +"Send email" => "Send email", "Log" => "Log", "Log level" => "Log niveau", "More" => "Mere", @@ -113,6 +125,7 @@ $TRANSLATIONS = array( "Add your App" => "Tilføj din App", "More Apps" => "Flere Apps", "Select an App" => "Vælg en App", +"Documentation:" => "Dokumentation:", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "-licensed by " => "-licenseret af ", "Administrator Documentation" => "Administrator Dokumentation", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index cd87ac6db2..ffbda89301 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Keine Netzwerkverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", +"Last cron was executed at %s." => "Letzter Cron wurde um %s ausgeführt.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor.", +"Cron was not executed yet!" => "Cron wurde bis jetzt noch nicht ausgeführt!", "Execute one task with each page loaded" => "Führe eine Aufgabe mit jeder geladenen Seite aus", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", "Use systems cron service to call the cron.php file every 15 minutes." => "Benutze den System-Crondienst um die cron.php alle 15 Minuten aufzurufen.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 8884afcbc3..0b30cc0c19 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Keine Internetverbindung", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Versenden von Mail-Benachrichtigungen funktionieren eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", +"Last cron was executed at %s." => "Letzter Cron wurde um %s ausgeführt.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Letzter Cron wurde um %s ausgeführt. Dies ist mehr als eine Stunde her, möglicherweise liegt ein Fehler vor.", +"Cron was not executed yet!" => "Cron wurde bis jetzt noch nicht ausgeführt!", "Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", "Use systems cron service to call the cron.php file every 15 minutes." => "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 2315586b18..b377a6b338 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Internet connection not working", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don't work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features.", "Cron" => "Cron", +"Last cron was executed at %s." => "Last cron was executed at %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Last cron was executed at %s. This is more than an hour ago, something seems wrong.", +"Cron was not executed yet!" => "Cron was not executed yet!", "Execute one task with each page loaded" => "Execute one task with each page loaded", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is registered at a webcron service to call cron.php every 15 minutes over http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use system's cron service to call the cron.php file every 15 minutes.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 734149034b..ec6e3b3bd6 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "La conexión a Internet no está funcionando", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Este servidor no tiene conexión a Internet. Esto significa que algunas de las características no funcionarán, como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones, la instalación de aplicaciones de terceros, el acceso a los archivos de forma remota o el envío de correos electrónicos de notificación. Sugerimos habilitar una conexión a Internet en este servidor para disfrutar de todas las funciones.", "Cron" => "Cron", +"Last cron was executed at %s." => "Cron fue ejecutado por última vez a las %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Cron fue ejecutado por última vez a las %s. Esto fue hace más de una hora, algo anda mal.", +"Cron was not executed yet!" => "¡Cron aún no ha sido ejecutado!", "Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 284c47e080..7bef4092a4 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -83,6 +83,9 @@ $TRANSLATIONS = array( "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Suosittelemme vahvasti asentamaan vaaditut paketit järjestelmään, jotta jotain seuraavista maa-asetuksista on mahdollista tukea: %s.", "Internet connection not working" => "Internet-yhteys ei toimi", "Cron" => "Cron", +"Last cron was executed at %s." => "Viimeisin cron suoritettiin %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Viimeisin cron suoritettiin %s. Siitä on yli tunti aikaa, joten jokin näyttää olevan pielessä.", +"Cron was not executed yet!" => "Cronia ei suoritettu vielä!", "Use systems cron service to call the cron.php file every 15 minutes." => "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein", "Sharing" => "Jakaminen", "Enable Share API" => "Käytä jakamisen ohjelmointirajapintaa", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 181fd11f97..10151a0a1e 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Concessione Internet non funzionante", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.", "Cron" => "Cron", +"Last cron was executed at %s." => "L'ultimo cron è stato eseguito alle %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "L'ultimo cron è stato eseguito alle %s. È più di un ora fa, qualcosa sembra sbagliato.", +"Cron was not executed yet!" => "Cron non è ancora stato eseguito!", "Execute one task with each page loaded" => "Esegui un'operazione con ogni pagina caricata", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti.", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 826a6a77e0..c497eb12a6 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Internet verbinding werkt niet", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Deze server heeft geen actieve internetverbinding. Dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internetverbinding voor deze server in te schakelen als u alle functies wilt gebruiken.", "Cron" => "Cron", +"Last cron was executed at %s." => "Laatst uitgevoerde cron op %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Laatst uitgevoerde cron op %s. Dat is langer dan een uur geleden, er is iets fout gegaan.", +"Cron was not executed yet!" => "Cron is nog niet uitgevoerd!", "Execute one task with each page loaded" => "Bij laden van elke pagina één taak uitvoeren", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen.", "Use systems cron service to call the cron.php file every 15 minutes." => "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen.", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 33b22a147d..640e1df958 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -93,6 +93,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Połączenie internetowe nie działa", "This server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features." => "Ten serwer OwnCloud nie ma połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub 3-cie aplikacje mogą nie działać. Dostęp do plików z zewnątrz i wysyłanie powiadomienia e-mail nie może również działać. Sugerujemy, aby włączyć połączenia internetowego dla tego serwera, jeśli chcesz mieć wszystkie opcje.", "Cron" => "Cron", +"Last cron was executed at %s." => "Ostatni cron był uruchomiony %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Ostatni cron był uruchomiony %s. To jest więcej niż godzinę temu, wygląda na to, że coś jest nie tak.", +"Cron was not executed yet!" => "Cron nie został jeszcze uruchomiony!", "Execute one task with each page loaded" => "Wykonuj jedno zadanie wraz z każdą wczytaną stroną", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut.", From 2a08e35d72ef8d65960c0d3db4d233276c77eda7 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 27 Mar 2014 12:34:30 +0100 Subject: [PATCH 312/333] Fix swift touch operation The touch() operation now uses "UpdateMetadata()" instead of "Update()" which doesn't clear the object's contents. This fixes syncing, as the sync client needs to use touch to update the object's mtime. --- apps/files_external/lib/swift.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index a6955d400f..1337d9f581 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -374,7 +374,7 @@ class Swift extends \OC\Files\Storage\Common { 'X-Object-Meta-Timestamp' => $mtime ) ); - return $object->Update($settings); + return $object->UpdateMetadata($settings); } else { $object = $this->container->DataObject(); if (is_null($mtime)) { From d2de6e7a663960f61e61ff8fca4ec2b765f39f93 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 27 Mar 2014 14:31:24 +0100 Subject: [PATCH 313/333] fix SVG replacement for logo so it works in IE8, fix #7866 --- core/templates/layout.guest.php | 2 +- core/templates/layout.user.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 91157b923a..5788d1d5bd 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -36,7 +36,7 @@
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 3d89750348..789b4dcf90 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -46,7 +46,7 @@